- ax, bx, cx, dx general purpose registers (16 bits)
ah: 8bit from front (a-HIGH)
al: 8bit from back (a-LOW)
- ip, sp, bp
ip: instruction pointer
sp, bp: stack stuff. get it?
| const data = []; | |
| const characters = $0.getElementsByTagName("li") | |
| for (const character of characters) { | |
| const charName = character.getElementsByTagName("a")[0].innerText; | |
| console.log(charName); | |
| data.push(charName); | |
| } |
| try { | |
| let e; | |
| let tweets; | |
| } catch(e) { } | |
| d = document; | |
| tweets = d.getElementsByClassName("r-1j3t67a"); | |
| for ( const tweet of tweets ) { | |
| try { |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # whether you need verbose boot results: 0 to disable | |
| VERBOSE=0 | |
| # Verbose Terminal Start | |
| if [ ! $VERBOSE = 0 ]; then | |
| figlet Alex4386 | |
| echo "Copyright (c) Alex4386" |
| #!/bin/bash | |
| echo "The Mac Changer" | |
| echo | |
| echo "Copyright (c) Alex4386, Distributed under HRPL" | |
| read -p "Type Interface you want to change: " interface | |
| read -p "Type Mac Address you want to change: " mac | |
| echo | |
| echo Backing up your previous mac | |
| ifconfig $interface | grep ether > mac_bak.txt | |
| echo Backup is now available at mac_bak.txt |
| typedef struct SevenSegmentCombination { | |
| bool pinA; | |
| bool pinB; | |
| bool pinC; | |
| bool pinD; | |
| bool pinE; | |
| bool pinF; | |
| bool pinG; | |
| } SevenSegmentCombination; |
| typedef struct SevenSegmentCombination { | |
| bool pinA; | |
| bool pinB; | |
| bool pinC; | |
| bool pinD; | |
| bool pinE; | |
| bool pinF; | |
| bool pinG; | |
| } SevenSegmentCombination; |
| #!/bin/bash | |
| echo Remove AhnLab unSafe Transaction: | |
| cd /Applications/AhnLab/ASTx/ | |
| open Uninstaller.app |
| #!/bin/bash | |
| echo "Add Debian Sources.list" | |
| sudo echo "deb http://ftp.kr.debian.org/debian/ stable main contrib non-free" >> /etc/apt/sources.list | |
| sudo echo "deb-src http://ftp.kr.debian.org/debian/ stable main contrib non-free" >> /etc/apt/sources.list | |
| sudo apt update | |
| sudo apt upgrade -y | |
| sudo apt install dh-python | |
| sudo apt install -f |
| #!/bin/bash | |
| echo =================================== | |
| echo " _ ____ ____ _ ____ __ " | |
| echo "(_) _ \\| _ \\ / \\ / ___/ /_ " | |
| echo "| | | | | |_) | / _ \\| | | '_ \\ " | |
| echo "| | |_| | _ < / ___ \\ |__| (_) |" | |
| echo "|_|____/|_| \\_\\/_/ \\_\\____\\___/ " | |
| echo =================================== |