Skip to content

Instantly share code, notes, and snippets.

View imneonizer's full-sized avatar
:octocat:
Developing for the python community!

Nitin Rai imneonizer

:octocat:
Developing for the python community!
View GitHub Profile
from google.colab.output import eval_js
print(eval_js("google.colab.kernel.proxyPort(8000)"))
@imneonizer
imneonizer / MPU6050_esp8266.ino
Last active March 1, 2022 08:47
MPU6050_esp8266
#include <Wire.h>
#include <ESP8266WiFi.h>
const int MPU_addr = 0x68; // I2C address of the MPU-6050
int16_t AcX, AcY, AcZ, Tmp, GyX, GyY, GyZ;
float ax = 0, ay = 0, az = 0, gx = 0, gy = 0, gz = 0, Amp=0;
// SCL -> D1
// SDA -> D2
cat ~/.netrc
machine github.com login <login-id> password <token-password>
# https://gist.github.com/Lazza/bbc15561b65c16db8ca8
import os
import requests
import base64
import time
import subprocess as sp
class VpnGate:
def __init__(self, country, config='/tmp/vpngate.ovpn'):
#!/bin/bash
# https://itsfoss.com/speed-up-slow-wifi-connection-ubuntu/
# increase wifi adapter power
# sudo iwconfig
sudo iwconfig wlo1 power off
@imneonizer
imneonizer / how-to-download-from-pan-baidu.md
Last active August 29, 2025 14:31
How to download from pan.baidu without account
@imneonizer
imneonizer / refrate.sh
Last active September 29, 2022 10:35
Update Monitor refresh rates from terminal
#!/bin/bash
function set_refresh_rate(){
xrandr -d :1 --output $1 --mode $2 --rate $3
}
# update refresh rate for main monitor
set_refresh_rate DP-0 2560x1440 60.00
sleep 0.5
set_refresh_rate DP-0 2560x1440 164.96
@imneonizer
imneonizer / ipwebcam.sh
Last active July 7, 2025 00:15
Using Android as HD webcam
#!/bin/bash
export ANDROID_SERIAL=`adb devices -l | grep -i oneplus | awk '{print $1}'`
export HOST_PORT=8080
export IPWEBCAM_PORT=8080
export V4L2_DEVICE=/dev/video0
function start_screen_mirror(){
if [ ! `pgrep scrcpy` ];then
@imneonizer
imneonizer / portsi.py
Last active October 12, 2021 07:38
Portsi is used to scan network for open ports
import socket
from contextlib import closing
from concurrent.futures import ThreadPoolExecutor
from itertools import product
class Portsi:
def __init__(self, timeout: float = 2.0, workers: int = 1000):
"""Portsi is used to scan network for open ports
Args:
@imneonizer
imneonizer / client.py
Created September 13, 2021 08:26
HiveMQTT Custom Req-Resp with Auth
# pip install paho-mqtt
import paho.mqtt.client as paho
import paho.mqtt.subscribe as subscribe
import uuid
import contextlib
import threading
import json
import time
class MQTTClient: