# Ubuntu 20
apt install build-essential libbz2-dev libc6-dev libffi-dev libgdbm-dev liblzma-dev libncurses5-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev openssl python-dev python-pip python-setuptools python-smbus tk-dev xz-utils zlib1g-dev
# Ubuntu 22
apt install build-essential libbz2-dev libc6-dev libffi-dev libgdbm-dev liblzma-dev libncurses5-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev openssl python3-dev python-pip python-setuptools python3-smbus tk-dev xz-utils zlib1g-dev
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 | |
# | |
# Show user stats (commits, files modified, insertions, deletions, and total | |
# lines modified) for a repo | |
git_log_opts=( "$@" ) | |
git log "${git_log_opts[@]}" --format='author: %ae' --numstat \ | |
| tr '[A-Z]' '[a-z]' \ | |
| grep -v '^$' \ |
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 | |
# | |
# This file is used to ignore files and folders in git. | |
# | |
# usage: | |
# git ignore | |
# git ignore <file1|pattern1> <file2|pattern2> ... | |
# | |
# - If no arguments are given, the .gitignore file will be opened in your | |
# default $EDITOR. |
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 | |
HIGHER: int = 3 | |
EXACT: int = 2 | |
LOWER: int = 1 | |
AUTO: int = 0 | |
def run(mode: int = AUTO, ceil: int = 100, repeat: int = 10): | |
""" | |
Runs a sequence of Higher/Lower games using the given answering method and |
Adapted from Matt Upham's Omegle IP Scraper: https://gist.github.com/mattupham/8db8da9662dca830ec81b43b30eb8a6d
Earliest version found by kaaaxcreators and released under GNU General Public License v3.0: https://github.com/kaaaxcreators/omegleip
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
### Prsteni ### | |
# https://open.kattis.com/problems/prsteni | |
# | |
# Input | |
# The first line of input contains an integer N(3≤N≤100), the number of rings. | |
# The next line contains N integers between 1 and 1000, the radii of Stanko’s | |
# rings, in the order they are laid out on the floor. | |
# | |
# Output | |
# The output must contain N−1 lines. For every ring other than the first, in the |
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
1880 Bank | |
1st Advantage Bank | |
1st Bank | |
1st Bank in Hominy | |
1st Bank of Sea Isle City | |
1st Bank & Trust | |
1st Bank Yuma | |
1st Cameron State Bank | |
1st Century Bank | |
1st Colonial Community Bank |
We can't make this file beautiful and searchable because it's too large.
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
trail_id,name,area_name,city_name,state_name,country_name,_geoloc,popularity,length,elevation_gain,difficulty_rating,route_type,visitor_usage,avg_rating,num_reviews,features,activities,units | |
10020048,Harding Ice Field Trail,Kenai Fjords National Park,Seward,Alaska,United States,"{'lat': 60.18852, 'lng': -149.63156}",24.8931,15610.598,1161.8976,5,out and back,3,5,423,"['dogs-no', 'forest', 'river', 'views', 'waterfall', 'wild-flowers', 'wildlife']","['birding', 'camping', 'hiking', 'nature-trips', 'trail-running']",i | |
10236086,Mount Healy Overlook Trail,Denali National Park,Denali National Park,Alaska,United States,"{'lat': 63.73049, 'lng': -148.91968}",18.0311,6920.162,507.7968,3,out and back,1,4.5,260,"['dogs-no', 'forest', 'views', 'wild-flowers', 'wildlife']","['birding', 'camping', 'hiking', 'nature-trips', 'walking']",i | |
10267857,Exit Glacier Trail,Kenai Fjords National Park,Seward,Alaska,United States,"{'lat': 60.18879, 'lng': -149.631}",17.7821,2896.812,81.9912,1,out and back,3,4.5,224,"['dogs-no', 'part |
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 | |
# A script for quickly opening and attaching to tmux sessions | |
# | |
# It takes two optional arguments: a session name and directory. | |
# If no session name is provided, "main" is used. If no | |
# directory is provided, the current directory is used. Then | |
# it simply switches to that session. If that session doesn't | |
# exist, it creates it first and sets the default session. You'd | |
# think this would be trivial, but tmux requires many different | |
# options to create/attach a session based on the context. |
NewerOlder