Voici 5 points essentiels pour vous guider dans la périlleuse aventure de l’acquisition de vos premiers utilisateurs !
Just some handy accessors for the brower console :
var myScope = $('#directive > select.or').scope()
var $rootScope = $('body').scope() // if <body> has the 'ng-app' attribute
var myController = $('#directive > select.or').controller()
var injector = $(document.body).injector()
var myService = injector.get('myServiceName')
And there are 3 handy pre-commit hooks :
- repo: local
hooks …Puppet CookBook
The Puppet Language Style GuideMetadataPuppet Language Style Guide: Version 2.0.1Puppet: Version 3.7+ (Note: While the style guide maps to Puppet 3.7, many of its recommendations apply to Puppet 3.0.x an...
Free online web performance tool. Audit your webpage for performance and front-end quality issues. And it's open-source!
Thousands of repair manuals, tutorials, and how-to guides for DIY fixes. From electronics to cars, learn how to repair your own stuff and save yourself some money.
Quand nous achetons de nouveaux composants pour nos ordinateurs se pose la question fatale : quelle marque dois-je choisir pour mon matériel informatique ? Il faut dire qu’il y a tellement de fabricants qui se battent sur ce marché, avec souvent les mêmes arguments marketing, qu’il est difficile d’effectuer un choix objectif et éclairé, même […] Lire la suite...
python-sdk - Facebook Platform Python SDK
chucknorris-plugin - Jenkins chucknorris plugin
Today, I’m going to explain in plain English the top 10 most influential data mining algorithms as voted on by 3 separate panels in this 2007 survey paper.
Pourquoi, mais pourquoi faut-il 3 lignes en Java pour juste extraire un groupe d'une expression régulière qui "match" ???
Matcher matcher = Pattern.compile("o?k(b|i)s+").matcher("kiss");
matcher.matches();
assert matcher.group(1) == "i";

En Python:
assert re.match("o?k(b|i)s+", "kiss").group(1) == "i …