Skip to content

Instantly share code, notes, and snippets.

View soyelmnd's full-sized avatar
👋

Minh Nguyen soyelmnd

👋
View GitHub Profile
@leonardofed
leonardofed / README.md
Last active October 11, 2025 06:04
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@ognus
ognus / gitpr
Created February 22, 2016 10:49
Bash script for auto pushing current git branch and creating a Github PR with JIRA link in description
#!/bin/bash
#
# Usage: gitpr "My PR title"
#
# If branch name follows this convention: anything_JIRAPROJECT-TASKID then link to JIRA
# task is added in PR's description.
#
# This script requires https://hub.github.com/ to be installed.
#
@staltz
staltz / introrx.md
Last active October 14, 2025 19:39
The introduction to Reactive Programming you've been missing
@OrganicPanda
OrganicPanda / hacky-scrollbar-resize-listener.js
Last active April 7, 2024 10:53
A sham that will throw a window resize event even when scrollbars are added/removed (this is not something the standard window resize event does). Tested in IE9+, Chrome & Firefox latest.
// Demo: http://jsfiddle.net/pFaSx/
// Create an invisible iframe
var iframe = document.createElement('iframe');
iframe.id = "hacky-scrollbar-resize-listener";
iframe.style.cssText = 'height: 0; background-color: transparent; margin: 0; padding: 0; overflow: hidden; border-width: 0; position: absolute; width: 100%;';
// Register our event when the iframe loads
iframe.onload = function() {
// The trick here is that because this iframe has 100% width