I hereby claim:
- I am dzervas on github.
- I am dzervas (https://keybase.io/dzervas) on keybase.
- I have a public key whose fingerprint is RETU RN T HIS. PGP. GET_ FING ERPR INT( ); }
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
\s+(?:-([a-zA-Z0-9])(?:\s[\w,.<>\[\]]+)?)?,?\s+(?:--([a-z-]+)(?:\s[\w,.<>\[\]:]+)?)?\s+([A-Z][\w \(\)\/,.<>'-;\"]+) |
FROM alpine | |
MAINTAINER Dimitris Zervas <[email protected]> | |
RUN apk add --update --no-cache bash curl gnupg && mkdir /caddy | |
RUN curl https://getcaddy.com | bash -s personal | |
WORKDIR /caddy | |
EXPOSE 80 443 2015 | |
VOLUME [ "/caddy" ] |
#!/usr/bin/env python3 | |
import sys | |
# Usage: python efood_pinata.py 5 5 5 3 | |
items = sys.argv[1:] | |
total = 0 | |
discountp = 0 | |
for i in items: | |
total += float(i) |
local getopt = require('getopt') | |
local utils = require('utils') | |
local function main(args) | |
key = 0x00000000 | |
byte = 0x04 | |
data = 0x00000000 | |
for o, a in getopt.getopt(args, 'k:b:d:') do | |
if o == 'k' then key = tonumber(a, 16) end |
// Enumerates all Java classes & methods in a nice way | |
var enumer = {}; | |
enumer.exclude = [ "size" ]; | |
filter = filter || function(obj, prop) { return true; }; | |
enumer.enumer = function(filter) { | |
return { | |
onMatch: function(obj) { |
# WARNING: Please lower max Z speed to 30mm/s and max XY speeds to 50mm/s. | |
# Tinker more, maybe it needs to go slower! | |
# Pcb2GCode settings | |
metric=true | |
metricoutput=true | |
zero-start=true | |
zsafe=4 | |
zchange=5 | |
milling-overlap=10% |
# irm https://gist.github.com/dzervas/1455ace739c9871d1dcd06693d8ee874/raw | iex | |
#Bypass Execution Policy | |
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force | |
#Install boxstarter | |
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')); Get-Boxstarter -Force | |
#Disable UAC | |
Disable-UAC |