I hereby claim:
- I am kaimingguo on github.
- I am kaiming (https://keybase.io/kaiming) on keybase.
- I have a public key ASA2yXjjhAzNRexyrFbt6FXGeCCRINTww4NeA8P4tWxinQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
rg --color=always --line-number "TODO|FIXME|XXX|HACK|BUG|NOTE" | \
fzf --ansi \
--delimiter : \
--preview 'bat --style=numbers --color=always --highlight-line {2} {1}' \
--preview-window '+{2}-/2'
[package] | |
name = "tw-powerball-rs" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
rand = "0.9" |
package main | |
import ( | |
"crypto" | |
"crypto/ecdsa" | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/x509" | |
"crypto/x509/pkix" | |
"encoding/base64" |
Start chrome browser with Profile 1 in a new tab.
$ open -a "Google Chrome" --args --profile-directory="Profile 1"
Start Brave browser with Default in a new tab.
$ /Applications/Brave\ Browser/Contents/MacOS/Brave\ Browser --profile-directory="Default"
package main | |
import ( | |
"math/rand" | |
"path/filepath" | |
"time" | |
"github.com/go-ole/go-ole" | |
"github.com/go-ole/go-ole/oleutil" | |
"github.com/scjalliance/comshim" |
#include <assert.h> | |
#include <ole2.h> | |
#include <iostream> | |
#include <memory> | |
#include <sstream> | |
#include <vector> | |
template <class T> | |
void SafeRelease(T **ppT) { |
package main | |
import ( | |
"fmt" | |
"regexp" | |
"strconv" | |
"time" | |
) | |
func main() { |
#include <windows.h> | |
#include <iostream> | |
#include <vector> | |
struct ScreenArray { | |
std::vector<RECT> Monitors; | |
static BOOL CALLBACK MonitorEnumProc(HMONITOR monitor, HDC hdc, LPRECT rect, LPARAM data) { | |
MONITORINFOEX mi = {0}; |