Skip to content

Instantly share code, notes, and snippets.

View ArfatSalman's full-sized avatar
💭
Convincer of machines!

Arfat Salman ArfatSalman

💭
Convincer of machines!
View GitHub Profile
@cellularmitosis
cellularmitosis / README.md
Last active April 26, 2024 20:19
Tech Links
@AliceWonderland
AliceWonderland / React-Redux-Resources.md
Last active March 1, 2024 02:48
A list of tutorials for beginner practice projects in React and Redux for those who like to learn by coding.

Hands-On Tutorials for React and Redux

Beginner practice projects in React and Redux for those who like to learn by coding.

There's so much out there and many ways to start out. This is a start, from here your path can branch out how you prefer.

All resources and references are free and/or open source.

React

First projects using Facebook's Create-React-App, a barebones React app. (Best for learning only). Avoid having to research, install, and configure a setup. Jump to being able to try it to get a better sense of it.

@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active May 23, 2024 05:48
crack activate Office on mac with license file
@staltz
staltz / introrx.md
Last active May 23, 2024 20:07
The introduction to Reactive Programming you've been missing
@nickloewen
nickloewen / bret_victor-reading_list.md
Last active March 7, 2024 18:14
Bret Victor’s Reading List

This is a plain-text version of Bret Victor’s reading list. It was requested by hf on Hacker News.


Highly recommended things!

This is my five-star list. These are my favorite things in all the world.

A few of these works have had an extraordinary effect on my life or way of thinking. They get a sixth star. ★

@vu3rdd
vu3rdd / cs173-practice.rkt
Created September 2, 2012 17:41
map, filter, flatten in racket
#lang racket
(require rackunit)
;; map :: (a -> b -> c) -> [a] -> [b] -> [c]
(define (map f . xs)
(match xs
[(list (list) ...) (list)]
[(list (list x xs ...) ...) (cons (apply f x) (apply map f xs))]))
(check-equal? (map sqr '(1 2 3)) '(1 4 9))
@domenic
domenic / promise-retryer.js
Last active September 16, 2023 02:43
Generalized promise retryer
"use strict";
// `f` is assumed to sporadically fail with `TemporaryNetworkError` instances.
// If one of those happens, we want to retry until it doesn't.
// If `f` fails with something else, then we should re-throw: we don't know how to handle that, and it's a
// sign something went wrong. Since `f` is a good promise-returning function, it only ever fulfills or rejects;
// it has no synchronous behavior (e.g. throwing).
function dontGiveUp(f) {
return f().then(
undefined, // pass through success
//
// Regular Expression for URL validation
//
// Author: Diego Perini
// Created: 2010/12/05
// Updated: 2018/09/12
// License: MIT
//
// Copyright (c) 2010-2018 Diego Perini (http://www.iport.it)
//