Propositions de Ronan
- Comment faire du MVC en Sencha Touch
- Tours d'horizon d'applis pro qui utilisent Sencha
- Comment tester son appli Sencha Touch
- Intégration avec Sencha.IO (surtout la partie authentification)
- Charting avec Sencha Touch
| <VirtualHost *:80> | |
| ServerName flask.revolunet.com | |
| WSGIScriptAlias / /home/git/flask_app/run.wsgi | |
| WSGIScriptReloading On | |
| <Directory /home/git/flask_app> | |
| Order deny,allow | |
| Allow from all | |
| </Directory> |
| // | |
| // this outputs a png file for each section in your presentation | |
| // then use `convert slide-*.png output.pdf` to create single PDF | |
| // | |
| function screenshot(url, output) { | |
| var page = new WebPage(); | |
| page.viewportSize = { width: 1000, height: 700 }; | |
| page.onConsoleMessage = function (msg, line, source) { |
| // localisation FR for http://www.eyecon.ro/datepicker | |
| locale: { | |
| days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"], | |
| daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"], | |
| daysMin: ["Di", "Lu", "Ma", "Me", "Je", "Ve", "Sa", "Di"], | |
| months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], | |
| monthsShort: ["Jan", "Fev", "Mar", "Avr", "Mai", "Jun", "Jul", "Aut", "Sep", "Oct", "Nov", "Dec"], | |
| weekMin: 'sem' | |
| }, |
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| div.imghover:hover { | |
| background-color:#f6c293; | |
| -webkit-transition: background-color 0.3s ease-out; | |
| transition: background-color 0.3s ease-out; | |
| background-image: url(http://www.repossi.com/themes/bartik/images/suite.png); | |
| background-repeat: no-repeat; |
| proto = "openchrome://" | |
| arg1 = WScript.Arguments(0) | |
| url = right(arg1, len(arg1)-len(proto)) | |
| set objShell = CreateObject("WScript.Shell") | |
| objShell.run("chrome "+url) |
| <script> | |
| function loadScript(src, callback){ | |
| var callbackParam = 'callback'; | |
| var s = document.createElement('script'); | |
| if (callback) { | |
| callback = callbackParam + '=' + callback; | |
| src += ((src.indexOf('?')==-1)?'?':'&')+callback; | |
| } | |
| s.src = src; | |
| document.body.appendChild(s); |
| if(!Array.prototype.indexOf){Array.prototype.indexOf=function(b){var a=this.length>>>0;var c=Number(arguments[1])||0;c=(c<0)?Math.ceil(c):Math.floor(c);if(c<0){c+=a}for(;c<a;c++){if(c in this&&this[c]===b){return c}}return -1}}; |
| # place this in your ST2 'User' folder | |
| # eg: /Users/juju/Library/Application Support/Sublime Text 2/Packages/User/compass.sublime-build | |
| # | |
| { | |
| "cmd": ["compass", "compile", "--boring" ,"$file_name"], | |
| "working_dir": "$file_path", | |
| "selector": "source.scss" | |
| } |
Propositions de Ronan
| # | |
| # a mettre dans | |
| # /Users/juju/Library/Application Support/Sublime Text 2/Packages | |
| # | |
| { | |
| "cmd": ["lessc", "$file", "${file_path}/${file_base_name}.css", "--verbose", "-x"], | |
| "working_dir": "$file_path", | |
| "selector": "source.css.less" | |
| } |