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
// Cargo.toml | |
// | |
// [dependencies] | |
// macro_rules_attribute = "0.1" | |
#[macro_use] | |
extern crate macro_rules_attribute; | |
// How to decorate a function |
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
#!/bin/bash | |
HEADERS='Accept: application/ld+json; profile="https://www.w3.org/ns/activitystreams"' | |
curl -H "$HEADERS" "https://mastodon.social/users/Gargron/statuses/109543381373981313/replies?only_other_accounts=true&page=true" | jq |
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
<?php | |
// Show menu item for reusable blocks | |
add_action('admin_menu', function () { | |
add_menu_page(_x('Reusable blocks', 'post type general name'), _x('Reusable blocks', 'post type general name'), 'edit_posts', 'edit.php?post_type=wp_block', '', 'dashicons-editor-table', 22); | |
}); | |
add_action("should_load_remote_block_patterns", function () { | |
// I chose `should_load_remote_block_patterns` action because it's triggered |
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
const worker = new Worker("https://cdn.jsdelivr.net/npm/[email protected]/dist/worker.sql-wasm.js"); | |
let rpcid = 0; | |
async function query(sql: string, params: any, action = "exec") { | |
const id = rpcid++; | |
return new Promise<any>((res, rej) => { | |
const listener = (e: MessageEvent<any>) => { | |
if (e.data && e.data.id === id) { | |
worker.removeEventListener("message", listener); | |
res(e.data); | |
} |
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
<?php | |
ini_set('display_errors', 1); | |
error_reporting(E_ALL); | |
use Paytrail\SDK\Client; | |
use Paytrail\SDK\Exception\HmacException; | |
use Paytrail\SDK\Exception\ValidationException; | |
use Paytrail\SDK\Model\Address; | |
use Paytrail\SDK\Model\CallbackUrl; | |
use Paytrail\SDK\Model\Customer; |
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
using Microsoft.Data.Sqlite; | |
using Microsoft.EntityFrameworkCore; | |
using SQLitePCL; | |
static public class Thing { | |
public static void ListenSqlite(DbContext context) | |
{ | |
context.Database.OpenConnection(); | |
var c = context.Database.GetDbConnection() as SqliteConnection; | |
SQLitePCL.raw.sqlite3_update_hook(c.Handle, test_func, new object()); |
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
<?php | |
// Disable article images that come from the content e.g. first <img /> tag | |
add_filter('the_seo_framework_image_generation_params', function( $params, $args, $context ) { | |
if (isset( $params['cbs']['content'])) { | |
unset($params["cbs"]["content"]); | |
} | |
return $params; | |
}, 11, 3); |
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
// steps(10) == [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0] == length = 11 | |
const steps = (r) => Array(r + 1).fill().map((_, i) => i / r); // with fill | |
const steps = (r) => ([...Array(r + 1)]).map((_, i) => i / r); // with splat | |
const steps = (r) => Array.apply(null, Array(r + 1)).map((_, i) => i / r); // If no splat | |
// Benchmark notes: third implementation fails with maximum stack size, first one is the fastest (with fill) |
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
/** | |
* Get offset relative to selector (or window) | |
* | |
* @param {HTMLElement} el | |
* @param {string|undefined} selector if not give, assumes root most (window) | |
*/ | |
function offsetRelativeTo(el, selector) { | |
let offsetTop = el.offsetTop; | |
let offsetLeft = el.offsetLeft; | |
let offsetParent = el.offsetParent; |
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
// LICENSE MIT, Jari Pennanen | |
// For all purposes, I also consider this public domain work. | |
import { untrack } from "solid-js"; | |
import { createStore } from "solid-js/store"; | |
/** | |
* Solid JS | |
* | |
* @returns Map like observable |