Skip to content

Instantly share code, notes, and snippets.

@sk8terboi87
sk8terboi87 / index.html
Last active May 11, 2022 06:37
JavaScript Web Worker Example: Fetching Random Content from Wikipedia using Web Workers. http://codelikeapoem.com/2017/03/web-workers-beginners-guide.html
<!DOCTYPE html>
<html>
<head>
<title>Polling Example</title>
<style type="text/css">
.title, .result {
display: inline-block;
padding: 10px;
background-color: #fffeee;
}
<!DOCTYPE html>
<html>
<head>
<title>Bad Parts</title>
<script src="shakespeare.js"></script>
<script src="wordsworth.js"></script>
<script type="text/javascript">
console.log(getPoem());
</script>
</head>
@sk8terboi87
sk8terboi87 / checker.sh
Created December 15, 2013 14:43
Check PHP And Its Related Modules
#!/bin/bash
php_version(){
echo `php -r '$version = phpversion();
echo sprintf("\033[34m%s\033[37m", "$version");'`
}
php_compability_check() {
echo `php -r ' if (version_compare(PHP_VERSION, "5.4", "<")) {
echo sprintf("\033[31m%s\033[37m", "Upgrade PHP!! PHP 5.4 or Greater!");
@sk8terboi87
sk8terboi87 / Gruntfile.js
Last active December 26, 2015 04:39
A automated thing + builder script using https://gruntjs.com! Does Coffee to html, Jade to Html Does livereload and compilation of above Finally, Able to build the finally compressed, uglified script for production usage (File mentioned below are just examples... will be fixed sooner ^^")
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('build_package.json'),
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
<form class="form-horizontal">
<fieldset>
<legend>Lets upload something... (Along with some other data)</legend>
<div class="control-group">
<label class="control-label" for="firstName">Firstname</label>
<div class="controls">
<input type="text" id="firstName" ng-model='firstname' placeholder="Type your firstname">
</div>
</div>
<div class="control-group">
angular.module("uploaderComponent", [])
.directive "fileupload", ->
restrict: "A"
scope:
done: "&"
progress: "&"
fail: "&"
uploadurl: "="
link: (scope, elem, attrs) ->
@sk8terboi87
sk8terboi87 / index.html
Last active August 29, 2015 14:05
HTML5 Canvas
CANVAS
========
http://www.comp.nus.edu.sg/~stevenha/visualization/training.html
Introduction
HTML5
what is canvas?
why canvas?
<http://www.sitepoint.com/html5-canvas-tutorial-introduction/>
<html>
<head>
<style type="text/css">
canvas {
border: solid 1px #000;
}
</style>
<script type="text/javascript">
<?php
Class Pay {
public function doPay($cart) {
return '112345';
}
}