This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Jekyll | |
class YouTubeEmbed < Liquid::Tag | |
def initialize(tag_name, input, tokens) | |
super | |
@input = input.strip | |
end | |
def render(context) | |
parts = @input.split(' ') | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8360-0101-0044-4084-1936 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# file: _plugins/cdn_img.rb | |
module Jekyll | |
class CDNImageTransformer < Generator | |
def generate(site) | |
@site = site | |
@cdn_url = "https://cdn.example.com" | |
@site.pages.each { |page| process(page) } | |
@site.posts.docs.each { |post| process(post) } | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MaBoShi DSlite mod idea | |
$fn = 50; | |
module roundedcube_simple(size = [1, 1, 1], center = false, radius = 0.5) { | |
size = (size[0] == undef) ? [size, size, size] : size; | |
translate = (center == false) ? | |
[radius, radius, radius] : | |
[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"expected_update_period_in_days": "1", | |
"url": [ | |
"https://auctions.yahoo.co.jp/search/search?p=花札&en=Hanafuda&exflg=1&b=1&n=100&s1=new&o1=d&mode=1", | |
], | |
"type": "html", | |
"mode": "on_change", | |
"extract": { | |
"url": { | |
"css": "a.Product__titleLink", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "NDS MaBoShi", | |
"identifier": "com.gingerbeardman.delta.ds.maboshi", | |
"gameTypeIdentifier": "com.rileytestut.delta.game.ds", | |
"debug": false, | |
"representations": { | |
"iphone": { | |
"edgeToEdge": { | |
"portrait": { | |
"extendedEdges": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: .FinderHack | |
# flags: 0x6400 (ENABLE_CONTROL, NEED_TIME, NEED_LOCK) | |
# delay: 1 | |
# event mask: 0x0000 | |
# menu id: 0 | |
# open label: 0022 | |
# prime label: 00A0 | |
# control label: 0040 | |
# status label: 00A0 | |
# close label: 01D6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 things I have learned\being a creative entrepreneur\\\\Michael Flarup\2024 | |
system | |
Do what you think is fun | |
You become what you work on | |
Creative work\doesn't follow a straight line\from not-good to good | |
Be opinionated\about your work | |
Nothing is perfect | |
Find inspiration\in things you love | |
Love things fiercely | |
Impress your inner child\(or your actual children) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Helpers | |
function app_as_json { | |
/usr/bin/osascript -l JavaScript -e 'function run(argv) { return JSON.stringify({ | |
title: $(argv[0]).stringByDeletingPathExtension.lastPathComponent.js, | |
subtitle: argv[0], | |
type: "file", | |
icon: { type: "fileicon", path: argv[0] }, | |
arg: argv[0] | |
})}' "${1}" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( window.location.pathname.startsWith('/html/index.html') ) { | |
document.getElementById("login_password").value = "YourPasswordGoesHere!!1!" | |
setTimeout(function(){ document.getElementById("login_btn").click(); }, 300); | |
} |