Skip to content

Instantly share code, notes, and snippets.

View Raincal's full-sized avatar
💦

Raincal

💦
View GitHub Profile
@Raincal
Raincal / PuerNya_sing-box_fakeip_client_config.jsonc
Created November 23, 2023 11:36 — forked from CHIZI-0618/PuerNya_sing-box_fakeip_client_config.jsonc
sing-box 带有 Proxy Providers 的客户端配置示例
{
"log": {
"level": "info",
"output": "sing-box.log",
"timestamp": true
},
"dns": {
"servers": [
{
"tag": "cloudflare",
@Raincal
Raincal / graphql.ts
Created July 9, 2019 10:19 — forked from mfellner/graphql.ts
Using Apollo Server in Next.js 9 with API route in pages/api/graphql.ts
import { ApolloServer, gql } from 'apollo-server-micro';
const typeDefs = gql`
type Query {
sayHello: String
}
`;
const resolvers = {
Query: {
@Raincal
Raincal / rxjs_operators_by_example.md
Created November 8, 2017 08:03 — forked from btroncone/rxjs_operators_by_example.md
RxJS 5 Operators By Example
@Raincal
Raincal / learning-code.md
Created November 3, 2016 09:45 — forked from kentcdodds/README.md
JavaScript Program Slicing with SliceJS

Learning Code

One of the original goals to this project is to help developers learn code. Take this module for example:

export default clone

function clone(item) {
  if (!item) {
    return item
@Raincal
Raincal / ngrxintro.md
Created October 11, 2016 11:55 — forked from btroncone/ngrxintro.md
A Comprehensive Introduction to @ngrx/store - Companion to Egghead.io Series

#Comprehensive Introduction to @ngrx/store By: @BTroncone

Also check out my lesson @ngrx/store in 10 minutes on egghead.io!

Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!

Table of Contents

@Raincal
Raincal / RxJS 5 Operators By Example.md
Created September 28, 2016 03:19 — forked from lyyourc/RxJS 5 Operators By Example.md
「译」RxJS 5 Operators By Example