I hereby claim:
- I am jneen on github.
- I am jneen (https://keybase.io/jneen) on keybase.
- I have a public key whose fingerprint is 93A8 3342 F6C1 9C88 3518 784F 692D EAAD 282B CEC2
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import pyglet | |
class LoopingGroup(pyglet.media.SourceGroup): | |
def _advance(self): | |
if not self._sources: return | |
print('loop seek!') | |
source = self._sources[0] | |
super()._advance() |
I hereby claim:
To claim this, I am signing this object:
Instructions to reproduce:
./run-nvim.sh
./run-nvr.sh
init.vim
buffer with :q
or ^W c
or similar.On my system, this results in the following output:
[0: jneen@lavender nvim-repro ] -> *main $
#!/usr/bin/env bash | |
# .als file | |
FILE="$1"; shift | |
SCRIPT="$(cat <<RUBY | |
\$_.scan(%r[<CurrentStart Value="(.*?)"/><Name Value="(.*?)"/>]) do |start, name| | |
frame = (start.to_f * 8).round | |
seconds, frame = frame.divmod(30) | |
minutes, seconds = seconds.divmod(60) |
! jneen's rules for facebook | |
www.facebook.com##span:has-text(/^Suggested for you$/):upward(22) | |
www.facebook.com##span:has-text(/^Follow$/):upward(26) | |
www.facebook.com##span:has-text(/^Join$/):upward(26) | |
www.facebook.com##a[href^="https://l.facebook.com"][rel="nofollow noreferrer"]:upward(3) |
module OmniAuth | |
module Strategies | |
class ItchIO | |
include OmniAuth::Strategy | |
option :name, 'itch_io' | |
option :client_options, | |
site: 'https://itch.io/', | |
authorize_url: 'https://itch.io/user/oauth' |
require 'pry' | |
require 'chunky_png' | |
require 'zlib' | |
PLAYERSPRITE_DIR = File.expand_path('../resources/patches/player_sprite', __dir__) | |
class AseParser | |
def self.parse_file(fname) | |
File.open(fname, 'rb', encoding: 'ASCII-8BIT') do |file| |