Cinquante mille développeurs répartis dans le monde entier ont répondu à l’enquête de Stackoverflow, un vrai baromètre des tendances de l’état actuel de la programmation informatique, retrouvez l’étude ici : http://stackoverflow.com/research/developer-survey-2016. On y trouve beaucoup de chiffres intéressants : 69,1% des développeurs sont autodidactes, l’âge moyen est 29,6 ans (en France 29,1) le framework qui monte est React js, […]
read moreNEWS
For those who needs to use cs6 on OS X Sierra like me who had to work an old flash project written in as2, you can use Java 8 instead of Java 6 recommended by the software. I tried at first to use Flash cs6 with Java 6 and I got memory errors publishing the file, errors […]
read moreQuelle n’a pas été ma surprise en découvrant un message d’alerte sur mon compte. Mon mot de passe utilisé pour ce compte est le même qu’un mot de passe utilisé sur un autre site ? C’est vrai que depuis plusieurs années de nombreux sites se font hacker et des milliers de comptes utilisateurs circulent sur Internet. Instagram […]
read moreUsing Advanced Custom Fields for a wordpress site I create a custom field for Users and its type is “User”, it is also set to support multiple selection. The idea is to link users to each other as friends. To update the field I used update_field() but it me took time to figure out how to make it […]
read moreI got this error while working on a project using swiper.js : Error: Mismatched anonymous define() module: function (require) {… Searching a little on google I found a thread on stack overflow telling that : requireJS blows up when : You have an anonymous define (“modules that call define() with no string ID“) in its own script […]
read moreWith css rotate property, the default transform-origin property unexpectedly changes from its default value ‘50% 50%’ to ‘top left’ when the size of the rotating object is set in percentage. When setting the size in pixels, the object transform-origin gets back to it center. See the Pen yyZXyL by akinorikul (@akinorikul) on CodePen.
read moreThe default content type for email sent through core wp_mail function is plain/text
read moreTo create truly global variable in Edge animated, define in a symbol (usually inside the Stage.compositionReady event handler, a good place for global stuff) : sym.globalFunction = function(){ // statements } To call this function from another symbol : sym.getComposition().getStage().globalFunction(); Here the variable holds a function, but it could hold a number, string, etc.
read moreI’ve had a very hard time understanding why $wpdb->get_results was always returning an empty array in a query I was working on. Thanks to the codex, turning wordpress to show sql’s errors helped me a lot : $wpdb->show_errors(); more infos about error handling inside WPDB
read moreTo refresh your site’s favicon you can simply use the link tag with a querystring on your filename: <link rel=”shortcut icon” href=”http://www.site.com/favicon.ico?v=new” />
read more