Skip to content

Instantly share code, notes, and snippets.

View iDoMeteor's full-sized avatar
🇺🇸
Live free, code hard, be prepared.

@iDoMeteor iDoMeteor

🇺🇸
Live free, code hard, be prepared.
View GitHub Profile
@leonardofed
leonardofed / README.md
Last active May 8, 2025 09:49
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.


@burakcan
burakcan / forward_backward.js
Created June 26, 2016 17:17
Basic F# forward / backward operators in JS
/* jshint esnext: true */
const FORWARD = '|>';
const BACKWARD = '<|';
function _(...args) {
return function(value) {
return args.reduce((val, curr, index) => {
switch(curr) {
case FORWARD:
@hassy
hassy / parse_aws.md
Last active January 17, 2024 04:11
Deploying Parse Server on AWS (WIP)

Deploying Parse Server on AWS

Note: this is a work-in-progress and will be updated with more information over the next few days.

Intro

This guide will walk you through deploying your own instance of the open-source Parse Server. This would be a good starting point for testing your existing application to see if the functionality provided by the server is enough for your application, and to potentially plan your migration off the Parse Platform.

This guide will walk you through using Elastic Beanstalk (EB), which is an AWS service similar to Heroku. Why use EB rather than Heroku? Elastic Beanstalk does not lock you into Heroku-specific ways of doing things, is likely cheaper to run your backend on than Heroku, and it integrates with other services that AWS offer (and they offer almost everything one needs to run an application these days).

@yurivictor
yurivictor / scrape.js
Created June 1, 2015 21:55
Example scraper in node (scraping rand paul's site for issues)
var cheerio = require('cheerio');
var request = require('request');
var fs = require('fs');
var s,
Scrape = {
settings: {
// Object, the json to be output
json: {},
// String, the url to scrape
@olizilla
olizilla / meteor-dump.sh
Last active May 29, 2016 02:18
Dump a mongo db from a live meteor app to a local dump dir.
#!/bin/bash
# __
# _____ ____ _/ |_ ____ ____ _______
# / \ _/ __ \ \ __\_/ __ \ / _ \ \_ __ \
# | Y Y \\ ___/ | | \ ___/ ( <_> ) | | \/
# |__|_| / \___ > |__| \___ > \____/ |__|
# \/ \/ \/
#
# .___
# __| _/ __ __ _____ ______
@pythoneer
pythoneer / gist:4518138
Last active March 13, 2016 23:59
meteor js with binary js
if (Meteor.isClient) {
Meteor.startup(function () {
loadbinaryjs();
var client = new BinaryClient('ws://localhost:9000');
client.on('stream', function(stream, meta){
var parts = [];
stream.on('data', function(data){