Skip to content

Instantly share code, notes, and snippets.

View MinmoTech's full-sized avatar
:octocat:
Beep Boop, working correctly

MinmoTech MinmoTech

:octocat:
Beep Boop, working correctly
  • Migaku
View GitHub Profile
@MinmoTech
MinmoTech / Gen 1-4 Pokedex.pdf
Last active July 28, 2023 14:45
Pokemon gen 4 pokedex completion guite
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MinmoTech
MinmoTech / nitpick-style.toml
Last active August 17, 2021 13:34
Nitpick config
["pyproject.toml".tool.black]
line-length = 120
["pyproject.toml".tool.poetry.dev-dependencies]
black = "*"
pylint = "*"
mypy = "*"
rope = "*"
flake8 = "*"
flake8-bugbear = "*"

Monero Address:

8AdaYCq4xA6BTUhCGQnPyJUG6p3GUY5A1WDSgjSVLzE9D38G21iFwbrCXGWWcgRRYmej6EG3JdFi4bLRWgM2mCTcJcVbG2V

monero

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "Boot from second disk and see it as first disk" {
set root=(hd1)
drivemap -s hd0 hd1
chainloader +1
@MinmoTech
MinmoTech / lastpass2gopass.py
Last active April 19, 2020 15:27
Lastpass to gopass export script. Export lastpass database as csv and put it next to the script. Then execute.
#!/usr/bin/env python
import csv
from itertools import islice
import os
with open('lastpass_export.csv', newline='') as f:
reader = csv.reader(f)
for row in islice(reader, 1, None):
url = row[0]
@MinmoTech
MinmoTech / back.txt
Created January 5, 2020 13:46
MIA Japanese Anki Template
<div class="tags">
例文{{#Tags}}|{{/Tags}}{{Tags}}</span>
</div>
{{#Audio on Front}}<span class="expression-field">{{Audio}}</span><hr>{{/Audio on Front}}
<span class="expression-field"><div display-type="coloredkanjireading" class="wrapped-japanese">{{Expression}}</div></span>
{{^Audio on Front}}<hr>{{/Audio on Front}}
{{^Audio on Front}}<div class="meaning-field"><div display-type="coloredhover" class="wrapped-japanese">{{Meaning}}</div></div>{{/Audio on Front}}
{{#Audio on Front}}<div class="meaning-field padded-top"><div display-type="coloredhover" class="wrapped-japanese">{{Meaning}}</div></div>{{/Audio on Front}}
{{^Audio on Front}}{{Audio}}{{/Audio on Front}}
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
CPU Family: 0x6
@MinmoTech
MinmoTech / defaultbrowser.txt
Created October 29, 2019 09:38
Set default browser
xdg-mime default browser.desktop x-scheme-handler/http
xdg-mime default browser.desktop x-scheme-handler/https
@MinmoTech
MinmoTech / .gitignore
Last active May 7, 2020 17:00
deezer downloadlinks
./*
*
def print_first_element_from_sublist(list):
for sublist in list:
print(sublist[0])
list = [[0,1],[3,4]]
print_first_element_from_sublist(list)