This file contains 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
OmniCode! version 0.1.7 | |
Description for the New Net | |
All codes are built in the following way: | |
[code symbol][attribute].[modifier].[modifier].[modifier]... | |
or for multiple codes: | |
[code symbol][attribute].[modifier]&[attribute].[modifier]... |
This file contains 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
javascript:location.href=window.location.href.replace(/\/s\d{3}x\d{3}\//g,%20"/"); |
This file contains 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
[Desktop Entry] | |
Encoding=UTF-8 | |
Version=1.0 | |
Name=$vb_name | |
Comment=Starts the VirtualBox machine $vb_name | |
Type=Application | |
Exec=/usr/lib/virtualbox/VirtualBox --comment $vb_name --startvm $vb_uuid | |
Icon=virtualbox-vbox.png |
This file contains 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 | |
if ! type adb; then | |
echo "adb not found" | |
echo "check PATH" | |
else | |
echo "============================" | |
echo "Android Device Specificatios" | |
echo "============================" | |
adb wait-\for-device | |
echo "> Manufacturer" |
This file contains 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 | |
import requests | |
from bs4 import BeautifulSoup | |
from re import findall | |
url = 'http://5.9.247.121/d34dc0d3' | |
headers = { 'X-0x0ACE-Key' : 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' } | |
# key to be taken by previous challenge on 80.233.134.210 | |
def solve(bgn,end): |
This file contains 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 | |
# shitty way of doing a Lagrange interpolation | |
def lagint(xarr,yarr): | |
p = [] | |
k = len(xarr) # rank+1 | |
for i in range(k): | |
Li = [] | |
for j in range(k): | |
if (j != i): |
This file contains 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 bash | |
# | |
# Convert a Sourceforge's CVS repo to Git. | |
# depends | |
type -p rsync >/dev/null || exit 3 | |
type -p cvs2git >/dev/null || exit 3 | |
# trap SIGINT | |
trap 'trap - INT; kill -s INT "$$"' INT |
This file contains 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 bash | |
# | |
# Convert CSV file(s) to a TeX table. | |
# trap SIGINT | |
trap 'trap - INT; kill -s INT "$$"' INT | |
caption="Πειραματικά δεδομένα." | |
label_template="tab:" | |
out_template="tab-" |
This file contains 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 bash | |
# | |
# Convert cbr files to cbz. | |
# depends | |
type -p 7z >/dev/null || exit 3 | |
# trap SIGINT | |
trap 'trap - INT; kill -s INT "$$"' INT |
This file contains 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 bash | |
# | |
# Extract all tracks/attachments/chapters from an mkv file. | |
# depends | |
type -p mkvmerge &>/dev/null || exit 3 | |
type -p mkvextract &>/dev/null || exit 3 | |
# trap SIGINT | |
trap 'trap - INT; kill -s INT "$$"' INT |
OlderNewer