Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| FILTER_PATTERNS =*.js=doxygen.js |
| // Today's time is needed to get the bounding for the request | |
| $currentTime = time(); | |
| // Beginning and end of the day | |
| $startTime = strtotime("midnight", $currentTime); | |
| $endTime = strtotime("tomorrow", $startTime); | |
| $smon = date("m", $startTime)-1; | |
| $sday = date("d", $startTime); | |
| $syear = date("Y", $startTime); |
| #!/bin/bash | |
| # Ubuntu Developer Script For pdf2htmlEx | |
| # Created by Rajeev Kannav Sharma | |
| # http://rajeevkannav.github.io/ | |
| # | |
| # | |
| # Downloads and configures the following: | |
| # | |
| # CMake, pkg-config | |
| # GNU Getopt |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using iTextSharp.text.pdf; | |
| namespace PDFExtract | |
| { | |
| public class PDFExtractor | |
| { |
| FROM golang:1.9 | |
| RUN mkdir -p /go/src/github.com/purplebooth/example | |
| WORKDIR /go/src/github.com/purplebooth/example | |
| COPY . . | |
| RUN go build -ldflags "-linkmode external -extldflags -static" -a main.go | |
| FROM scratch | |
| COPY --from=0 /go/src/github.com/purplebooth/example/main /main | |
| CMD ["/main"] |
| # Borrowed from: | |
| # https://github.com/silven/go-example/blob/master/Makefile | |
| # https://vic.demuzere.be/articles/golang-makefile-crosscompile/ | |
| BINARY = superdo | |
| VET_REPORT = vet.report | |
| TEST_REPORT = tests.xml | |
| GOARCH = amd64 | |
| VERSION?=? |
| #!/usr/bin/env python | |
| # | |
| # Simple script showing how to read a mitmproxy dump file | |
| # | |
| ### UPD: this feature is now avaiable in mitmproxy: https://github.com/mitmproxy/mitmproxy/pull/619 | |
| from libmproxy import flow | |
| import json, sys |