Skip to content

Instantly share code, notes, and snippets.

View singhshantanu1996's full-sized avatar

singhshantanu1996

View GitHub Profile
@singhshantanu1996
singhshantanu1996 / revision.java
Created July 25, 2018 07:08 — forked from danielpaul/revision.java
Basic Java Revision Notes - Written in Java
/*
*
* / --------------------------------[ NUIM CS141 Java Revision ]------------------------------- \
* || Designed to easily revise everything covered in CS141 by just reading through this code. ||
* || Comments accompany almost every line of code to explain its purpose. ||
* || Some theory we need to know are included in the bottom... ||
* \ ------------------------------------------------------------------------------------------- /
*
*
* ____ _ __ ____ __
@singhshantanu1996
singhshantanu1996 / freshInstall.sh
Created August 12, 2017 16:01 — forked from bhediathewolf/freshInstall.sh
Installation script for setting up a new Ubuntu or Ubuntu based install. This script has been written for elementary OS Loki.
#!/bin/sh
# Entering new setup folder
mkdir freshInstallation
cd freshInstallation
# Updating repositories, packages and a dist upgrading
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade