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 / 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;
@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
#!/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 / README.md
Last active June 3, 2023 21:53
Canvas Quiz Scraper

This script can scrape the quiz result view of canvas, capturing questions, answers, and images. It automatically downloads a JSON file with the scraped data, and downloads each image individually. The scraped data will track your selected answers (independent of whether they are correct). This script is designed to be run in the chrome dev console. You will need to first load jquery if it is not in scope, which can be accomplished by going to the jquery website and copy-pasting the jquery.min.js file into the console.

Due to the nature of web scraping, you may need to adapt this code to fit the specific page semantics you're working with.