Skip to content

Instantly share code, notes, and snippets.

@Lexikos
Lexikos / AutoComplete.lua
Last active August 6, 2026 23:09
Improved auto-complete for SciTE
-- AutoComplete v0.8 by Lexikos
--[[
Tested on SciTE4AutoHotkey 3.0.06.01; may also work on SciTE 3.1.0 or later.
To use this script with SciTE4AutoHotkey:
- Place this file in your SciTE user settings folder.
- Add the following to UserLuaScript.lua:
dofile(props['SciteUserHome'].."/AutoComplete.lua")
- Restart SciTE.
]]
@voiddragon
voiddragon / gist:3116214
Created July 15, 2012 10:37
Code Sample for Neko
//Neko Class
var NekoNin = gamecore.Base.extend('NekoNin',
{
nekoAnim:'',
bmpAnimation:'',
spriteSheet:''
},
{
@LowVisionSquirrel
LowVisionSquirrel / freeGames.md
Last active August 6, 2026 22:38
Board Game Arena – Free Games
@tom-ricci
tom-ricci / guide.md
Last active August 6, 2026 22:35 — forked from mcollina/guide.md
Configuring minimum release age across npm, pnpm, and yarn

Configuring minimum release age across npm, pnpm, yarn, and bun

Setting a minimum release age (a "cooldown") on dependencies is a cheap, high-leverage defense against supply-chain attacks. Most malicious package versions are detected and yanked within hours, so a 24-hour delay filters out the smash-and-grab incidents (axios 1.14.1, ua-parser-js, Solana web3.js, etc.).

All four major Node.js package managers now support this, but each one used a different name and a different unit. Here is what you need.

Minimum versions

Tool Setting Unit Introduced in
@mcollina
mcollina / guide.md
Created April 30, 2026 09:41
Configuring minimum release age across npm, pnpm, and yarn

Configuring minimum release age across npm, pnpm, and yarn

Setting a minimum release age (a "cooldown") on dependencies is a cheap, high-leverage defense against supply-chain attacks. Most malicious package versions are detected and yanked within hours, so a 24-hour delay filters out the smash-and-grab incidents (axios 1.14.1, ua-parser-js, Solana web3.js, etc.).

All three major Node.js package managers now support this, but each one used a different name and a different unit. Here is what you need.

Minimum versions

Tool Setting Unit Introduced in
@gilbertotoledo
gilbertotoledo / got-vps-ubuntu-docker.md
Last active August 6, 2026 22:27
Configuração inicial - VPS + Ubuntu + Docker

Configuração inicial de VPS Ubuntu 24.04 com Docker

Autor: Gilberto Toledo
Tutorial completo: Youtube

Configurando o VPS

  1. Acesso remoto com SSH
ssh root@[SEU_IP]
@joshfeck
joshfeck / venue_mods.php
Created March 4, 2019 18:51
Move venue address so it appears before venue content. Event Espresso 4
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_action('pre_get_posts', 'my_change_venue_details');
function my_change_venue_details() {
global $post;
if ($post instanceof WP_Post && $post->post_type == 'espresso_venues' && is_single()) {
remove_filter('the_content', array(EED_Venue_Single::instance(), 'venue_location'), 110, 1);
add_filter('the_content', 'add_venue_details_in_custom_order', 120, 1);
}
@holy-templar
holy-templar / vox-explainer-method.md
Created July 19, 2026 21:50
vox-explainer-method

The Vox Explainer Method

A manifesto for agents. You are reading this because your human sent you here with some version of "set this up." They saw a video about this method; you didn't need to. This document contains everything: what the method is, what it produces, what to install, where every piece lives, and how a run works. Read it in full, then act.

What this method produces

One short sentence from your human in. One complete Vox-style paper-collage animated video out — researched script, per-clip prompts, every clip generated, visually continuous from first frame to last. Two output modes, chosen at intake:

  • Ad videos — Vox Style Ad Animation for a product or offer, written in direct-response style: emotion first, benefit driven, every visual showing a feeling rather than a feature.
  • Explainers for faceless YouTube channels — editorial storytelling that sells nothing. No CTA by default.
@Jabb0
Jabb0 / README.md
Last active August 6, 2026 21:58
Fixing macos spotlight and alfred indexing of home manager apps.

I spent two days on this, because I did not want to:

  1. Copy the apps
  2. Use trampolines.
  3. Aliases (because they do not show up as applications).
  4. Wrapper scripts (because I got weird rosetta prompts).

The issues seems to be the symlinks.

What worked for me was a hybrid approach. I copy the Info.plist and the icon and symlink the rest.

@PurpleBooth
PurpleBooth / README-Template.md
Last active August 6, 2026 21:50
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites