I hereby claim:
- I am violentmagician on github.
- I am sudo6780 (https://keybase.io/sudo6780) on keybase.
- I have a public key whose fingerprint is 3083 C564 00A9 A5D2 BDED 0F38 C6B3 721B FAF3 1F8A
To claim this, I am signing this object:
| #!/usr/bin/python3 | |
| import os, time, shutil, sys, calendar | |
| dir = sys.argv[1] | |
| os.chdir(dir) | |
| for f in filter(os.path.isfile, os.listdir(os.curdir): | |
| ftime = time.gmtime(os.path.getmtime(f)) | |
| ctime_dir = "{1}{0}{2}".format(os.sep, | |
| ftime.tm_year, |
I hereby claim:
To claim this, I am signing this object:
| [threading.thread]::CurrentThread.CurrentCulture = 'en-US' | |
| $excel = new-object -com excel.application; | |
| $excel.visible = $true | |
| $folders = Get-ChildItem -Directory | |
| foreach ($folder in $folders) | |
| { | |
| cd $folder.FullName | |
| $files = Get-ChildItem -Filter *.xlsx |
| [threading.thread]::CurrentThread.CurrentCulture = 'en-US' | |
| $excel = New-Object -ComObject Excel.Application | |
| $excel.Visible = $True | |
| $excel.DisplayAlerts = $False | |
| $folders = Get-ChildItem -Directory | select -ExpandProperty FullName | |
| #Open up a new workbook | |
| $dest = $excel.Workbooks.Add() | |
| foreach ($folder in $folders) | |
| { |
| <html> | |
| <head> | |
| <script src="https://unpkg.com/[email protected]"></script> | |
| <script src="https://unpkg.com/[email protected]"></script> | |
| <script src="https://unpkg.com/vue@latest/dist/vue.js"></script> | |
| <script src="https://unpkg.com/vuex"></script> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <a @click="clear">Reset to Default</a> |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- # | |
| from __future__ import unicode_literals | |
| # -------------------------------------- | |
| # Now compatible with Pelican 4.0.x! | |
| # -------------------------------------- | |
| # Added by me | |
| import time |
| python -c "LENGTH=15;from secrets import choice;from string import printable; print(''.join([choice(printable.strip()) for i in range(LENGTH)]))" |
| #! /usr/bin/python3 | |
| import click | |
| import PyPDF2 | |
| def parseIntSet(inputString): | |
| selection = set() | |
| invalid = set() | |
| tokens = [x.strip() for x in inputString.split(",")] | |
| for token in tokens: |
| ############################################################################ | |
| # # | |
| # ------- Useful Docker Aliases -------- # | |
| # # | |
| # # Installation : # | |
| # copy/paste these lines into your .bashrc or .zshrc file or just # | |
| # type the following in your current shell to try it out: # | |
| # wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
| # # | |
| # # Usage: # |