This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace atoum\AtoumBundle\Test\Units; | |
use Symfony\Bundle\FrameworkBundle\Client; | |
use Symfony\Component\Finder\Finder; | |
use Symfony\Component\HttpKernel\HttpKernelInterface; | |
use atoum\AtoumBundle\Test\Asserters; | |
use mageekguy\atoum; | |
use Symfony\Component\CssSelector\CssSelector; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Template.registerHelper('setCardHeight',function(tabletCards){ | |
var tabletCount = tabletCards.length; | |
var tabletCardWidth = 450; | |
var screenWidth = $(window).width(); | |
var cardsPerRow = Math.floor(screenWidth / tabletCardWidth); | |
if (cardsPerRow <= 1) { | |
return; | |
} | |
for (var i=0; i<tabletCount; i+=cardsPerRow) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//bat script where host and port are parameters, but you can also force them or set defaults if they are not sent | |
SET MONGO_URL=mongodb://%1:%2/meteor | |
meteor > logs/meteor.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* on J3 & J7 there is no GPIO so don't use it when playing with Digital sensor | |
*/ | |
var b = require('bonescript'), | |
led = "USR0", | |
sensor = "P9_26"; | |
b.pinMode(led, b.OUTPUT); | |
b.pinMode(sensor, b.INPUT); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// it will retreive all verified address and return the first one | |
// if none found, it will juste return the first address | |
var email = _.chain(Meteor.user().emails).each(function(email) { | |
if (email.verified === true) { | |
return email; | |
} | |
}).value() || _.first(Meteor.user().emails); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// go on https://www.linkedin.com/profile/preview?locale=en_US&trk=prof-0-sb-preview-primary-button | |
// and copy paste those in your console | |
// différents en-tetes | |
$('div[id=header], div[id=text-ad-container], div[id=preview-ctx]').remove(); | |
//barre latéral | |
$('div[id=aux]').remove(); | |
// titre Parcours | |
$('#background h2').remove(); | |
// suppression du résumé si besoin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// public data from a linkedin profile | |
{ | |
"name": $('#topcard #name').innerHTML, | |
"jobTitle": $('#topcard .title').innerHTML, | |
"photo": $('#topcard .profile-picture img').getAttribute('src'), | |
"sumup": $('#summary .description').innerHTML.split("<br>").implode("\ | |
"), | |
"experience": [ | |
{// loop over $('#experience ul li') | |
"title": $(el).find('header h4').innerHTML, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# first generate your self-signed certificates : openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ssl/nginx.key -out ssl/nginx.crt | |
# and put them in nginx/ssl folder | |
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Type definitions for Meteor 1.3 | |
// Project: http://www.meteor.com/ | |
// Definitions by: Dave Allen <https://github.com/fullflavedave> | |
// Definitions: https://github.com/borisyankov/DefinitelyTyped | |
/** | |
* These are the common (for client and server) modules and interfaces that can't be automatically generated from the Meteor data.js file | |
*/ | |
interface EJSONable { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul id="pages-block"> | |
<li v-for="page in pages"> | |
<a v-bind:href="page.url">{{page.name}}</a> | |
<debug :item="page"/> | |
</li> | |
</ul> | |
... | |
Vue.component('debug', { |
OlderNewer