Skip to content

Instantly share code, notes, and snippets.

View otivedani's full-sized avatar
💭
still questioning why my code works

Dani otivedani

💭
still questioning why my code works
  • Malang
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@otivedani
otivedani / waAttachmentsDownload.js
Last active March 28, 2022 03:02
web.whatsapp.com auto download
(() => {
let downloadable = document.querySelectorAll('span[data-testid="audio-download"]')
downloadable.forEach(el => {el.click()})
})();
@otivedani
otivedani / remote.sh
Created November 5, 2021 17:24
Raspberry Pi Browser Remote
# change username address of your raspi
ssh -t -L 9222:localhost:9222 ubuntu@192.168.1.101 \
chromium --headless --remote-debugging-port=9222 --use-fake-ui-for-media-stream https://webcamtests.com
# open localhost:9222 on local computer
@otivedani
otivedani / open_multiview_obs.py
Created November 3, 2021 01:08
Python scripts to open multiview OBS
import obspython as obs
import base64
import binascii
projector_width = 1280
projector_height = 720
# computed values
_magic_number = '01d9d0cb'
_major_version = 3
@otivedani
otivedani / A_ColorChecker_Exploration.ipynb
Last active June 9, 2022 14:43
ColorChecker Exploration.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@otivedani
otivedani / Basic-Image-Processing.ipynb
Last active January 17, 2021 15:46
Basic Image Processing Example
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.