Skip to content

Instantly share code, notes, and snippets.

View vic's full-sized avatar
🤮
puke nuke

Victor Borja vic

🤮
puke nuke
View GitHub Profile
@vic
vic / designer.html
Created August 13, 2014 03:29
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<polymer-element name="my-element">
<template>
<style>
:host {
@vic
vic / README
Last active August 29, 2015 14:15
Patos as a service
Patos demo
How to serve:
`python -m SimpleHTTPServer`
open http://localhost:8000
@vic
vic / index.html
Created February 23, 2015 22:34
angular editable choices
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script>
var foo = {
choices: ['uno', 'dos']
};
@vic
vic / index
Created March 4, 2015 20:01
Angular example
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script src="script.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body ng-app="stories" >
@vic
vic / elfos.rb
Created March 5, 2015 03:18
Elfos que aprenden a escribir y morir por convivir con los humanos.
module Aliveness
attr_accessor :alive
def initialize
@alive = true
end
end
module DieAbility
include Aliveness
@vic
vic / index.html
Created June 2, 2015 19:00
Framework7 router.back bug?
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="bower_components/framework7/dist/css/framework7.css">
<link rel="stylesheet" href="bower_components/framework7/dist/css/framework7.themes.css">
</head>
<body>
@vic
vic / InputAutoCfg.ini
Created August 1, 2015 00:45
Wii U Pro for mupen84 using wjoy
[Wiimote (8c-cd-e8-bf-99-de)]
plugged = True
plugin = 2
mouse = False
AnalogDeadzone = 2000,2000
AnalogPeak = 17000,17000
DPad R = button(15)
DPad L = button(13)
@vic
vic / Main.java
Created September 26, 2008 19:10
import org.jruby.*;
/*
The use case I have:
- Create a JRuby runtime
- Load a gem on it .. actually that gem ("buildr") requires many other gems and takes a lot of time to get them loaded (about 2secs)
- Use that preloaded runtime to create clones
- Load a buildfile on that clone, without affecting the original runtime
- drop the used cloned runtime,
@vic
vic / README
Created October 17, 2008 23:23
This example shows how to use a DRb client/server
with buildr 1.3.3.
Invoke this file the first time with a --drb flag
to start the server. If no --drb flag is present
we connect to the server.
Features:
- Execution of tasks on a previously loaded buildfile
- buildfile reloading if modified.# - NO CLIENT OUTPUT redirection is implemented.
describe("JS.Spec", function() {
it("supports pending examples");
describe("be nested group", function() {
it("intentionally fails for undefined value", function() {
(undefined).should( be(undefined) )
});