Skip to content

Instantly share code, notes, and snippets.

@lemajes
lemajes / PIP-101.md
Last active May 2, 2023 23:54
[PIP 101] PIP 101 #pip #101 #python #jinja2 #ansible #bug #template

PIP 101

  • Reinstall old version of jinja2 (for ansible templating bug on python3.9) pip3 install --force-reinstall -v "jinja2==3.0.3"

  • Upgrade all packages

pip3 freeze > requirements.txt
pip3 install -r requirements.txt --upgrade
@lemajes
lemajes / IPFS-101.md
Last active November 5, 2024 23:11
[IPFS 101] IPFS 101 #IPFS #101 #interplanetary #filesystem
@lemajes
lemajes / Python-Logging-101.md
Last active April 3, 2023 15:04
[Python Logging 101] Python Logging 101 #python #python3 #logging #log #101 #trace

Python Logging 101

  • With colorlog method
import logging
LOG_LEVEL = logging.DEBUG
LOGFORMAT = "  %(log_color)s%(levelname)-8s%(reset)s | %(log_color)s%(message)s%(reset)s"
from colorlog import ColoredFormatter
logging.root.setLevel(LOG_LEVEL)
@lemajes
lemajes / NEOVIM-101.md
Last active June 26, 2024 09:09
[NEOVIM 101] NEOVIM 101 #neovim #vim #101

NEOVIM 101

Delete lines containgin word

:g/word/norm dd

Replace a word globally

:%s#bla#blou#g

@lemajes
lemajes / Android-Firefox-Remote-Debugging-101.md
Created March 22, 2023 11:26
[Firefox Android Remote Debugging 101] Firefox Android Remote Debugging 101

#https://www.sitepoint.com/debugging-mobile-websites-firefox/

sitepoint.com Debugging Mobile Websites with Firefox — SitePoint Jérémy Heleine 9-11 minutes

All the major browsers now provide tools to help test and debug websites on mobile devices. In this article I will look specifically at Firefox’s offerings and then compare them to Chrome and Internet Explorer. Testing with Firefox Responsive Mode

@lemajes
lemajes / FFMPEG-101.md
Created March 17, 2023 10:22
[FFMPEG 101] FFMPEG 101 #ffmpeg #101 #download #blob
  • Download blob files (get url ending with .m3u8 and also get CDN token for authentication)

ffmpeg -i 'https://xxxx.xxxx.xxx/master.m3u8?this_named_token=xxxxx' -vcodec copy -c copy -crf 50 file.mp4

@lemajes
lemajes / Keepalived_101.md
Last active February 27, 2023 13:05
[Keepalived 101] Keepalived 101 #keepalived #101
@lemajes
lemajes / SQLITE-101.md
Last active March 23, 2023 12:01
[SQLITE 101] SQLITE 101 #sqlite #101 #gogs #reset #admin

SQLITE 101

  • Connect to specific database: sqlite3 this.db

  • Liste databases: .databases

  • Reset admin (create new user and recover password and salt to overwrite admin ones)

@lemajes
lemajes / SPOTIFY_101.md
Created February 21, 2023 19:46
[SPOTIFY 101] Spotify 101 #spotify #101

SPOTIFY 101

  • Get all tracks of a playlist (if liked songs, create new playlist, go to liked songs, CTRL+A, drag and drop to new playlist) curl -X "GET" "https://api.spotify.com/v1/me/tracks" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Bearer xxx" > /tmp/out.json
  • Parse /tmp/out.json to get all songs links ``
@lemajes
lemajes / TTRSS-101.md
Created February 17, 2023 15:52
[TTRSS 101] TTRSS 101 #ttrss #101 #tinty #rss

TTRSS 101

  • Pull code git clone https://git.tt-rss.org/fox/ttrss-docker-compose.git ttrss-docker;cd ttrss-docker

  • Copy .env and modify

# Copy this file to .env before building the container.
# Put any local modifications here.