Skip to content

Instantly share code, notes, and snippets.

View samsayen's full-sized avatar
🌿

Sam samsayen

🌿
  • New England
View GitHub Profile
@samsayen
samsayen / Linux OSX Commandline Setup.md
Last active March 9, 2021 02:37
Commandline - ZSH - Aliases

Setup Theme

Terminal installation
cd /tmp && rm -rf flat-remix &&
git clone https://github.com/daniruiz/flat-remix &&
mkdir -p ~/.icons && cp -r flat-remix/Flat-Remix* ~/.icons/ &&
gsettings set org.gnome.desktop.interface icon-theme "Flat-Remix"

Setup zsh

@samsayen
samsayen / tmux.md
Created January 19, 2019 14:00
TMUX
@samsayen
samsayen / install_font_adobe_source_code_pro.sh
Created December 16, 2018 20:34 — forked from enzinier/install_font_adobe_source_code_pro.sh
Install font Adobe Source Code Pro on Ubuntu 16.04 LTS
#!/bin/sh
# Userland mode (~$USER/), (~/).
# ~/.fonts is now deprecated and that
#FONT_HOME=~/.fonts
# ~/.local/share/fonts should be used instead
FONT_HOME=~/.local/share/fonts
echo "installing fonts at $PWD to $FONT_HOME"
mkdir -p "$FONT_HOME/adobe-fonts/source-code-pro"
@samsayen
samsayen / cloning.sh
Created November 19, 2018 23:19 — forked from Mr-Un1k0d3r/cloning.sh
Lazy website cloning
#!/bin/bash
echo "Cloning $1"
wget $1 -O index.html &> /dev/null
TAG="<base href=\"$1\"/></head>"
sed '/<\/head>/i\'"$TAG" index.html | tee index.html &> /dev/null
echo "index.html was saved and modified"
@samsayen
samsayen / 606b4bd217b980ce70e4986511fcd00f43e7a89e9e2c6a51ea90d6f3faf33ac9.sct FruityC2 Scriptlet 606b4bd217b980ce70e4986511fcd00f43e7a89e9e2c6a51ea90d6f3faf33ac9
## uploaded by @JohnLaTwC
## Sample hash: 606b4bd217b980ce70e4986511fcd00f43e7a89e9e2c6a51ea90d6f3faf33ac9
<?XML version="1.0"?>
<scriptlet>
<registration
progid="PoC"
classid="{F0001111-0000-0000-0000-0000FEEDACDC}" >
<!-- Proof Of Concept - Casey Smith @subTee -->
<!-- License: BSD3-Clause -->
<script language="JScript">
@samsayen
samsayen / poc.iqy
Created November 15, 2018 16:17 — forked from Mr-Un1k0d3r/poc.iqy
IQY File + Embedded DLL POC
WEB
1
https://ringzer0team.com/IQY
Selection=EntirePage
Formatting=RTF
PreFormattedTextToColumns=True
ConsecutiveDelimitersAsOne=True
SingleBlockTextImport=False
DisableDateRecognition=False
@samsayen
samsayen / keybase.md
Created November 2, 2018 12:37
keybase.md

Keybase proof

I hereby claim:

  • I am samsayen on github.
  • I am keyzer (https://keybase.io/keyzer) on keybase.
  • I have a public key ASAGQ-3OsMonwAuq3IpBnZZDOYug4SdcH9R6PybHXfq5Rwo

To claim this, I am signing this object:

@samsayen
samsayen / CF.md
Last active October 23, 2018 01:11
Cloud Foundry (CF)
@samsayen
samsayen / content_types.txt
Created October 17, 2018 00:10
Content Types
application/vnd.hzn-3d-crossword
video/3gpp
video/3gpp2
application/vnd.mseq
application/vnd.3m.post-it-notes
application/vnd.3gpp.pic-bw-large
application/vnd.3gpp.pic-bw-small
application/vnd.3gpp.pic-bw-var
application/vnd.3gpp2.tcap
application/x-7z-compressed
@samsayen
samsayen / git.md
Last active September 23, 2020 16:13
GIT commands

Commands

git add <filename> or .... git add *

git commit -m "Commit message"

git commit -a

git push or .... git push origin master