Skip to content

Instantly share code, notes, and snippets.

View cironunes's full-sized avatar
🎯
Focusing

Ciro Nunes cironunes

🎯
Focusing
View GitHub Profile
@cironunes
cironunes / index.html
Last active December 15, 2015 08:19
Angular Bootstrap sample
<!doctype html>
<html>
<body ng-app="myOptionalModuleName">
{{ 2 + 2}}
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
<script>
angular.module('myOptionalModuleName', []);
</script>
</body>
</html>
@cironunes
cironunes / index.html
Last active December 15, 2015 08:19
Angular Bootstrap sample
<!doctype html>
<html>
<body ng-app>
{{ 2 + 2}}
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.4/angular.min.js"></script>
</body>
</html>
@cironunes
cironunes / index.html
Created March 24, 2013 00:52
Angular Bootstrap Sample
<!doctype html>
<html>
<body>
{{ 2 + 2 }}
<script src="http://code.angularjs.org/angular.js"></script>
<script>
angular.element(document).ready(function() {
angular.bootstrap(document);
});
</script>
@cironunes
cironunes / angular-loader.js
Created April 21, 2013 23:19
include angular loader, which allows the files to load in any order
// include angular loader, which allows the files to load in any order
/*
AngularJS v1.0.0rc1
(c) 2010-2012 AngularJS http://angularjs.org
License: MIT
*/
'use strict';(function(i){function d(c,a,e){return c[a]||(c[a]=e())}return d(d(i,"angular",Object),"module",function(){var c={};return function(a,e,f){e&&c.hasOwnProperty(a)&&(c[a]=null);return d(c,a,function(){function b(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw Error("No module: "+a);var c=[],d=[],h=b("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:a,provider:b("$provide","provider"),factory:b("$provide","factory"),service:b("$provide","service"),
value:b("$provide","value"),constant:b("$provide","constant","unshift"),filter:b("$filterProvider","register"),directive:b("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window);

Ciro, tem 21 anos, e já foi responsável pelo Front-end dos maiores e-commerces da América Latina como Americanas, Submarino e Shoptime, enquanto trabalhou na Ideais. Recentemente foi o head do Front-end e Scrum Master da Kanui e hoje faz parte do time do Veduca.

Como palestrante já esteve presente nos encontros locais de desenvolvedores JavaScript do Rio de Janeiro e São Paulo apresentando principalmente sobre o framework AngularJS.

@cironunes
cironunes / _state.scss
Last active December 18, 2015 04:58
is-observable state
/*= @group State
---------------------------------------------------------------------- */
.is-hidden {
display: none;
}
.is-hidden--floated {
position: absolute;
visibility: hidden;
@include opacity(0);
@cironunes
cironunes / fn.js
Created August 20, 2013 21:54
simple express GET route
app.get('loggedin', function(req, res) {
//body...
});
@cironunes
cironunes / apps.sh
Last active September 8, 2023 21:47 — forked from zenorocha/.hyper.js
#!/bin/sh
# homebrew-cask
brew tap phinze/homebrew-cask
brew install brew-cask
# browsers
brew cask install google-chrome
brew cask install opera-next
@cironunes
cironunes / services.js
Last active December 30, 2015 11:19
sample service
'use strict';
angular.module('myApp.services', [])
.value('version', '0.1')
.constant('API_KEY', 't5vzuyfb49c2sd56sjz4bc2p')
.factory('$rtmFactory', function($http, API_KEY){
var countries = [
{name:'USA', code:'us'},
{name:'UK', code:'uk'},
{name:'France', code:'fr'}
@cironunes
cironunes / ng-modules.md
Last active May 24, 2016 07:48
A curated list of AngularJS modules and tools