Click the gear icon on the right sidebar next to "About".
Uncheck everything you don't need to remove clutter.
When in doubt, uncheck. You can always recheck later.
// Half-Life / GoldSrc Engine | |
// RCE Fix (Buffer Overflow) | |
// | |
// CVE: CVE-2023-35855 | |
// | |
// Module: hw.dll | |
// Build: Aug 3 2020 (8684) | |
// | |
// Original SHA1 : f0f7372692f285154c76be35fc50b89ed0ea2d18 | |
// Fixed SHA1 : 51c2ecb1ab8241b6afeae535a6a66dbd73a00a65 |
<?php | |
class IDNA { | |
public static function encode($string) { | |
$parts = explode('.', $string); | |
foreach ($parts as &$part) { | |
$part = self::to_ascii($part); | |
if ($part === false) return false; | |
} | |
return implode('.', $parts); |
<?php | |
/* Simple PHP WHOIS (PHP >= 4.0) */ | |
/* https://gist.github.com/anzz1 */ | |
/* --------------------- CONFIGURATION --------------------- */ | |
// Clean up comments ('#', '%') and empty lines from the response | |
$NO_COMMENTS = false; |
<# : | |
@setlocal disabledelayedexpansion enableextensions | |
@echo off | |
powershell -nol -noni -nop -ex bypass -c "&{[ScriptBlock]::Create((cat '%~f0') -join [Char[]]10).Invoke(@(&{$args}%*))}" | |
exit /b | |
#> | |
function filesize($length) { | |
if($length -gt 1073741824) { | |
"{0:n1} GB" -f ($length / 1073741824) |
#!/bin/sh | |
ghcommit() { | |
git config user.name "**USERNAME**" && \ | |
git config user.email "**EMAIL**" && \ | |
echo git commit && \ | |
git commit | |
} | |
ghclone-s() { | |
if [ ! -z "$1" ]; then |
# boot2docker v18.01.0-ce 03596f5 Linux 4.4.111-boot2docker x86_64 | |
## config | |
BOX_CPU_COUNT = "2" | |
BOX_RAM_MB = "4096" | |
DOCKER_IMAGE = "anzz1/miyoomini-toolchain:latest" | |
DOCKER_RUN = "/bin/bash" | |
Vagrant.configure("2") do |config| |
Disable vim automatic visual mode on mouse select | |
issue: :set mouse-=a | |
add to ~/.vimrc: set mouse-=a | |
my ~/.vimrc for preserving global defaults and only changing one option: | |
source $VIMRUNTIME/defaults.vim | |
set mouse-=a |
#!/bin/sh | |
#*************************************************************************** | |
# _ _ ____ _ | |
# Project ___| | | | _ \| | | |
# / __| | | | |_) | | | |
# | (__| |_| | _ <| |___ | |
# \___|\___/|_| \_\_____| | |
# | |
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. | |
# |
// joaat.c | |
#include <stdio.h> | |
unsigned long joaat_i(const unsigned char* s) { | |
unsigned long hash = 0; | |
while (*s) { | |
hash += ((*s>64&&*s<91)?((*s++)+32):*s++); // A-Z -> a-z | |
hash += (hash << 10); | |
hash ^= (hash >> 6); |
Click the gear icon on the right sidebar next to "About".
Uncheck everything you don't need to remove clutter.
When in doubt, uncheck. You can always recheck later.