Skip to content

Instantly share code, notes, and snippets.

View intelligenced's full-sized avatar

baan intelligenced

  • Maldives
View GitHub Profile
@intelligenced
intelligenced / README.md
Last active August 29, 2015 14:27 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@intelligenced
intelligenced / lamp-aws-laravel.md
Last active February 11, 2019 18:49
Instructions for setting up LAMP on AWS Ubuntu & Setup for Laravel

Setting up LAMP (Ubuntu, Apache2, MySQL, PHP 7.0) using AWS

  • Set EC2 Instance, Download Key-Value Pair (.pem)

  • Get Putty Compatible Key ppk, using PUTTygen by loading .pem key without adding parameters

  • Enter user@public-dns as server and Add SSH Key to Auth in Settings

  • Update Apt-Get Packages

@intelligenced
intelligenced / CInemaBot.js
Last active April 27, 2022 09:22
Cinema Bot
/ ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://www.cinema.mv/movie/310
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
@intelligenced
intelligenced / Deployment.ahk
Created November 22, 2017 08:16
Unconventional Auto Deploy - AHK Script
#SingleInstance, force
Path = C:\putty.exe
IP = IP
User = Instance User
Pass = Instance Pass
Directory = Repo Directory
GitUser =
GitPass =
Origin = origin
@intelligenced
intelligenced / refgenerator.sql
Created May 14, 2022 19:29
Reference Generator
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
BEGIN TRANSACTION;
DECLARE @now_year CHAR(4)
DECLARE @num_year CHAR(4)
DECLARE @run_num INT