Skip to content

Instantly share code, notes, and snippets.

View saske505's full-sized avatar

stephan saske505

View GitHub Profile
@saske505
saske505 / 0_reuse_code.js
Created August 21, 2014 20:47
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@saske505
saske505 / Bitcoin-Loading-SVG-animation.markdown
Created March 7, 2015 22:17
Bitcoin Loading SVG animation
<html lang="en" class=" js csstransforms3d">
<head>
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<meta name="description" content="Multi-Level Push Menu: Off-screen navigation with multiple levels">
<meta name="keywords" content="multi-level, menu, navigation, off-canvas, off-screen, mobile, levels, nested, transform">
<meta name="author" content="Codrops">
@saske505
saske505 / index.html
Last active August 29, 2015 14:18 — forked from anonymous/index.html
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="AKD Admin panel">
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<link href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
@saske505
saske505 / designer.html
Last active August 29, 2015 14:19
designer
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<polymer-element name="my-element">
<template>
<style>
:host {
@saske505
saske505 / index.html
Last active August 29, 2015 14:21 — forked from anonymous/index.html
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<link href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<link href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
@saske505
saske505 / gist:bf2369ad9e2b28d4c057
Created September 17, 2015 16:36
Chrome browser sets a focus on ui elements by default that renders a blue higligted border around it, I hate it so this will remove it.
We couldn’t find that file to show.
@saske505
saske505 / events.js
Created February 7, 2016 22:16
All cordova events setup.
var eventApp;
function onDeviceReady() {
navigator.splashscreen.hide();
eventApp = new EventApp();
eventApp.printEvent('deviceready');
eventApp.run();
}
function EventApp() {