Skip to content

Instantly share code, notes, and snippets.

View arjun-rao's full-sized avatar

Arjun Rao arjun-rao

View GitHub Profile
@arjun-rao
arjun-rao / readme.txt
Created October 19, 2020 19:36
Block Puzzle Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@arjun-rao
arjun-rao / readme.txt
Created September 16, 2020 21:41
Block Puzzle Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@arjun-rao
arjun-rao / 1.sql
Created September 26, 2016 19:09
SQL Queries for DBMS LAB
/*
CREATE TABLE employee
(
SSN varchar(10) PRIMARY KEY,
Name varchar(40) not null,
DeptNo int(5) not null
);
CREATE TABLE project