/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install -f git jq jo telnet wget nmap
brew install -f adr-tools php composer imagemagick ffmpeg exiftool
| apt-get update | |
| apt-get install nginx | |
| wget https://dl.eff.org/certbot-auto | |
| chmod a+x certbot-auto | |
| ./certbot-auto |
| SECRET_KEY=hiphopopotamus | |
| DJANGO_DEV=True | |
| DJANGO_DEBUG=True | |
| DATABASE_URL=postgres://pontoon:pontoon@localhost/pontoon | |
| SESSION_COOKIE_SECURE=False | |
| SITE_URL=http://localhost:8000 | |
| FXA_CLIENT_ID=2651b9211a44b7b2 | |
| FXA_SECRET_KEY=a3cafccbafe39db54f2723f8a6f804c337e362950f197b5b33050d784129d570 | |
| FXA_OAUTH_ENDPOINT=https://oauth-stable.dev.lcip.org/v1 | |
| FXA_PROFILE_ENDPOINT=https://stable.dev.lcip.org/profile/v1 |
The role of Facilitator is fundamental for almost every meeting. The Facilitator ensures that the whole group is empowered to make decisions and that every individual has their voice heard.
During a retrospective, the Facilitator role is crucial. In a retrospective, it is ideal that everyone has at least some degree of participation, and it is the Facilitator that helps the participants with that.
| FROM php:7-fpm | |
| RUN apt-get update && \ | |
| apt-get install -y \ | |
| zlib1g-dev \ | |
| libfreetype6-dev \ | |
| libjpeg62-turbo-dev \ | |
| libmcrypt-dev \ | |
| libpng12-dev |
| WITH RECURSIVE fizz_buzz (sequence, modulo_3, modulo_5) AS ( | |
| SELECT 1, CAST('' AS CHAR(4)), CAST('' AS CHAR(5)) | |
| UNION ALL | |
| SELECT sequence + 1, | |
| IF(MOD(sequence + 1, 3) = 0, 'Fizz', ''), | |
| IF(MOD(sequence + 1, 5) = 0, 'Buzz', '') | |
| FROM fizz_buzz | |
| WHERE sequence < 100 | |
| ) |
First of all, ensure you don't have any deprecated!
The Symfony documentation explains it well, but let's sum up:
$ composer require --dev symfony/phpunit-bridge)deprecation error handled| import pandas as pd | |
| import pandas.io.sql as sqlio | |
| import psycopg2 | |
| conn = psycopg2.connect("host='{}' port={} dbname='{}' user={} password={}".format(host, port, dbname, username, pwd)) | |
| sql = "select count(*) from table;" | |
| dat = sqlio.read_sql_query(sql, conn) | |
| conn = None |
| From 839b964bd5be20275a4d1add020e68e407380adb Mon Sep 17 00:00:00 2001 | |
| From: =?UTF-8?q?Joan=20Bruguera=20Mic=C3=B3?= <joanbrugueram@gmail.com> | |
| Date: Sat, 17 Aug 2024 14:26:04 +0000 | |
| Subject: [PATCH] Tentative fix for NVIDIA 470.256.02 driver for Linux 6.12-rc1 | |
| Note that the fix requires enabling DRM kernel mode setting | |
| (add the `nvidia-drm.modeset=1` parameter to the kernel command line). | |
| (Thanks xtexChooser for the memory management fixes!) | |
| --- |
This quick guide will help you set up a Cloudflare Tunnel on your Linux server !
Cloudflare Tunnel provides you with a secure way to connect your resources to the web without a publicly routable IP address. With Tunnel, you do not send traffic to an external IP, instead, a lightweight daemon in your infrastructure (cloudflared) creates outbound-only connections to Cloudflare’s edge. Cloudflare Tunnel can connect HTTP web servers, SSH servers, remote desktops, and other protocols safely to Cloudflare. This way, your origins can serve traffic through Cloudflare without being vulnerable to attacks that bypass Cloudflare. (Source)