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
| 123pan-bin | |
| 1code | |
| 8192eu-dkms-git | |
| actual-ai | |
| adblock2privoxy | |
| aion-git | |
| albion-online-launcher-bin | |
| alienfx | |
| alvr | |
| android-signapk |
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
| server { | |
| access_log off; | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| # enforce https | |
| return 301 https://$host$request_uri; | |
| } | |
| server { | |
| access_log off; |
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
| import requests | |
| import json | |
| import time | |
| import sys | |
| import os | |
| from colorama import init | |
| init(strip=not sys.stdout.isatty()) # strip colors if stdout is redirected |
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 | |
| # this script goes to /etc/NetworkManager/dispatcher.d/ | |
| IF=$1 | |
| STATUS=$2 | |
| case "$2" in | |
| up) | |
| if [ "$CONNECTION_ID" == "WIFIonICE" ] |
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
| import poppler, os.path | |
| import os | |
| filenames = [] | |
| handels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| for name in os.listdir('.'): | |
| if name[-4:] == ".pdf": |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| export DISPLAY=":0" | |
| export KONSOLE_DBUS_SESSION=/Sessions/1 | |
| export KONSOLE_DBUS_SERVICE=:1.30 | |
| export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus | |
| STRDOCK=`lsusb | grep -o 17ef:100a` | |
| ID="17ef:100a" | |
| if [ -n "$STRDOCK" ]; then | |
| #echo "in Dock" | |
| if [ -e /run/user/1000/dockCookie ]; then |
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
| http://frv.tv/ab Funktionsgraphen erstellen mit dem GTR | |
| http://frv.tv/ac Nullstellen bestimmen | |
| http://frv.tv/ad Hochpunkte bestimmen | |
| http://frv.tv/ae Funktionswerte berechnen | |
| http://frv.tv/af Tiefpunkte bestimmen | |
| http://frv.tv/ag Wendepunkte bestimmen | |
| http://frv.tv/ah Integrale berechnen | |
| http://frv.tv/ai Integralgleichungen lösen | |
| http://frv.tv/aj Schnittpunkte von Graphen bestimmen | |
| http://frv.tv/ak Ableitungsgraphen zeichnen |
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
| var data = require("./wildesSH.json"); | |
| var features = []; | |
| for (platz of data) { | |
| //console.log(platz["ort"]["lon"]); | |
| var feature = {"type":"Feature"}; | |
| feature["geometry"] = {"type":"Point"} | |
| feature["geometry"]["coordinates"] = []; |
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
| inputFile = open("WEOApr2017all.csv","r") | |
| outputFile = open("output.csv","w") | |
| allLines = inputFile.readlines() | |
| print allLines[0].split("\t")[0:9] | |
| outputFile.write("\t".join(allLines[0].split("\t")[0:9]) + "\tYear\tValue"+ "\n") | |
| for i in allLines[1:-2]: | |
| akkList = i.split("\t") |
NewerOlder