I hereby claim:
- I am NetOpWibby on github.
- I am netopwibby (https://keybase.io/netopwibby) on keybase.
- I have a public key whose fingerprint is 4B05 7A94 358E FFA9 7AA4 7E8E FF55 C87C EE32 D395
To claim this, I am signing this object:
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
// munged from https://github.com/simontime/Resead | |
namespace sead | |
{ | |
class Random | |
{ |
module Entry::TrackerBlocking | |
extend ActiveSupport::Concern | |
included do | |
has_many :blocked_trackers | |
end | |
email_service_blockers = { | |
"ActiveCampaign" => /lt\.php(.*)?l\=open/, | |
"AWeber" => "openrate.aweber.com", |
/// N A T I V E | |
import fs from "fs"; | |
import https from "https"; | |
import { join } from "path"; | |
/// U T I L |
/* | |
patch-svelte-compiler.js | |
replace push with reassign | |
this is a fork of the excellent code by milahu (https://github.com/milahu) | |
https://github.com/sveltejs/svelte/issues/4694#issuecomment-637434624 | |
all i did was clean the code to my liking, consistency and whatnot |
I hereby claim:
To claim this, I am signing this object:
I am attesting that this GitHub handle NetOpWibby is linked to the Tezos account tz1UVwR1MhqfytRbypB1jeFbFKTLu4LSFE9A for tzprofiles | |
sig:edsigtz7MRMAji785C6515w3qjhhVRLxY22vNHLPkshmeM8KrFwjZEibMjoBWGDU9bnryDUq1VJ1ZWVJaE5URC51AkaZ8ZkUjCZ |
The correct way to concat multiple video files from m3u8 playlist is
ffmpeg -protocol_whitelist "file,http,https,tcp,tls" -i "index.m3u8" -codec copy output.mp4
the m3u8 playlist can be on web or locally in directory it contains list of file paths relative to the playlist
****************************************** | |
*SEGA Megadrive comunication program * | |
*(c) 1991 Synchron Assembly * | |
*https://www.tn-data.se * | |
****************************************** | |
*f1=trace, f2=skip instruction f4=go | |
*d xxxx set dissasm window, d pc | |
*m xxxx set memory window, m pc | |
*j xxxx set sega PC |
// USAGE: hsd --log-console=false --plugins=/path/to/this/file/expiring-plug.js | |
'use strict'; | |
const { | |
Namestate, | |
Network | |
} = require('hsd'); | |
const plugin = exports; |
import * as React from "react"; | |
import { useMousePosition } from "~/hooks/useMousePosition"; | |
/** Component to cover the area between the mouse cursor and the sub-menu, to allow moving cursor to lower parts of sub-menu without the sub-menu disappearing. */ | |
export function MouseSafeArea(props: { parentRef: React.RefObject<HTMLDivElement> }) { | |
const { x = 0, y = 0, height: h = 0, width: w = 0 } = props.parentRef.current?.getBoundingClientRect() || {}; | |
const [mouseX, mouseY] = useMousePosition(); | |
const positions = { x, y, h, w, mouseX, mouseY }; | |
return ( | |
<div |