Skip to content

Instantly share code, notes, and snippets.

View area73's full-sized avatar
🎯
Building Particle System

Rodrigo area73

🎯
Building Particle System
View GitHub Profile
@area73
area73 / bootstrap_ms.css.scss
Last active December 28, 2015 00:19 — forked from andyl/bootstrap_ms.css.scss
Added .col-ms-push-0, .col-ms-pull-0 , .col-ms-offset-0 support
// Bootstrap Mid-Small - col-ms-* - the missing grid set for Bootstrap3.
//
// This is a hack to fill the gap between 480 and 760 pixels - a missing range
// in the bootstrap responsive grid structure. Use these classes to style pages
// on cellphones when they transition from portrait to landscape.
//
// NOTE: Here I use SASS instead of LESS for styling. To convert to LESS
// replace '$screen' with '@screen' and '$grid' with '@grid'.
//
// See https://github.com/twbs/bootstrap/issues/10203 for more info.
@area73
area73 / Asset.js
Created August 23, 2016 08:26
quitar / obtener elemento de un array de objectos con filter()
var myArray = [
{field: 'id', operator: 'eq', value: id},
{field: 'cStatus', operator: 'eq', value: cStatus},
{field: 'money', operator: 'eq', value: money}
];
@area73
area73 / Asset.as
Created August 23, 2016 08:29
Singleton
package {
public class ClaseSingleton {
static private var _instance:ClaseSingleton;
/**
* Singleton constructor. It has a refference to an internal
* class to avoid a new object been created acidentally
* */
public function ClaseSingleton(singletonEnforcer:SingletonEnforcer){}
@area73
area73 / typewritter.js
Created August 23, 2016 08:30
typewriter
(function () {
'use strict';
angular
.module('poke.botes')
.controller('PokeBoteCrearController', PokeBoteCrearController);
PokeBoteCrearController.$inject = ['motion', '$http', '$state', '$scope', '$interval', '$parse' ];
/* @ngInject */
@area73
area73 / nginxondigitalcoean.sh
Created October 16, 2016 10:06 — forked from AlexZeitler/nginxondigitalcoean.sh
DigitalOcean snippets
sudo apt-get update
sudo apt-get install nginx
#default website
@area73
area73 / update-fork-from-master.md
Last active October 18, 2016 09:30
Update Branch from master
@area73
area73 / debug.js
Created October 19, 2016 10:33
Trace all vars from console
for(var b in window) {
if(window.hasOwnProperty(b)) console.log(b);
}
@area73
area73 / css_regression_testing.md
Created August 18, 2017 23:13 — forked from cvrebert/css_regression_testing.md
Survey of screenshot-based CSS testing tools

Currently considering https://github.com/webdriverio/webdrivercss


Core Goals:

  • Can test in up-to-date versions of all major browsers
  • Can test on up-to-date versions of all major OSes
  • Can test in IE9 (because Bootstrap v4 will support IE9+)
  • Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
  • Workflow for management of reference/baseline/norm screenshots
@area73
area73 / css_regression_testing.md
Created August 18, 2017 23:13 — forked from cvrebert/css_regression_testing.md
Survey of screenshot-based CSS testing tools

Currently considering https://github.com/webdriverio/webdrivercss


Core Goals:

  • Can test in up-to-date versions of all major browsers
  • Can test on up-to-date versions of all major OSes
  • Can test in IE9 (because Bootstrap v4 will support IE9+)
  • Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
  • Workflow for management of reference/baseline/norm screenshots
@area73
area73 / css_regression_testing.md
Created August 18, 2017 23:13 — forked from cvrebert/css_regression_testing.md
Survey of screenshot-based CSS testing tools

Currently considering https://github.com/webdriverio/webdrivercss


Core Goals:

  • Can test in up-to-date versions of all major browsers
  • Can test on up-to-date versions of all major OSes
  • Can test in IE9 (because Bootstrap v4 will support IE9+)
  • Don't want to have to setup/maintain our own cluster of VMs running all the necessary OSes (and all the versions of Windows)
  • Workflow for management of reference/baseline/norm screenshots