Skip to content

Instantly share code, notes, and snippets.

View BlessYAHU's full-sized avatar
💻

A'braham Barakhyahu BlessYAHU

💻
View GitHub Profile
@kamaslau
kamaslau / index.js
Last active March 31, 2022 00:14
Koa.js MVP
/**
* Koajs Official Bootstrap
*
* https://koajs.com/#application
*/
const Koa = require('koa')
const app = new Koa()
// logger
app.use(async (ctx, next) => {
@alaindimabuyo
alaindimabuyo / React jobs
Created April 16, 2021 07:56
React remote jobs
= https://www.onlinejobs.ph/jobseekers/jobsearch/subcategory/react
= https://talent.hubstaff.com/search/jobs?search%5Bkeywords%5D=&page=1&search%5Btype%5D=&search%5Blast_slider%5D=&search%5Bskill_ids%5D%5B%5D=88&search%5Bnewer_than%5D=&search%5Bnewer_than%5D=&search%5Bpayrate_start%5D=1&search%5Bpayrate_end%5D=100&search%5Bpayrate_null%5D=0&search%5Bpayrate_null%5D=1&search%5Bbudget_start%5D=1&search%5Bbudget_end%5D=100000&search%5Bbudget_null%5D=0&search%5Bbudget_null%5D=1&search%5Bexperience_level%5D=-1&search%5Bcountries%5D%5B%5D=&search%5Blanguages%5D%5B%5D=
= https://www.upwork.com/ab/account-security/login?redir=%2Fab%2Ffind-work%2F4675074
= https://www.guru.com/login.aspx?ReturnUrl=/work/?q=L2Qvam9icy9jL3Byb2dyYW1taW5nLWRldmVsb3BtZW50L3NraWxsL3JlYWN0Lw%3D%3D
= https://www.peopleperhour.com/freelance-react-jobs
= https://www.outsourcely.com/login?action=%2Fjobseekers
= https://angel.co/jobs
= https://www.indeed.com/q-react-l-REMOTE-jobs.html
= https://jsremotely.com/
= https://www.ziprecruiter.com/Jobs/
@necolas
necolas / Hoverable.js
Last active January 1, 2024 17:32
Hover styles in React Native for Web
import createHoverMonitor from './createHoverMonitor';
import { element, func, oneOfType } from 'prop-types';
import React, { Component } from 'react';
const hover = createHoverMonitor();
/**
* Use:
* <Hoverable>
* {(hover) => <View style={hover && styles.hovered} />}
@fasiha
fasiha / README.md
Last active January 25, 2022 00:27
Multilevel + shoe: leveldb/levelup/leveldown, websockets, browser fun

Quick howto for multilevel and shoe for accessing a leveldb on the server in the browser over the wire

Setup

In a new directory, run

$ yarn init -y
$ yarn add leveldown levelup multilevel browserify express shoe

(I use yarn here instead of npm, but these should be readily adaptable.)

@jethrolarson
jethrolarson / reactiveLibraries.md
Last active March 26, 2022 01:14
Reactive Stream Library Comparison

Flyd

https://github.com/paldepind/flyd
License: MIT
Size: 22.4 KB (3.4 KB gzip)
Functions: 16
Project Life: Good
Stars: 1129
Code Quality: Good Functional/Procedural
Comments: JSDoc
Quality Automation: Extensive unit tests, CI

@leonardo-m
leonardo-m / gist:6e9315a57fe9caa893472c2935e9d589
Last active January 4, 2024 12:22
A selection of 101 LINQ Samples converted to Rust
// Port of the C# 101 LINQ Samples rewritten into Apple's Swift 3.
#![feature(ordering_chaining, step_by)]
fn main() {
// linq5: Where - Indexed
/*
//c#
public void Linq5()
{
@JamieMason
JamieMason / es6-compose.md
Last active May 17, 2022 17:38
ES6 JavaScript compose function

ES6 JavaScript Compose Function

Definition

const compose = (...fns) =>
  fns.reduceRight((prevFn, nextFn) =>
    (...args) => nextFn(prevFn(...args)),
    value => value
 );
@0x6a68
0x6a68 / vdom-stream.js
Created March 24, 2016 18:35 — forked from twfarland/vdom-stream.js
redux style reducer with vdom, baconjs and immutablejs
import Immutable from 'immutable'
import Bacon from 'baconjs'
import h from 'virtual-dom/h'
import diff from 'virtual-dom/diff'
import patch from 'virtual-dom/patch'
import createElement from 'virtual-dom/create-element'
const INCREMENT = 'INCREMENT'
const DECREMENT = 'DECREMENT'
@littlehaker
littlehaker / index.js
Created September 8, 2015 13:52
FRP like Redux
var React = require('react');
var h = require('react-hyperscript');
var Bacon = require('baconjs');
// action
var action$ = new Bacon.Bus();
function filterAction(action_type) {
return function(action) {
return action.type === action_type;
};
@chroth7
chroth7 / reactD3rescources.md
Last active December 6, 2017 05:37
React/D3 Resources

React <-> D3 Resources

Thanks for all the stars.

Due to unexpected demand, I move this to a proper github repo, see here: https://github.com/chroth7/reactD3resources

I would very much like to get your PRs there, thank you!