Skip to content

Instantly share code, notes, and snippets.

View loktar00's full-sized avatar
🏠
Working from home

Jason loktar00

🏠
Working from home
View GitHub Profile
@loktar00
loktar00 / qwen3.7max.html
Created May 30, 2026 01:38
Virtual boy pages
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>VIRTUAL BOY — The Red Archive / A Retro Hardware Microsite</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Share+Tech+Mono&family=VT323&family=Orbitron:wght@500;700;900&display=swap" rel="stylesheet">
<style>

You are Herme's meta-improvement engine. Your job is to find one actionable way to improve our workflows, skills, or daily operations.

INSTRUCTIONS:

  1. Use session_search to look at recent sessions (last 5-10) and identify patterns — recurring errors, friction points, repeated manual steps, or missed opportunities.

  2. Use skills_list to review all available skills and check for any that are outdated, missing steps, or could be improved based on what you found in recent sessions.

  3. If you find a concrete improvement, present it clearly:

  • What the issue is
# llama.cpp
"GLM-5.1-Q2":
cmd: |
${latest-llama}
--model ${models_dir}/glm-5.1/GLM-5.1-UD-Q2_K_XL-00001-of-00007.gguf
--rpc 192.168.1.179:50052,192.168.1.179:50053
--fit on
# --n-gpu-layers auto
# -np 1 \
# --no-mmap \
@loktar00
loktar00 / movies.js
Created October 5, 2023 15:58
Interview question
// Return an array of movies whos runtime is at least 100 minutes and is rated pg or pg 13
// In the new array we are only concerned with the title, runtime, and rating.
const data = {
"movies": [{
"id": "771315639",
"title": "Home",
"year": 2015,
"mpaa_rating": "PG",
"runtime": 93,
@loktar00
loktar00 / headache.js
Created January 15, 2015 22:15
headache inducer
javascript:(function()%7Bvar%20els%20%3D%20document.querySelector('html')%2CkeyFrames%20%3D%20'%40-webkit-keyframes%20blurAnim%20%7B%200%25%20%7B-webkit-filter%3A%20blur(0.2px)%3B%20%7D40%25%20%7B-webkit-filter%3A%20blur(0.6px)%3B%20%7D80%25%20%7B-webkit-filter%3A%20blur(0.3px)%3B%7D100%25%20%7B-webkit-filter%3A%20blur(0px)%3B%7D%7D'%3Bdocument.styleSheets%5B0%5D.insertRule(keyFrames%2C%200)%3Bels.style.webkitAnimation%20%3D%20'blurAnim%2010s%20infinite'%7D)()
@loktar00
loktar00 / TFSCheckout.js
Created October 17, 2014 16:23
Checkout only changed files from TFS using gulp and gulp-changed.
var fs = require('fs');
// ignore missing file error
function fsOperationFailed(stream, sourceFile, err) {
if (err) {
if (err.code !== 'ENOENT') {
stream.emit('error', new gutil.PluginError('gulp-changed', err, {
fileName: sourceFile.path
}));
}
@loktar00
loktar00 / Swimming-snakes.markdown
Created January 16, 2014 01:24
A Pen by Jason Brown.

Swimming snakes

Havent done a pen in the longest time, decided to put this demo together after playing around with IK, the effect turned out pretty cool! (in my biased opinion of course)

A Pen by Jason Brown on CodePen.

License.

@loktar00
loktar00 / reoccurringtimer.js
Last active December 21, 2015 11:09
Simple reoccurring timer
var timer = function (waitTime, callBack, forever, start) {
this.lastTime = Date.now();
this.waitTime = waitTime;
this.forever = forever;
this.running = start;
this.callBack = callBack;
this.tick = function () {
if (this.running) {
if (Date.now() > this.lastTime + this.waitTime) {
@loktar00
loktar00 / gist:5427189
Last active December 16, 2015 11:28
What is the best way to do this?
/*
*
* What Im trying to get to work
*
*/
function playersGameName(options){
// stuff in here to init whatevs.
}
@loktar00
loktar00 / gist:5404432
Created April 17, 2013 13:45
Console decorations
console.log('%cTHIS IS SO MUCH FUN', 'color:red; background:yellow; font-size: 2em;')