OS: Ubuntu 22.04 LTS
apt update && apt upgrade
apt install python3 python3-pip borgbackup htop net-tools mariadb-client
pip install --upgrade borgmatic
curl -s 'https://it.lgappstv.com/api/tvapp/retrieveMoreAppList.ajax' \ | |
-H 'Origin: https://it.lgappstv.com' \ | |
--data-raw 'catCode1=&moreYn=Y&orderType=0&appRankCode=&prodCode=P000000029&plfmCode=W22A&curPage=1&rowCount=1812&pageCount=10&totalCount=1812' \ | |
| jq | less |
FUNCTION_NAME = lambda-name | |
FUNCTION_ENVIRONMENT = python3.9 | |
AWS_PROFILE = awscli-credential-profile | |
PWD = $(abspath $(CURDIR)) | |
RELEASE_DST_PATH = $(addprefix $(PWD), /release) | |
ZIP_EXTRA_IGNORE_PATH_ARGS = -x '.env' \ | |
-x '.gitignore' -x '*/.gitignore' \ | |
-x '.git/**' -x '.git/' \ | |
-x 'release/**' -x 'release/' \ |
#!/usr/bin/env bash | |
# Set OBS to stream on YouTube and local recording as mkv | |
# Use this script to stream recording on Facebook | |
ffmpeg -re -i ./recording.mkv \ | |
-acodec aac -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -s 1280x720 -bufsize 6000k -vb 400k -maxrate 1500k -deinterlace \ | |
-vcodec libx264 -preset veryfast -g 30 -r 30 -f flv "rtmps://live-api-s.facebook.com:443/rtmp/[APIKEY]" |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"logs:DescribeLogGroups" | |
], | |
"Resource": "*" | |
}, |
#!/usr/bin/env python3 | |
# Ref: https://github.com/HearthSim/UnityPack/issues/74 | |
import sys | |
import os | |
from unitypack.utils import BinaryReader | |
SIGNATURE = 'UnityWebData1.0' | |
class DataFile: |
// empty spotify liked songs | |
const elements = document.querySelectorAll('button[aria-label="Elimina da La tua libreria"]'); | |
Array.from(elements).forEach((element, index) => { | |
element.click() | |
}); |
https://thechoiceisyours.whatisthematrix.com
Code: https://gist.github.com/siddolo/95f20c53fd2cdd081d6e1d0c1e9dd19a
https://thechoiceisyours.whatisthematrix.com/generated/v7/high/a37a9f7d0c9fcfa592be7ee8f0b60a99.mp4
https://thechoiceisyours.whatisthematrix.com/generated/v7/high/cdbaf5e11c3abada94940fe7ab0d9035.mp4
https://thechoiceisyours.whatisthematrix.com/generated/v7/high/0e6ea3481994762c56799afedcd3d7be.mp4
function stringToBytes(t) { | |
for (var e = [], i = 0; i < t.length; i++) e.push(255 & t.charCodeAt(i)); | |
return e; | |
} | |
function bytesToString(t) { | |
for (var e = [], i = 0; i < t.length; i++) e.push(String.fromCharCode(t[i])); | |
return e.join(''); | |
} |
#/etc/systemd/system/myservice.service | |
[Unit] | |
Description=My Scipt Description | |
After=docker.service | |
BindsTo=docker.service | |
#ReloadPropagatedFrom=docker.service | |
[Service] | |
ExecStart=/path/to/script.sh |