Skip to content

Instantly share code, notes, and snippets.

View shadowfax92's full-sized avatar

Nikhil shadowfax92

View GitHub Profile
@shadowfax92
shadowfax92 / install-browseros-server.sh
Last active April 17, 2026 21:25
BrowserOS server updater (darwin-arm64)
#!/usr/bin/env bash
#
# BrowserOS server updater (darwin-arm64)
#
# Downloads the latest BrowserOS server resources bundle and drops it into
# the installed BrowserOS.app. Safe to re-run.
#
# Usage:
# curl -fsSL https://gist.githubusercontent.com/shadowfax92/84fd358466a97565a1be9b8e7da6f102/raw/install-browseros-server.sh | sudo bash
# sudo install-browseros-server.sh # from ~/bin
#! /usr/bin/python
import sys
import os
import re
import time
import shutil
def get_all_files(dir):
files = dict()
for dirName, subdirList, fileList in os.walk(dir):
#include <iostream>
#include <map>
#include <algorithm>
#include <vector>
#include <sstream>
#include <cstring>
#include <cmath>
#include <numeric>
using namespace std;
@shadowfax92
shadowfax92 / flipkart_parser.py
Last active September 2, 2023 09:43
Flipkart Billion dollar sale hack
# Author = Nikhil Venkat Sonti
# email = [email protected]
# github ID = shadowfax92
import sys
from xml.dom.minidom import _get_StringIO
from lxml import html
import requests
import os
import re
import time