Skip to content

Instantly share code, notes, and snippets.

View satler-git's full-sized avatar

satler satler-git

View GitHub Profile
#![feature(prelude_import)]
#[prelude_import]
use std::prelude::rust_2021::*;
#[macro_use]
extern crate std;
fn main() {
let flags = {
pub struct Flags {
pub num: u32,
pub decrease: bool,

Keybase proof

I hereby claim:

  • I am satler-git on github.
  • I am satler (https://keybase.io/satler) on keybase.
  • I have a public key ASDpWrOA8nNyqAvaafmpUpsLjujdL5AF-a3aUZ1eA3E-hwo

To claim this, I am signing this object:

@satler-git
satler-git / ghqcd.ps1
Last active May 5, 2024 10:17
ghq cd
param([String]$repoName)
# ghqのルートディレクトリを取得
$ghqRoot = (ghq root)
# ghq listコマンドの結果から指定されたリポジトリ名を含む行を検索
if ($repoName) {
$repoPath = ghq list | Where-Object { $_ -match $repoName }
} else {
$repoPath = ghq list | fzf