Skip to content

Instantly share code, notes, and snippets.

@akaleeroy
akaleeroy / README.md
Last active May 30, 2018 12:59
Add to Reddit Bookmarklet

Add to Reddit Bookmarklet

Bookmarklet to quickly submit links to your subreddit of choice. Replace YOURSUBREDDITHERE accordingly.

  • Opens in new window so it doesn't navigate away from playing music/video.
  • On YouTube it grabs the title without the - YouTube termination.
@akaleeroy
akaleeroy / redditp-feature-collect.user.js
Last active March 30, 2018 00:04
RedditP Collect feature userscript
// ==UserScript==
// @name RedditP Collect
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Collect cool stuff while staying in the flow. Download them at the end.
// @author Leeroy
// @match http://redditp.com/*
// @grant GM_addStyle
// @grant GM_download
// @noframes
@akaleeroy
akaleeroy / README.md
Last active November 9, 2017 22:52
Portabilitate Bookmarklet - Verifica in ce retea suni

Portabilitate Bookmarklet

Verifică în ce rețea suni

Cum arata cand folosesti bookmarkletul

Instalare

Copiază textul fișierului portabilitate-bookmarklet.min.js și pune-l în câmpul URL când creezi un nou bookmark.

Folosire

@akaleeroy
akaleeroy / Internet-Connection.ps1
Created May 12, 2017 16:20
PowerShell Internet Connection helper functions: Test-InternetAccess, Go-Offline, Go-Online
#Requires -Version 2.0
function Test-InternetAccess {
<#
.SYNOPSIS
Tests connectivity by pinging Google DNS servers once
.DESCRIPTION
Uses Test-Connection to ping a host, with -Quiet for returning a boolean. The default is a highly available Google DNS server (8.8.4.4)
.EXAMPLE
Test-InternetAccess
@akaleeroy
akaleeroy / Configure-Blender-STL.md
Last active April 4, 2016 19:34
Configure Blender STL Import/Export default settings

Configure Blender STL default settings

Blender STL default settings aren't what I like to have by default. Working in millimeters inside Blender makes the STLs come out tiny, so I tried to find a way to change these defaults and keep it that way.

Turns out they're baked into the io_mesh_stl script. This gist is a Windows PowerShell script to make the necessary adjustments. They are:
ImportSTL global_scale at _init_.py#L102 becomes default=0.1

ExportSTL use_selection below at _init_.py#L166 becomes default=True.

@akaleeroy
akaleeroy / youtube-fragment.js
Last active December 29, 2015 12:49
YouTube Fragment Bookmarklet - Link to a specific portion of a video.
/*jslint */
/*global movie_player */
//javascript:
(function () {
var id = document.querySelector('meta[itemprop="videoId"]').content,
markIn,
markOut,
w;
console.info('YouTube Fragment Bookmarklet\n' +
'Keyboard shortcuts:\n' +
@akaleeroy
akaleeroy / toggle.bat
Last active December 29, 2015 02:19
Pretty Decent Folder Hider - Batch file that hides a folder through shenanigans.
@echo off
:: The parent directory where the stash is
cd /d "E:\"
:: Check if the stash is exposed and lock it, unlock it if not
if not exist "*.{ed50fc29-b964-48a9-afb3-15ebb9b97f36}" ( goto Lock ) else goto Unlock
:Lock
ren "E:\Stash" Inconspicuous.{ed50fc29-b964-48a9-afb3-15ebb9b97f36}
cacls Inconspicuous.{ed50fc29-b964-48a9-afb3-15ebb9b97f36} /e /c /d %username%
goto :End
@akaleeroy
akaleeroy / loadfonts.cmd
Last active December 29, 2015 00:59
LoadFonts SendTo Command - Load missing fonts required by an Illustrator file from the folder where you keep your font library.
@echo off
setLocal EnableDelayedExpansion
cd /d %~dp1
set init=init-%RANDOM%.tmp
set clean=clean-%RANDOM%.tmp
set fp=%~n1.fonts.txt
:: EDIT THIS LINE with the location of your own font collection folder
set fontdir="F:\Fonts"
@akaleeroy
akaleeroy / prettylink.js
Last active August 29, 2015 13:57
Pretty Link Bookmarklet