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
https://digitransit.fi/en/developers/apis/4-realtime-api/vehicle-positions/ | |
GTFS files https://digitransit.fi/en/developers/services/6-data-containers/routing-data/ | |
https://developers.google.com/transit/gtfs/reference/ | |
<prefix> /hfp/ | |
<version>/ v1/ | |
journey/ journey/ | |
<temporal_type>/ ongoing/ | |
<transport_mode>/ train/ |
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
cat /proc/net/dev ; date ; docker-compose up -d ; cat /proc/net/dev ; date |
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 | |
filename="$PWD/`date +%Y%m%d`network.csv" | |
echo "command,date,epoch,delta_bytes,bytes" >> $filename | |
prev_bytes=$(cat /proc/net/dev | grep 'eth0:' | awk '/:/ { print($2) }') | |
function log(){ | |
bytes=$(cat /proc/net/dev | grep 'eth0:' | awk '/:/ { print($2) }') | |
let delta=$bytes-$prev_bytes | |
prev_bytes=$bytes | |
human_date=$(date) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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 | |
ver=${ver-0.46.0} | |
code --install-extension vscjava.vscode-java-pack --force && \ | |
code --uninstall-extension vscjava.vscode-java-dependency && \ | |
code --uninstall-extension vscjava.vscode-java-test && \ | |
code --uninstall-extension vscjava.vscode-java-debug && \ | |
code --uninstall-extension redhat.java | |
wget https://github.com/redhat-developer/vscode-java/releases/download/v${ver}/redhat.java-${ver}.vsix | |
code --install-extension redhat.java-${ver}.vsix |
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 -ex | |
# force all the extensions to update | |
code --install-extension vscjava.vscode-java-pack --force && \ | |
code --install-extension ms-azuretools.vscode-docker --force && \ | |
code --install-extension ms-python.python --force && \ | |
code --install-extension ms-vscode.csharp --force && \ | |
code --install-extension redhat.java --force && \ | |
code --install-extension VisualStudioExptTeam.vscodeintellicode --force && \ | |
code --install-extension vscjava.vscode-java-debug --force && \ |
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
""" | |
Before you run this establish an SSH tunnel to the postgres database: | |
ssh -L 5432:localhost:5432 [email protected] | |
""" | |
import boto3 | |
import pprint | |
import sys | |
import psycopg2 | |
import hashlib |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.