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
| ✅ config file: /home/username/.config/my/my/config/__init__.py | |
| ✅ mypy config check: success | |
| Success: no issues found in 4 source files | |
| ✅ OK : my.body | |
| ✅ - stats: {'teeth': {'count': 5}, 'shower': {'count': 1}, 'weight': {'count': 7}} | |
| ✅ OK : my.browsing | |
| ✅ - stats: {'history': {'count': 120594}} | |
| ✅ OK : my.coding | |
| ✅ - stats: {'commits': {'count': 5147}, 'repos': {'count': 118}} | |
| ✅ OK : my.facebook |
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
| Sonic Pi Boot Error Report | |
| ================== | |
| System Information | |
| ---------------- | |
| * Sonic Pi version: 3.2.2 | |
| * OS: Arch Linux |
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
| 1619336968:Searching for jobs in: | |
| 1619336968:/home/username/.local/scripts/supervisor/jobs/shared | |
| 1619336968:/home/username/.local/scripts/supervisor/jobs/linux | |
| 1619336968:/home/username/Repos/HPI/jobs/shared | |
| 1619336968:/home/username/Repos/HPI/jobs/linux | |
| 1619336968:Job List: | |
| 1619336968:/home/username/.local/scripts/supervisor/jobs/shared/mystars.job | |
| 1619336968:/home/username/.local/scripts/supervisor/jobs/linux/mint.job | |
| 1619336968:/home/username/.local/scripts/supervisor/jobs/linux/guestbook_comments.job | |
| 1619336968:/home/username/.local/scripts/supervisor/jobs/linux/update_rss.job |
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
| [$ grep-dotfiles ttt | clp | |
| /home/username/.config/i3/config:7:# ttt is littered throughout here, to track i3 bindsyms | |
| /home/username/.config/i3/config:8:# see https://github.com/purarue/ttt/ for more info | |
| /home/username/.config/i3/config:15:bindsym $mod+Shift+Escape exec --no-startup-id ttt lock-screen | |
| /home/username/.config/i3/config:47:bindsym XF86Display exec --no-startup-id ttt randomize-wallpaper | |
| /home/username/.config/i3/config:52:bindsym $mod+g exec --no-startup-id ttt trackpad | |
| /home/username/.config/i3/config:62:bindsym $mod+Shift+Tab exec --no-startup-id ttt i3binds-prompt | |
| /home/username/.config/i3/config:109:# wrapper to save history using ttt | |
| /home/username/.config/i3/config:116:bindsym $mod+n exec --no-startup-id ttt networkmanager_dmenu | |
| /home/username/.config/i3/config:119:bindsym --release Print exec --no-startup-id ttt screenshot |
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
| # run when tag file doesnt exist | |
| evrytest:data directory: /home/username/.local/share/evry/data | |
| evrytest:Parsed '5 seconds' into 5000ms | |
| evrytest:Tag file doesn't exist, creating and exiting with code 0 | |
| # run again immediately | |
| evrytest:data directory: /home/username/.local/share/evry/data | |
| evrytest:Parsed '5 seconds' into 5000ms |
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 collections, pprint, my.zsh | |
| >>> pprint.pprint(collections.Counter([e.command for e in my.zsh.history()]).most_common(25)) | |
| [('ls', 33943), | |
| ('gst', 5689), | |
| ('yst', 3667), | |
| ('ranger', 3635), | |
| ('ec', 3059), | |
| ('clear', 2695), | |
| ('gds', 1817), | |
| ('cd', 1615), |
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
| defmodule Main do | |
| #### helper methods | |
| def strlen(item) when is_bitstring(item) do | |
| item |> String.length() | |
| end | |
| def sort_string(item) when is_bitstring(item) do | |
| item |> String.to_charlist() |> Enum.sort() | |
| end |
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
| the | |
| of | |
| to | |
| and | |
| a | |
| in | |
| is | |
| it | |
| you | |
| that |
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 pprint | |
| import string | |
| from typing import Tuple | |
| def lookup_str_index(char: str): | |
| return string.ascii_uppercase.index(char) + 1 | |
| def parse_coord(locstr: str) -> Tuple[int, int]: | |
| return (int(locstr[0]), lookup_str_index(locstr[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
| #!/bin/bash | |
| # https://github.com/purarue/glue/ | |
| python3 "$REPOS/albums/server/app.py" & | |
| "$REPOS/wca_userinfo/run_server" & | |
| cd "$REPOS/docker-jikan" && ./run | |
| kill $(jobs -p) |