Skip to content

Instantly share code, notes, and snippets.

View Mirdrack's full-sized avatar
👨‍🚒
Be comfortable with the chaos

Clemente Estrada Mirdrack

👨‍🚒
Be comfortable with the chaos
View GitHub Profile
@Mirdrack
Mirdrack / songs-to-print.txt
Last active May 29, 2019 21:23
Songs to print
Over the hills and far away
A million miles from L.A.
Just anywhere away with you
I know we've got to get away
Someplace where no one knows our name
We'll find the start of something new
Just take me anywhere, take me anywhere
Anywhere away with you
=============================================

Keybase proof

I hereby claim:

  • I am mirdrack on github.
  • I am mirdrack (https://keybase.io/mirdrack) on keybase.
  • I have a public key ASBgWNm42sEiGCTVZYP0np70Vwv7siKpqPDnNYrEVEnfFgo

To claim this, I am signing this object:

{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Facebook (SL).tmTheme",
"copy_with_empty_selection": false,
"default_line_ending": "unix",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Facebook (SL).tmTheme",
"copy_with_empty_selection": false,
"default_line_ending": "unix",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
{
"bootstrapped": true,
"downloader_precedence":
{
"linux":
[
"curl",
"urllib",
"wget"
],
@Mirdrack
Mirdrack / file_remover.py
Last active July 12, 2016 20:50
Python file remover
import os, os.path
delete_size = raw_input('Enter your file size in bytes: ')
deleted_files = 0
for filename in os.listdir(os.getcwd()):
f_size = os.path.getsize(os.path.join(os.getcwd() + '/', filename))
if f_size < int(delete_size):
print filename + ' Deleted'
os.remove(os.getcwd() + '/', filename))