Skip to content

Instantly share code, notes, and snippets.

View OpportunityLiu's full-sized avatar

Opportunity OpportunityLiu

  • EIRI, Tsinghua
  • Chengdu, China
  • 17:28 (UTC +08:00)
View GitHub Profile
@jcwillox
jcwillox / pnpm.ps1
Last active May 8, 2025 15:09
PowerShell Completion Script for `pnpm`
# powershell completion for pnpm -*- shell-script -*-
Register-ArgumentCompleter -CommandName 'pnpm' -ScriptBlock {
param(
$WordToComplete,
$CommandAst,
$CursorPosition
)
function __pnpm_debug {
@wagenet
wagenet / glibc.md
Last active March 11, 2025 05:42
glibc Versions

glibc Versions

List of oldest supported version of top 10 Linux Distros and their glibc version according to distrowatch.com.

Summary

Out of all versions with published EOLs, 2.12 is the oldest glibc still active, found in CentOS 6.8.

If CentOS 6 and 7 are eliminated, the oldest glibc is 2.23 in Ubuntu and Slackware.

@carmark
carmark / vboxmanage_examples.md
Created June 16, 2015 01:44
VBoxManage simple examples

As something of a follow-up post to the previous entry, here’s a quick recipe for creating a Virtual Machine using the VirtualBox command line tools:

We’re using Windows Server 2008 64bit as an example, modify to taste.

$ VM='Windows-2008-64bit'

Create a 32GB “dynamic” disk.

git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy