This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# env | |
export DEBIAN_FRONTEND=noninteractive | |
## Install basic packages | |
apt update && apt upgrade && apt install -y -f \ | |
git \ | |
curl \ | |
vim \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type OnChange<T> = (value: T) => void | |
type OffChange = () => void | |
interface Ref <T> { | |
value: T, | |
change: (fn: OnChange<T>) => OffChange, | |
toBe: (expect: T) => Promise<void>, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vlc \ | |
screen:// \ | |
:screen-fps=30 \ | |
:screen-caching=100 \ | |
:sout='#transcode{vcodec=MJPG,vb=800,scale=Auto,width=240,height=135,acodec=mpga,ab=128,channels=2,samplerate=8000}:http{mux=mpjpeg,dst=:8080/}' \ | |
:sout-keep |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- DUMMY CHART - | |
5.00 ┤ â•────────╮ â•────────╮ | |
4.00 ┤ â•──╯ ╰──╮ â•──╯ ╰──╮ | |
3.00 ┤ â•─╯ ╰──╮ â•─╯ ╰──╮ | |
2.00 ┤ â•──╯ ╰─╮ â•──╯ ╰─╮ | |
1.00 ┤â•─╯ ╰─╮ â•─╯ ╰─╮ | |
0.00 ┼╯ â•°â•® â•╯ â•°â•® | |
-1.00 ┤ ╰─╮ â•─╯ ╰─╮ â•─ | |
-2.00 ┤ ╰──╮ â•─╯ ╰──╮ â•─╯ | |
-3.00 ┤ ╰─╮ â•──╯ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clear the terminal | |
alias cls='clear' | |
# Alter the ls command | |
alias ll='ls --color --time-style="+%b %d %Y %H:%M"' | |
alias ls='ls -ac' | |
alias lls='ls -lac' | |
alias la="ls --color -lAGbh --time-style='+%b %d %Y %H:%M'" | |
# NPM run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# env | |
export DEBIAN_FRONTEND=noninteractive | |
# repository | |
## Paper Theme | |
sudo add-apt-repository ppa:snwh/pulp -y | |
## PHP | |
sudo add-apt-repository ppa:ondrej/php -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
------------------------------------------------------------ | |
Title : OCS Pyn-ject | |
Author : CyberJutsu | |
Versi : 127.0.0.1 | |
This Project based of Pinhole Project by Simon Foster | |
------------------------------------------------------------ | |
""" |