Skip to content

Instantly share code, notes, and snippets.

View jermspeaks's full-sized avatar
🐧

Jeremy Wong jermspeaks

🐧
View GitHub Profile
@jermspeaks
jermspeaks / InstantTemplate.tpl
Created August 8, 2014 13:58
Practice Instance I want to play around with Aria Templates
{macro main()}
<h1>Hello Instant Aria Templates</h1>
{/macro}
@jermspeaks
jermspeaks / data-science-bootcamp.md
Last active August 3, 2021 06:09
12-WEEK DATA SCIENCE BOOTCAMP

12-Week Data Science Bootcamp in NYC

Original Link

WEEKS 1 & 2 - Data Science with R: Data Analysis

R beginner logo

Week 1 Morning: Data Science with R: Data Analysis Part I

@jermspeaks
jermspeaks / HOT_nepal.md
Last active August 29, 2015 14:20
Map Notes
var paths = require('./paths');
gulp.task('lint', function() {
gulp.src(paths.app.concat(paths.test))
.pipe(lint());
});
gulp.task('minify', function() {
gulp.src(paths.app)
.pipe(minify());
@jermspeaks
jermspeaks / wordpress.md
Last active July 20, 2022 23:49
Resources collected for understanding Wordpress

Wordpress & PHP Resources

Background

I started this markdown file as a place to collect information about Wordpress and PHP when I started programming a Wordpress plugin for the first time. I decided to put out everything I could find in this gist. I will update it occassionally with code examples so I can track my progress in developing Wordpress plugins (or just the one I'm working on at work).

Wordpress 101

Wordpress Environment

@jermspeaks
jermspeaks / host.js
Created July 7, 2015 23:26
hosts js file
/**
* Mark attendance activation after email send callback
*/
function toggleEventAttendance() {
$('.email-sent-btn').on('click', function(e) {
e.preventDefault();
console.log(e);
var form = $(e.target.form);
$.ajax({
type: form.attr('method'),
@jermspeaks
jermspeaks / reactjs.md
Last active August 29, 2016 17:42
My endeavors to learn react.js

Learning React JS

What is React

React is a UI Library in Javascript. Created by the folks at Facebook, it helps with creating webcomponents, but better than the webcomponents implemented in HTML5. React allows you to create composable view components, utilizing a unidirectional data flow, or one-way data flow. This differs to Angular that has a data binding components, which is two directional between controller and view.

Elements of React Elements

Note: I call elements components, but now they're really called elements. Take that in consideration when I use the word component.

@jermspeaks
jermspeaks / css_for_maintainability.md
Last active February 25, 2021 19:09
CSS for Maintainability

CSS for Maintainability

After learning the basics of CSS, you start using it on your website and realize it can get messy very quickly. Everything is on the global scope and you must keep you're variables readable. At some point, you start mixing up the names or create selectors that do the same thing as you had on a previous page.

Guidelines

Why have guidelines? Fiona Chan at Web Directions South explains the problem of Spaghetti Code in CSS in the video below.

Fiona Chan - Oh No! Spaghetti Code!

@jermspeaks
jermspeaks / README.md
Last active October 16, 2015 17:16
fun block