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
{"label":"2025-08-28","message":"207137 - 51%","schemaVersion":1,"color":"blue","logoSvg":"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<svg sodipodi:docname=\"Bart-logo.svg\" inkscape:version=\"1.3.2 (091e20e, 2023-11-25, custom)\" id=\"svg8\" version=\"1.1\" viewBox=\"0 0 434.48291 264.585\" height=\"1000.0063\" width=\"1642.1401\" xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:svg=\"http://www.w3.org/2000/svg\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n <defs id=\"defs2\"/>\n <sodipodi:namedview inkscape:pagecheckerboard=\"true\" inkscape:document-rotation=\"0\" units=\"px\" inkscape:window-maximized=\"1\" inkscape:window-y=\"-8\" inkscape:window-x=\"-8\" inkscape:window-height=\"1137\" inkscape:window-width=\"1920\" showgrid=\"false\" inkscape:current-la |
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
date | cars_received | cars_certified | cars_in_service | trains_in_service | |
---|---|---|---|---|---|
2025-08-15 | 1013 | 1002 | 400 | 55 | |
2025-08-01 | 1000 | 991 | 400 | 55 | |
2025-07-28 | 1000 | ||||
2025-07-21 | 994 | 976 | 400 | 55 | |
2025-05-27 | 958 | 946 | 400 | 55 | |
2025-04-29 | 938 | 931 | 400 | 55 | |
2025-03-24 | 903 | 891 | 400 | 55 | |
2025-01-29 | 887 | 870 | 400 | 55 | |
2025-01-13 | 868 | 858 | 400 | 55 |
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
package main | |
import ( | |
"flag" | |
"io" | |
"log" | |
"os" | |
"github.com/jonas747/dca" | |
) |
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 python3 | |
# | |
# A script to extract notes from .bearbk files (backups from Bear Notes app). | |
import argparse | |
import sys | |
import zipfile | |
def normalize_name(full_name: str, filename: str) -> str: |
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 | |
if [[ $# -lt 1 ]]; then | |
echo -e "Please specify filename!" | |
exit 1 | |
fi | |
docker run -it -v $(pwd):/workdir \ | |
pandoc/latext:latest \ | |
pandoc "/workdir/$1" -o "/workdir/$1.pdf" |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<!DOCTYPE preferences SYSTEM "http://java.sun.com/dtd/preferences.dtd"> | |
<preferences EXTERNAL_XML_VERSION="1.0"> | |
<root type="user"> | |
<map/> | |
<node name="KeyboardMacros"> | |
<map/> | |
<node name="Terminal 1"> | |
<map> | |
<entry key="name" value="Terminal 1"/> |
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
# Quick script to verify sha256 checksum of file on Windows. | |
# In order to run this script, you must be able to run unsigned powershell scripts. | |
# Run 'Set-ExecutionPolicy Unrestricted' as admin to run this script. | |
# Get image name and checksum from the user. | |
$image = Read-Host "Specify image name" | |
$expected_checksum = Read-Host "Specify checksum" | |
# Specify SHA256 checksum object. |
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 | |
# Prints the total received traffic. | |
echo "Total received data this session: $(/sbin/ifconfig eth0 | sed '8!d' | awk '{ print substr($3 $4, 2, length($3 $4) - 2) }')" | |
# Prints the total sent traffic: | |
echo "Total sent data this session: $(/sbin/ifconfig eth0 | sed '8!d' | awk '{ print substr($7 $8, 2, length($7 $8) - 2) }')" |
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
# Libraries: | |
import numpy as np | |
import math as m | |
# Global variables. | |
pi = m.pi | |
# num, num -> array() | |
# Takes a number of terms and the angle and returns an array of all | |
# terms between index 0 and n+1. |
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
# Solver : Newton's Method | |
# Initialization: ------------------------------------------------------------- | |
# Libraries: | |
from sympy import * | |
import time, sys | |
# Pretty-Print: | |
print('\033[1m' + 'Please input a function equal to zero and a guess below.' + '\033[0m') |