Skip to content

Instantly share code, notes, and snippets.

View wendygwo's full-sized avatar

Wendy Gwo wendygwo

View GitHub Profile
@courte
courte / 2019_oss_resources.md
Last active August 18, 2019 21:51
Write/Speak/Code 2019 Open Source Projects

Featured Projects

dev.to

Ruby, Rails, Javascript

GitHub | labels: wsc2019, good first issue | Website

dev.to is where programmers share ideas and help each other grow. It is an online community for sharing and discovering great ideas, having debates, and making friends.

New Sanctuary Asylum

@gaearon
gaearon / connect.js
Last active April 24, 2025 04:39
connect.js explained
// connect() is a function that injects Redux-related props into your component.
// You can inject data and callbacks that change that data by dispatching actions.
function connect(mapStateToProps, mapDispatchToProps) {
// It lets us inject component as the last step so people can use it as a decorator.
// Generally you don't need to worry about it.
return function (WrappedComponent) {
// It returns a component
return class extends React.Component {
render() {
return (
@thegitfather
thegitfather / vanilla-js-cheatsheet.md
Last active April 28, 2025 16:22
Vanilla JavaScript Quick Reference / Cheatsheet
@stormchasing
stormchasing / Auto Check-In to Southwest Flights.user.js
Last active March 9, 2025 07:27
Auto Check-In to Southwest Flights.user.js
// ==UserScript==
// @name Auto Check-In to Southwest Flights
// @namespace http://www.ryanizzo.com/southwest-auto-check-in/
// @version 1.8
// @author Nicholas Buroojy (http://userscripts.org/users/83813)
// @contributor Ryan Izzo (http://www.ryanizzo.com)
// @contributor JR Hehnly (http://www.okstorms.com @stormchasing)
// @contributor Trevor McClellan (github.com/trevormcclellan)
// @description Automatically check in to Southwest Airline flights at the appropriate time.
// @include https://www.southwest.com/air/check-in/index.html*
@staltz
staltz / introrx.md
Last active April 29, 2025 08:33
The introduction to Reactive Programming you've been missing