CLICK ME
yes, even hidden code blocks!
print("hello world!")
I use the first | |
—– BEGIN LICENSE —– | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
Windows Registry Editor Version 5.00 | |
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\MSYS here] | |
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\MINGW64 here] | |
[-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\MINGW32 here] |
import java.util.concurrent.ThreadPoolExecutor.AbortPolicy | |
import java.util.concurrent._ | |
import scala.concurrent.{ Promise, Future } | |
import scala.concurrent.duration.FiniteDuration | |
import scala.language.implicitConversions | |
import scala.util.Try | |
object ScheduledExecutor { | |
private val defaultHandler: RejectedExecutionHandler = new AbortPolicy |
import java.io.IOException | |
import java.nio.ByteBuffer | |
import java.nio.channels.{AsynchronousFileChannel, CompletionHandler} | |
import java.nio.file.Paths | |
import java.nio.file.StandardOpenOption._ | |
import scala.concurrent.{ExecutionContext, Future, Promise} | |
import scala.util.Try | |
/** |
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\open_msys2] | |
@="Open MSYS2 here" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\open_msys2\command] | |
@="c:\\msys64\\usr\\bin\\mintty.exe /bin/sh -lc 'cd \"$(cygpath \"%V\")\"; exec bash'" | |
[HKEY_CLASSES_ROOT\Folder\shell\open_msys2] | |
@="Open MSYS2 here" |
# ag <https://github.com/ggreer/the_silver_searcher> | |
# usage: ag-replace.sh [search] [replace] | |
# caveats: will choke if either arguments contain a forward slash | |
# notes: will back up changed files to *.bak files | |
ag -0 -l $1 | xargs -0 perl -pi.bak -e "s/$1/$2/g" | |
# or if you prefer sed's regex syntax: | |
ag -0 -l $1 | xargs -0 sed -ri.bak -e "s/$1/$2/g" |
!/usr/bin/expect -f | |
set timeout 30 | |
log_user 0 | |
puts stderr "Generating OTP" | |
spawn oathtool --totp YOUR_SECRET_KEY_HERE | |
expect -re \\d+ | |
set otp $expect_out(0,string) | |
puts stderr "Connecting to VPN server $server" |
LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory(); | |
StatusManager statusManager = lc.getStatusManager(); | |
if (statusManager != null) { | |
statusManager.add(new InfoStatus("Configuring logger", lc)); | |
} | |
SiftingAppender sa = new SiftingAppender(); | |
sa.setName("SIFT"); | |
sa.setContext(lc); |
/* | |
Copyright 2018 Viktor Klang | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |