$ bbn-furikaeri
2020-05-20 ABC067 を解いた等
https://blog.bouzuya.net/2020/05/20/
2019-05-21 健康診断など
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
export function f() {} |
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 MaybeTExample | |
( main | |
) where | |
import Control.Monad.Maybe.Trans (MaybeT(..), lift, runMaybeT) | |
import Data.Maybe (Maybe(..)) | |
import Effect (Effect) | |
import Effect.Class.Console (log) | |
import Prelude (Unit, discard, map, pure, unit, void) |
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
#include "action_layer.h" | |
#include "keymap_jp.h" | |
#define _____ KC_TRNS | |
#define _NOOP KC_NO | |
#define XXXXX KC_NO | |
#define _MO1_ MO(L1) | |
#define _MO4_ MO(L4) | |
#define _MO5_ MO(L5) | |
#define _TO0_ TO(L0) |
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
// ErgoDox EZ keymap v23 | |
// #define IGNORE_MOD_TAP_INTERRUPT | |
#include "ergodox.h" | |
#include "action_layer.h" | |
#include "keymap_jp.h" | |
#define L0 0 | |
#define L1 1 | |
#define L2 2 | |
#define L3 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
// `l-value` is inspired by [email protected] | |
// https://github.com/Raynos/observ/tree/v0.2.0 | |
export type Listener<T> = (newValue: T) => any; | |
export type Unlisten = () => void; | |
export interface LValue<T> { | |
get(): T; | |
listen(listener: Listener<T>): Unlisten; | |
set(newValue: T): void; |
NewerOlder