Skip to content

Instantly share code, notes, and snippets.

View idmontie's full-sized avatar

Ivan Montiel idmontie

View GitHub Profile
@idmontie
idmontie / glitch.html
Last active June 15, 2022 12:42
Glitch Text Effect with CSS
<!doctype html>
<html>
<head>
<!-- Based on http://codepen.io/lbebber/pen/ypgql -->
<link href="http://necolas.github.io/normalize.css/3.0.2/normalize.css" rel='stylesheet'/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<style>
/* Just colors and font sizes */
* {
font-family: sans-serif;
@idmontie
idmontie / console-css.js
Last active August 29, 2015 14:12
Small wrapper for CSS Console Logs
window.ConsoleCss = {
log : function ( obj, css ) {
var cssString = css;
if ( typeof css == 'object' ) {
cssString = '';
for ( var part in css ) {
if ( css.hasOwnProperty( part ) ) {
cssString += part + ':' + css[part] + '; ';
}
}
@idmontie
idmontie / $notes.md
Last active August 29, 2015 14:12
The $100 Startup Notes

The $100 Startup

Reinvent the Way You Make a Living, Do What You Love, and Create a New Future

Written by Chris Guillebeau

Prologue - Manifesto

@idmontie
idmontie / $TEM 100: Seminar In Entrepreneurship
Last active August 29, 2015 14:13
$TEM 100: Seminar In Entrepreneurship
2015 Spring A
Jason Bronowitz
@idmontie
idmontie / _media-variables.scss
Created January 20, 2015 19:26
SaSS Common Media Queries
// =======================
// Media Query Breakpoints
// =======================
$screen-xs-min: 480px !default;
$screen-sm-min: 768px !default;
$screen-md-min: 992px !default;
$screen-lg-min: 1200px !default;
$screen-xs-max: ($screen-sm-min - 1) !default;
$screen-sm-max: ($screen-md-min - 1) !default;
@idmontie
idmontie / instagram.css
Created January 20, 2015 20:07
Instagram CSS Classes
/**
* @see http://designpieces.com/2014/09/instagram-filters-css3-effects/ for example
*/
.ig-xpro2 {
-webkit-filter: contrast(1.3) brightness(0.8) sepia(0.3) saturate(1.5) hue-rotate(-20deg);
filter: contrast(1.3) brightness(0.8) sepia(0.3) saturate(1.5) hue-rotate(-20deg);
}
.ig-willow {
@idmontie
idmontie / $general-ideas.markdown
Last active August 29, 2015 14:13
General Ideas

General Business/Product Ideas

@idmontie
idmontie / file.txt
Created January 21, 2015 16:53
Github for Windows failing
PLATFORM VERSION INFO
Windows : 6.1.7601.65536 (Win32NT)
Common Language Runtime : 4.0.30319.18444
System.Deployment.dll : 4.0.30319.34244 built by: FX452RTMGDR
clr.dll : 4.0.30319.18444 built by: FX451RTMGDR
dfdll.dll : 4.0.30319.34244 built by: FX452RTMGDR
dfshim.dll : 4.0.41209.0 (Main.041209-0000)
SOURCES
Deployment url : http://github-windows.s3.amazonaws.com/GitHub.application
@idmontie
idmontie / _color-variables.scss
Created January 23, 2015 03:03
_color-variables.scss
$theme-dark: #_;
$theme-primary: #_;
$theme-accent: #_;
$theme-pop: #_;
$theme-aggro: #_;
@idmontie
idmontie / javascript-interview-questions.markdown
Created January 30, 2015 01:24
JavaScript Interview Questions

How can you declare a class in JavaScript?

There are two main ways:

Option 1

function MyObject() {
}

var object = new Object();