Skip to content

Instantly share code, notes, and snippets.

View suobset's full-sized avatar
🚀
Back at mega project timeline :)

Kush Srivastava suobset

🚀
Back at mega project timeline :)
  • University of Massachusetts, Amherst
  • MA, United States
  • 15:43 (UTC -04:00)
View GitHub Profile
@prudhvirajboddu
prudhvirajboddu / installation.md
Created December 31, 2020 10:46
Ubuntu 20.04 installation for fingerprint and graphics laptops .Worked for my Dell g3

Install ubuntu 20.04 on a graphics laptop On boot menu choose ubuntu (safe graphics) By doing this the installer doesn't crash nvidia server is installed for this mode automatically (Make sure you are connected to internet at time of installation) To enable fingerprint Execute below lines

sudo sh -c 'cat > /etc/apt/sources.list.d/focal-dell.list << EOF
deb http://dell.archive.canonical.com/updates/ focal-dell public
deb http://dell.archive.canonical.com/updates/ focal-oem public
deb http://dell.archive.canonical.com/updates/ focal-somerville public
deb http://dell.archive.canonical.com/updates/ focal-somerville-melisa public
@stephanlensky
stephanlensky / lib220.d.ts
Last active February 17, 2022 01:40
Ocelot IDE Sudo Mod (v0.3)
interface Canvas {
/**
* The drawLine function draws a line on the canvas that stretches from a designated
* start point to a designated endpoint.
* @param x1 The location on the x-axis of the desired start point of the line
* @param y1 The location on the y-axis of the desired start point of the line
* @param x2 The location on the x-axis of the desired end point of the line
* @param y2 The location on the y-axis of the desired end point of the line
* @param color The desired color of the line given as a tri-color pixel
*/
#Generate root password
import random, string
password = ''.join(random.choice(string.ascii_letters + string.digits) for i in range(20))
#Download ngrok
! wget -q -c -nc https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
! unzip -qq -n ngrok-stable-linux-amd64.zip
#Setup sshd
! apt-get install -qq -o=Dpkg::Use-Pty=0 openssh-server pwgen > /dev/null
#Set root password
@AlexLamson
AlexLamson / rasp-pi-umass-eduroam.md
Last active July 8, 2024 05:50
How to connect to UMass Eduroam wifi with a Raspberry Pi running Raspbian

How to connect Raspberry Pi to UMass Eduroam

Open up a terminal and move into the directory holding the wpa_supplicant config file.

cd /etc/wpa_supplicant

You may want to backup your config file before you do anything just in case.

sudo cp wpa_supplicant.conf ~/Desktop/wpa_supplicant.conf
@joepie91
joepie91 / vpn.md
Last active July 15, 2024 17:09
Don't use VPN services.

Don't use VPN services.

No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.

Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.

  • A Russian translation of this article can be found here, contributed by Timur Demin.
  • A Turkish translation can be found here, contributed by agyild.
  • There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
@roachhd
roachhd / README.md
Last active July 16, 2024 19:04
Basics of BrainFuck

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

BrainFuck Programming Tutorial by: Katie

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

INTRODUCTION