Skip to content

Instantly share code, notes, and snippets.

@Schniz
Schniz / TaskEither_record.ts
Last active August 8, 2019 06:25
A record combinator for fp-ts TaskEither
import * as te from 'fp-ts/lib/TaskEither';
import * as arr from 'fp-ts/lib/Array';
import { pipe } from 'fp-ts/lib/pipeable';
type TaskEither<A, B> = te.TaskEither<A, B>;
type TERight<T> = T extends TaskEither<any, infer R> ? R : never;
/**
* Transforms an object of `TaskEither`s into a TaskEither of the resolved objects.
@hatobus
hatobus / remote_work.md
Last active March 30, 2019 15:15
6月中旬くらいまで授業が入っていないのでリモートワークさせてください!!!

TL;DR

大学四年になって授業が全くない && 技術に触れたい && 単純にお金がない ということで私をインターンとして雇っていただける企業様を募集します。 先駆者様

どうしてやりたいのか

会津大学の学部四年です。大学は4学期制なのですが、1学期に授業が入っていないのでその期間(4月~6月中旬)にインターンとして働きたいからです。

家賃などをすべて自分で賄って自転車操業しているのでお金がほしいというのも切実な願いになります。

自己紹介

@justinwoo
justinwoo / purescript-reactive-programming-notes.md
Last active March 30, 2021 14:01
Purescript Reactive Programming options

Here are some of the examples of Reactive Programming libraries I've found in Purescript and what I've thought about them so far:

I've never used a library with truly continuous Behaviors, so this was really neat to try out for me. Really nice to use and comes with utilities for working with browser events already, and gives you good Event modules for picking your sampling options as necessary.

I will probably use this library for all of my future uses.

@ky0615
ky0615 / wpa_supplicant.conf
Created July 7, 2017 06:11
Linuxから電大wifiとeduroamを接続するメモ(SCRoot2ca.crt必要かも)
ctrl_interface=/run/wpa_supplicant
update_config=1
network={
ssid="TDU_MRCL_WLAN_DOT1X"
scan_ssid=1
key_mgmt=WPA-EAP
eap=PEAP
identity="id"
password="password"
@jimbocoder
jimbocoder / 14.04-bloat-packages
Created August 10, 2014 20:30
Ubuntu 14.04 Desktop bloat removal package list
# Purge the following packages
account-plugin-aim
account-plugin-facebook
account-plugin-flickr
account-plugin-jabber
account-plugin-salut
account-plugin-twitter
account-plugin-windows-live
account-plugin-yahoo
@mikaelhg
mikaelhg / snippet.java
Created April 30, 2014 16:02
Java 8 lambda streams come in handy when parsing HTML with Jsoup and Lombok @builders
Document doc = Jsoup.parse(...);
doc.select("form#login").stream()
.map(e -> e.attr("action"))
.map(action -> find(action, LINK_ID_PATTERN).group(1))
.filter(Objects::nonNull)
.findFirst()
.ifPresent(builder::id);
content.select("div#datePublished").stream()
@rxaviers
rxaviers / gist:7360908
Last active May 7, 2024 16:00
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@snuggs
snuggs / .tmux.conf
Last active February 7, 2023 13:51
IDE & TMUX Configuration
############################################################################
# _
# | |_ _ __ ___ _ ___ __
# | __| '_ ` _ \| | | \ \/ /
# | |_| | | | | | |_| |> <
# \__|_| |_| |_|\__,_/_/\_\
#
# Cheatsheets:
# https://devhints.io/tmux
# `property not found` issue: