Skip to content

Instantly share code, notes, and snippets.

View wilbeibi's full-sized avatar
🍼
0 */3 * * * changeDiaper

Hongyi Shen wilbeibi

🍼
0 */3 * * * changeDiaper
View GitHub Profile
@wilbeibi
wilbeibi / ansible.cfg
Created January 23, 2019 06:07 — forked from nazarewk/ansible.cfg
Ansible SSH Agent forwarding with Jump (bastion) host
[defaults]
sudo_flags = SSH_AUTH_SOCK="$SSH_AUTH_SOCK" -H -S -n
[ssh_connection]
ssh_args=-o ForwardAgent=yes
@wilbeibi
wilbeibi / show-douban-id-and-gender.js
Created December 9, 2019 08:33 — forked from naoyeye/show-douban-id-and-gender.js
显示豆瓣用户id和性别
// ==UserScript==
// @name 显示豆瓣用户id和性别
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author J.Y Han
// @match https://www.douban.com/people/*
// @grant showDoubanIdAndGender
// ==/UserScript==
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
use std::time::{Duration, Instant};
struct Inspect<F>(F);
impl<F: Future> Future for Inspect<F> {
type Output = F::Output;
@wilbeibi
wilbeibi / auto-capture.scpt
Created March 22, 2022 20:53 — forked from jonobr1/auto-capture.scpt
A small AppleScript to take a screenshot every 30 seconds for 8 hours. Saves to an Image Sequence in a desktop folder. Great for recording your workday.
set dFolder to "~/Desktop/screencapture/"
do shell script ("mkdir -p " & dFolder)
set i to 0
repeat 960 times
do shell script ("screencapture " & dFolder & "frame-" & i & ".png")
delay 30 -- Wait for 30 seconds.
set i to i + 1
end repeat