Skip to content

Instantly share code, notes, and snippets.

@shiena
shiena / uBlacklist.txt
Last active October 20, 2021 02:37
uBlacklist.txt for programmer
*://*.366service.com/*
*://*.alwaysemmyhope.com/*
*://*.answer-id.com/*
*://*.askdev.info/*
*://*.code-examples.net/*
*://*.codeflow.site/*
*://*.coder.work/*
*://*.fixes.pub/*
*://*.gitmemory.com/*
*://*.i-harness.com/*
@tsubaki
tsubaki / ClickToEndBehaviour.cs
Last active May 12, 2021 10:41
UnityのTimel inで、クリックしたらクリップの末まで移動する
using UnityEngine;
using UnityEngine.Playables;
public class ClickToEndBehaviour : PlayableBehaviour
{
private PlayableDirector director { get; set; }
public override void OnPlayableCreate(Playable playable)
{
director = (playable.GetGraph().GetResolver() as PlayableDirector);
@nmerouze
nmerouze / main.go
Last active March 17, 2025 15:20
Example for "Build Your Own Web Framework in Go" articles
package main
import (
"database/sql"
"encoding/json"
"errors"
"fmt"
"log"
"net/http"
"time"