Skip to content

Instantly share code, notes, and snippets.

View jeffreymeng's full-sized avatar

Jeffrey Meng jeffreymeng

View GitHub Profile
# Wordlist and getRandomWord functions Copyright 2016 Jeffrey Meng
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@jeffreymeng
jeffreymeng / libaryTemplate.js
Last active August 14, 2016 00:20
A Template for a javascript library, with some utilities included
/* Copyright (c) 2016 Jeffrey Meng | MIT License
* Partially taken from http://checkman.io/blog/creating-a-javascript-library/ and/or youmightnotneedjquery.com
*/
(function(window) {
'use strict';
function define_Library() {
//UTILS
var throwError = function(txt, type) {
//throws an error
@jeffreymeng
jeffreymeng / Jquery-Replacement-Utility-Code-main-code.js
Last active October 28, 2018 20:40
Jquery Replacement Utility Code
//this is just the base code. To see a usage example, see Jquery-Replacement-Utility-Code-example-code.js
var getElement = function(selector) { // or var $ = function(selector) {
var wrapper = document.querySelector(selector);
// get Dom wrapper.
//function to add custom functions to the wrapper.
this.addFunction = function(name, code) {
// if code is undefined, assume name is an object with name:function pairs
//enumerate the object name
@jeffreymeng
jeffreymeng / auto image in new tab.md
Last active August 26, 2017 01:25
Works on any html file with images(word file saves as html, raw html file, etc.)

Usage: Works on any html file. When you have any html file with images(using src tag), and a user clicks on an image element, that image(the src) will automatically open in a new tab or window(depending on user/browser prefrence)

All you have to do is include the quick-use.html file's raw code(the script element and its contents) and add it to the end of your html(right before the closing body tab, or with all your other scripts. AFTER the images).

#!/bin/bash
BASE_PATH="UNKNOWN - edit this by changing the variable in the gitsync file."
if [ "$#" == 0 ]
then
echo "Gitsync: Invalid Usage. See gitsync --help for more information"
elif [ "$1" == "--help" ] || [ "$1" == "--usage" ]
#include "stdafx.h"
// http://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2176
#include "UVa11235.h"
#include <iostream>
#include <list>
#include <map>
#include <algorithm>
package blackjack;
class Card {
public int number;//1 is ace, 2 is two, 13 is king
public int suit;//1 is club, 2 is diamond, 3 is heart, 4 is spade
public Card(int number, int suit) {//make a new card
this.number = number;
package BlackJackCopy;
import java.awt.*;
import javax.swing.*;
public class GUI extends JPanel{
final int width = 800;
final int height = 600;
#!/bin/bash
BASE_PATH="~/Documents/code/"#change this to suit your needs
if [ "$#" == 0 ]
then
echo "Gitsync: Invalid Usage. See gitsync --help for more information"
elif [ "$1" == "--help" ] || [ "$1" == "--usage" ]
@jeffreymeng
jeffreymeng / useAuthState-introduction.md
Last active September 4, 2023 15:27
Gatsby React Firebase Authentication Hook

As opposed to useAuthState in react-firebase-hooks (which doesn't work with gatsby builds), this is designed to work with gatsby-plugin-firebase.

Requires React and firebase

Usage example:

import firebase from "gatsby-plugin-firebase"
import useAuthState from ...