Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View boseji's full-sized avatar
💭
Accelerating dreams into infinity.

Abhijit Bose boseji

💭
Accelerating dreams into infinity.
View GitHub Profile
Let [tag] = any tag in upstream repo
git fetch upstream --tags
git push origin --tags
#!/bin/bash
# Backup the Network Config
cp /etc/network/interfaces /etc/network/interfaces.bak
cp /etc/wpa_supplicant/wpa_supplicant.conf /etc/wpa_supplicant/wpa_supplicant.conf.bak
# GUI-related packages
pkgs="
xserver-xorg-video-fbdev
xserver-xorg xinit
@boseji
boseji / Makefile
Last active May 13, 2016 04:20 — forked from fpoussin/Makefile
ESP8266 windows build makefile for basic Firmware Building and programming
# tnx to mamalala
# Changelog
# Changed the variables to include the header file directory
# Added global var for the XTENSA tool root
#
# Output directors to store intermediate compiled files
# relative to the project directory
BUILD_BASE = build
FW_BASE = firmware
@boseji
boseji / build.sh
Last active May 13, 2016 04:06 — forked from fpoussin/build.sh
Build script for the Xtensa toolchain. (Mingw/linux) for ESP8266 Windows Compiler
#!/bin/bash
# Author: Fabien Poussin
# Last edit: 20/11/2014
#
# You will need the following mingw32/64 or equivalent linux packages to build it:
# msys gcc msys-coreutils msys-wget msys-autoconf msys-automake msys-mktemp
#
# Use mingw-get to install these.
# run this script from msys's or any unix console.