Keybase proof
I hereby claim:
- I am psychip on github.
- I am psychip (https://keybase.io/psychip) on keybase.
- I have a public key whose fingerprint is 1600 0ECF A507 E1E5 705E F4E2 3EC1 1897 E5E2 20CE
To claim this, I am signing this object:
/* Smart soap dispenser | |
Uses | |
+ digispark pro (https://digistump.com) | |
+ Sharp 0a41skf85 distance sensor | |
+ IRF540 mosfet module | |
+ dual water pump | |
Coded by PsyChip | |
root@psychip.net | |
Sep 2022 |
pm uninstall --user 0 miui.systemui.plugin | |
pm uninstall --user 0 com.miui.extraphoto | |
pm uninstall --user 0 com.miui.player | |
pm uninstall --user 0 com.miui.cleaner | |
pm uninstall --user 0 com.miui.notes | |
pm uninstall --user 0 com.miui.miwallpaper | |
pm uninstall --user 0 com.miui.analytics | |
pm uninstall --user 0 com.miui.yellowpage | |
pm uninstall --user 0 com.facebook.services | |
pm uninstall --user 0 com.facebook.katana |
/* Wireless Bathroom Scale | |
* Uses digispark pro (https://digistump.com) | |
* | |
* depends on hx711 and rcswitch libraries | |
* https://github.com/bogde/HX711 | |
* https://github.com/sui77/rc-switch | |
* | |
*/ | |
#!/bin/bash | |
## usage: | |
## >import.sh filename.csv table database | |
folder=__csv | |
mkdir $folder | |
split -l 10000 $1 $folder/part | |
cd $folder | |
psql -c "copy $2 FROM 'partaa' DELIMITER ',' CSV HEADER;" $3; |
## alsa configuration file for simultaneous playback | |
## from multiple audio sources | |
## confirmed on orange pi zero, raspberry pi B+ | |
## save to /etc/asound.conf | |
## http://psychip.net | |
pcm.!default { | |
type plug | |
slave.pcm "dmixer" |
#!/bin/sh | |
########################### | |
cd /c/dev/psy-blog.git | |
# pushing committed updates first | |
git push | |
# standard procedure | |
git add . | |
echo type message.. | |
read commitMessage | |
git commit -am "$commitMessage" |
/* | |
Userscript to hide youtube's recommended channels from mainpage | |
root@psychip.net | |
march 2017 | |
updated 25 May 2017 | |
*/ | |
setTimeout(function() { | |
$(document).ready(function() { | |
$('span') |
I hereby claim:
To claim this, I am signing this object:
<?php | |
# PsyUtils - Generic web toolkit for php 5.4+ | |
# Armagan Corlu aka PsyChip | |
# root@psychip.net | |
# March 2014 | |
$psy_mimetypes = [ | |
'cpt' => 'application/mac-compactpro', | |
'bin' => 'application/macbinary', |
/* global os */ | |
var request = require('sync-request/index.js'); | |
var raspi = require("raspi"); | |
var conf = { | |
server: "192.168.1.125", | |
port: "8484", | |
devid: "200616-004", | |
debug: true, |