Recherche avancée
Résultats de recherche
91 résultats trouvés au total
musique
Dès Que Le Vent Soufflera ( Renaud) San Francisco (forestier) j'ai demandé a la lune (indochine) le chène liège (cabre) Les Murs de poussière (cabrel) je veux (zaz)
Cameras
Importer les données avec OSM2PGSQL docker run --name postgis -e POSTGRES_PASSWORD=password -p 5432:5432 -d postgis/postgis local cameras = osm2pgsql.define_node_table('cameras', { { column = 'id', sql_type = 'serial', create_only = true }, { column =...
psql
\l => list database \c <db name>: connect to a certain database \dt: list all tables in the current database using your search_path \dt *.: list all tables in the current database regardless your search_path SELECT * FROM osm_poi_point LIMIT 1 SELECT name,na...
Cuisine bot
Trouver un lien entre les ingrédients en indexant cuisine libre. Deux ingrédients sont compatible si au moins une fois dans la même recette Avoir un notion des ingrédients possible. (niveau 1: ceux qui sont dans la cuisine, niveau 2: facilement trouvable ( en...
Snippets vscode
vue-js { // Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // $...
Genre et tri
chansons corse chansons francaise chanson americaines folk country world jazz classique rock latin blue pop soundtrack country Patricia Kaas -> chanson française, chant thomas fersen -> chanson francaise (style 2000) Pauline Croze -> chanson francaise style ...
OTP
Activer l'otp google-authenticator -s ~/.ssh/google_authenticator Config /etc/pam.d/sshd auth required pam_google_authenticator.so secret=/home/${USER}/.ssh/google_authenticator nullok /etc/ssh/sshd_config.d/10-custom.conf PasswordAuthentication no...
Rhasspy 3 (v2)
ALSA Lister les cartes audio: arecord -l aplay-l Mettre par défaut une carte: /etc/asound.conf pcm.!default { type plug slave.pcm { type hw card 2 } } Config programs: mic: arecord: command: | arecord -q -r 1600...
PHP et caddy
INSTALL On a besoin de php-fpm et caddy Dans le fichier de conf /etc/php-fpm.d/www.conf, verifier que listen.acl_users = apache,nginx,caddy et user = caddy ; RPM: Keep a group allowed to write in log dir. group = caddy La conf caddy Ici on prend comme exempl...
Nextcloud
Des notes en vrac php-mysqlnd php-pdo php-pecl-apcu php-xml php-process php-pecl-zip php-gd php-mbstring php-redis php-sodium semanage fcontext -a -t httpd_sys_rw_content_t '/srv/nextcloud/nextcloud-(.*)/config(/.*)?' semanage fcontext -a -t httpd_sys_rw_con...
Falafel
Service : 6 personnes Source : https://www.lemonde.fr/series-d-ete/article/2023/07/18/le-falafel-reste-a-la-mode-il-est-vegan-et-sans-gluten_6182395_3451060.html Ingrédients 500 g de pois chiches secs 15 g de persil frais 15 g de coriandre fraîche 5 g de sel ...
Nouvelle page
1 ecran de "stat" -> temperature 1 ecran qui affiche de recette 1 ecran de todolist
fix psql import
create or replace function cast_to_city_place(text) returns city_place as $$ begin return cast($1 as city_place); exception when invalid_text_representation then return 'town'; end; $$ language plpgsql immutable; ALTER TABLE osm_city_point ...
Crumble
Service : ... personnes Ingrédients 250g farine 125g sucre 125g beurre Préparation
REDIS
on doit éditer le fichier /etc/systemd/system/redis.service.d/limit.conf avec [Service] LimitNOFILE=10240 TimeoutStartSec=300s TimeoutStopSec=300s
Addok
Création des données Package (fedora) postgis-client osmctools Commands podman run --name postgis -e POSTGRES_PASSWORD=mysecretpassword -p 127.0.0.1:54321:5432 -d postgis/postgis export PGPASSWORD=mysecretpassword psql -h 127.0.0.1 -p 54321 -Upostgres -c "C...
Update tiles
Télécharger le diff source env-openmaptiles/bin/activate.fish pyosmium-get-changes -O france.osm.pbf -o changes.osc.gz Pour 1 mois et demi de diff: instantané Importer le diff make import-diff Pour 1 mois et demi de diff: une 10aine de minutes Générer les tu...
train tts
script to divide audio srt_file=$1 audio_file=$2 #rm -Rf wav _data.csv mkdir -p wav function convert_to_second { IFS=: read -r h m s <<<"$1" echo $(((h * 60 + m) * 60 + s)) } function cut_part_from_file { FROM=$1 TO=$2 INPUT=$3 OU...
notebook and co
1 - se creer un compte sur ovhcloud.com 2 - creer un utilisateur virtuelle pour stocker nos données. 3 - creer un object storage pour les données 4 - creer un autre utilisateur pour les notebooks 5 - creer le notebook II- Creer un utilisateur Dans "public clou...
vuejs
Models <!-- BaseInput.vue component --> <template> <div> <input type="text" :value="title" @input="updateValue" /> </div> </template> <script> export default { name: 'BaseInput', props: ['title'], model: { prop: 'title', ...