Skip to content

Instantly share code, notes, and snippets.

View jeremejazz's full-sized avatar

Jereme Causing jeremejazz

View GitHub Profile
javascript: (function () {
function c() {
var e = document.createElement("link");
e.setAttribute("type", "text/css");
e.setAttribute("rel", "stylesheet");
e.setAttribute("href", f);
e.setAttribute("class", l);
document.body.appendChild(e)
}
function h() {
@jeremejazz
jeremejazz / web-servers.md
Created February 27, 2017 10:27 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
/*
This is to allow unsigned certificates in cordova.
As of cordova 5 and 6, this is located in
project/platforms/android/CordovaLib/src/org/apache/cordova/engine/SystemWebViewClient.java
*/
public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
final String packageName = this.cordova.getActivity().getPackageName();
@jeremejazz
jeremejazz / JavaHolder.cs
Created October 8, 2016 13:05 — forked from Cheesebaron/JavaHolder.cs
C# to Java object wrapper
using System;
public class JavaHolder : Java.Lang.Object
{
public readonly object Instance;
public JavaHolder(object instance)
{
Instance = instance;
}
@jeremejazz
jeremejazz / Chemical.cs
Created October 8, 2016 13:04 — forked from Cheesebaron/Chemical.cs
Custom Adapter with Filter
namespace SearchViewSample
{
public class Chemical
{
public string Name { get; set; }
public int DrawableId { get; set; }
}
}
@jeremejazz
jeremejazz / Cart Class
Last active April 23, 2016 15:06
Cart.php
<?php
namespace Camp\CarRegisterBundle\Lib;
use Symfony\Component\HttpFoundation\Session\Session;
class Cart {
public function __construct() {
@jeremejazz
jeremejazz / SQL-Social-Network.sql
Created February 10, 2016 03:00
My answers to SQL exercises for db-class.org /Part 2/
/* Delete the tables if they already exist */
drop table if exists Highschooler;
drop table if exists Friend;
drop table if exists Likes;
/* Create the schema for our tables */
create table Highschooler(ID int, name text, grade int);
create table Friend(ID1 int, ID2 int);
create table Likes(ID1 int, ID2 int);
@jeremejazz
jeremejazz / require_all.php
Last active January 9, 2024 22:19
PHP require all files in folder
<?php
$files = glob( __DIR__ . '/folder/*.php');
foreach ($files as $file) {
require($file);
}
@jeremejazz
jeremejazz / SimpleStore.js
Last active August 29, 2015 14:27 — forked from ksafranski/SimpleStore.js
Simple localStorage function with Cookie fallback for older browsers.
/**
* Simple localStorage with Cookie Fallback
* v.1.0.0
*
* USAGE:
* ----------------------------------------
* Set New / Modify:
* store('my_key', 'some_value');
*
* Retrieve:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>