
K33G.ORG
k33gA difficult double life : by day, i'm "enterprise advocate", at night, some call me K33gorg. Blog : http:/ k33g.github.io.
http://www.k33g.org/
A difficult double life : by day, i'm "enterprise advocate", at night, some call me K33gorg. Blog : http:/ k33g.github.io.
http://www.k33g.org/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.6 seconds
16x16
32x32
64x64
128x128
160x160
192x192
256x256
philippe charriere
k33g.org●●●●●●●●#1682972
Rouba●●●●●dex 1 , 59053
FR
View this contact
philippe charriere
k33g.org●●●●●●●●#1682972
Rouba●●●●●dex 1 , 59053
FR
View this contact
philippe charriere
k33g.org●●●●●●●●#1682972
Rouba●●●●●dex 1 , 59053
FR
View this contact
OVH (R135-LROR)
WHOIS : whois.publicinterestregistry.net
REFERRED :
PAGES IN
THIS WEBSITE
0
SSL
EXTERNAL LINKS
29
SITE IP
213.186.33.19
LOAD TIME
0.641 sec
SCORE
6.2
k33g | k33g.org Reviews
https://k33g.org
A difficult double life : by day, i'm "enterprise advocate", at night, some call me K33gorg. Blog : http:/ k33g.github.io.
Riot, un nouveau framework js pour IHM
http://k33g.github.io/2015/01/25/RIOT.html
Riot, un nouveau framework js pour IHM. Hier soir, je suis tombé complètement par hasard (en lisant Prismatic) sur Riot. Qui est d’une simplicité déconcertante et extrêmement léger: 5.7kb. Est un framework développé par Muut. Une solution de forumet de commentaires pour sites web. Mais laissez moi vous présenter (rapidement pour aujourd’hui) la bête (la bébête). Le concept de base de Riot, c’est les tags. Un tag riot, cela ressemble à ceci:. H1 hello from {who} /h1 '. Et cela s’utilise comme ceci:. A pen...
Riot et Backbone, combo magique?
http://k33g.github.io/2015/02/06/RIOT.html
Riot et Backbone, combo magique? Ma nouvelle étape dans ma découverte de Riot. Est: est-ce que ça fonctionne correctement avec Backbone. En effet je préfère (mais ça n’engage que moi) travailler avec plusieurs microframeworks qu’un seul macroframework qui lorsqu’il disaparaît ou change profondément vous colle dans la mouise. Sans compter ma passion immodérée pour Backbone ;). Modifions notre code serveur. Donc modifiez le code du fichier. On ajoute une mini base de données en mémoire */. Id":"001","first...
In-browser ECMAScript 6 transpilation with Babel
http://k33g.github.io/2015/05/02/ES6.html
In-browser ECMAScript 6 transpilation with Babel. Npm install babel-core es6-module-loader. Copy to JavaScript directory of your webapp: (ie:. Node modules/es6-module-loader/dist/es6-module-loader.js.map. Is the ES6 transpiler and. Allows you to load ECMAScript 6 files and to use. Now, you’ve got something like that (create these files:. My-app/ public/ js/ models/ human.js vendors/ browser.js es6-module-loader.js es6-module-loader.js.map index.html index.js. Now, the code:. Will load and execute.
Coffee Bean: Java EE 7 : Bonne nouvelle?
http://coffeebean.loicdescotte.com/2013/10/java-ee-7-bonne-nouvelle.html
Mercredi 2 octobre 2013. Java EE 7 : Bonne nouvelle? Oracle a présenté en Juin la version finale de Java EE 7, et on peut déjà l'utiliser avec Glassfish 4. Cela fait très longtemps que je n'ai pas parlé de Java EE (ou de Spring) sur ce blog. En effet d'autres technologies bien plus innovantes ont fait leur apparition sur la JVM côté serveur depuis quelques années. Cependant je vous propose aujourd'hui un petit billet d'humeur sur cette nouvelle spécification. Elles permettent d'ouvrir une connexion bilat...
Coffee Bean: Spring Data JPA et Querydsl
http://coffeebean.loicdescotte.com/2011/05/spring-data-jpa-et-querydsl.html
Samedi 28 mai 2011. Spring Data JPA et Querydsl. SpringSource a récemment lancé le projet Spring-Data, un ensemble de sous projets ayant pour but de nous aider à manipuler plus facilement nos données. Nous allons nous attarder sur Spring-Data-JPA, qui fournit un ensemble d'automatisations pour JPA. Les repositories sont des interfaces pour lesquelles nous n'avons pas à fournir d'implémentation. Ces interfaces seront implémentées par le framework lui même au démarrage du contexte Spring. Si on veut écrire...
Coffee Bean: How to export objects as JSON with Play framework
http://coffeebean.loicdescotte.com/2011/01/how-to-export-objects-to-json-with-play.html
Mercredi 19 janvier 2011. How to export objects as JSON with Play framework. With Play, it is extremely easy to create a REST service that exposes some model objects in JSON format. If we write this line in the routes file :. GET /albums.json Application.listAlbumsInJson. And this method in the controller :. Public static void listAlbumsInJson(){ List Album albums = Album.findAll(); renderJSON(albums); }. I discovered on zengularity.com. GET /albums.{ json xml format} Application.listAlbums. How to write...
Coffee Bean: A Typesafe Activator plugin for Play-Slick
http://coffeebean.loicdescotte.com/2014/04/a-typesafe-activator-plugin-for-play.html
Mercredi 16 avril 2014. A Typesafe Activator plugin for Play-Slick. Typesafe Activator is a very cool tool to bootstrap applications built with the Typesafe stack (Scala, Play, Akka.). I've just published an activator template for play-slick : https:/ typesafe.com/activator/template/play-slick-quickstart. Slick is the default library for databases access in the Typesafe stack. This template may help you integrate Play Framework and Slick to create a new Web application or a JSON API. Tweets by @loic d.
Coffee Bean: Simple dependency injection with Play, without DI framework
http://coffeebean.loicdescotte.com/2014/06/simple-dependency-injection-with-play.html
Dimanche 1 juin 2014. Simple dependency injection with Play, without DI framework. There are many ways to setup dependency injection in a Play Framework project. In this post, we will see two ways to achieve this as simply as we can, without using a DI framework. Let’s try to describe our problem :. All the code from the following examples can be found on github : http:/ github.com/loicdescotte/playSimpleDI. The Piece of Cake Pattern. The first solution is to define a. Http:/ api.duckduckgo.com/? This ma...
Coffee Bean: How to monitor a Play Framework app in production
http://coffeebean.loicdescotte.com/2014/01/how-to-monitor-play-framework-app-in.html
Lundi 13 janvier 2014. How to monitor a Play Framework app in production. Today, we will try to explain how to monitor a play application with Metrics and JMX. Is a Play plugin for the Metrics. This plugin provides a lot of information about requests (count, response time, requests/second, errors…) and JVM (CPU, memory.). To install it, add metrics-play dependency in your Build.scala or build.sbt file :. Then add this line to conf/play.plugins. Let’s define a Global object using this filter :. Domain=${r...
TOTAL LINKS TO THIS WEBSITE
29
004期常州时时彩诈骗案_004期常州时时彩诈骗案
省委追授廖俊波同志 全省优秀共产 党员 称号并. 邓金坤 具有 工匠精神 的人大代表. 陈秀榕 建议研究制定 反家庭暴力法 司法解释、. 福建省食品安全条例 草案修改稿 提交二审 . 福建省老年人权益保障条例 草案 提交一审 . 中国 福建 自由贸易试验区条例 草案 提交一审. 关于 福建省义务教育条例 草案 公开征求意见. 关于 福建省食品安全条例 草案 公开征求意见. 关于 中国 福建 自由贸易试验区条例 草案修改. 关于 平潭综合实验区条例 草案 公开征求意见. 关于 福建省义务教育条例 草案 公开征求意见. 关于 福建省风景名胜区条例 草案 公开征求. 蕉城 为了沉淀的 细胞 重焕生机.
k33f-vodka-loveuh33.skyrock.com
k33f-vOdka-lOveuh33's blog - Blog de k33f-vOdka-lOveuh33 - Skyrock.com
18/05/2009 at 11:22 PM. 09/09/2009 at 1:26 PM. Subscribe to my blog! Fauve de juournei jtm :). Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.62) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Wednesday, 09 September 2009 at 1:27 PM. Foto prize par laurie in ptdr vou avai craker. Please enter the sequence of characters in the field below. Please ent...
K33F – Just another WordPress site
Just another WordPress site. Scroll down to content. It seems we can’t find what you’re looking for. Perhaps searching can help. Proudly powered by WordPress.
李梦清的沦陷_校园chunsewang_成人激情导航_依依成人_成人电影快播_成人在线激情网_色情五月天激情小说
欢迎来到李梦清的沦陷 校园chunsewang 成人激情导航 依依成人 成人电影快播 成人在线激情网 色情五月天激情小说,一起分享电影给我们带来的快乐。 公告 李梦清的沦陷 校园chunsewang 成人激情导航 依依成人 成人电影快播 成人在线激情网 色情五月天激情小说 如果喜欢本站,请推荐给你的小伙伴. 阿免姨 A Mian Yi(2012). 做只海鸥也挺好 Zuo Zhi Hai Ou Ye Ting Hao(2012). 一个完美的结局 A Perfect Ending(2012). ACAB All Cats Are Brilliant(2012). 天堂旅馆 Hotel du Paradis(2012). 真情推销员 A puerta fría(2012). A meg nem érintett(2012). Black Coffee and Vinyl(2012). 黑色狗,红色狗 Black Dog, Red Dog(2014). Black Rain, White Rain(2012). 梨山春晓 Call of the Mountains(1967). 主演 David Akinl...
K33G_ORG
Aurelia, premiers pas. Written on 05 Aug 2015 : Read this post ». Aurelia est un framework web, sucesseur de Durandal, créé par Rob Eisenberg, un ex de la team Angular 2. Voyons un peu à quoi ça ressemble afin d'être armés pour décider quel n-ième framework vous pourriez prendre pour vos futurs projets. . Read this post . My small arrangements with Angular. Written on 20 May 2015 : Read this post ». How to use Angular 1.x like Polymer (only with directives). Read this post . Read this post . Raquo; My sm...
k33g
A difficult double life : by day, i'm "enterprise advocate", at night, some call me K33gorg. Blog : http:/ k33g.github.io.
K33g4n (Keegan) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 9 Years. This deviant's full pageview. Last Visit: 109 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? Fantasy Movie...
Welcome to k33gan.com
New YouTube widget 1. Welcome to k33gan.com. Follow Keegan Palmer here on k33gan.com. Powered by InstantPage® from GoDaddy.com. Want one?
k33gas.de - This website is for sale! - k33gas Resources and Information.
k33girl.com - This website is for sale! - k33girl Resources and Information.
Find the best information and most relevant links on all topics related to k33girl.com. This domain may be for sale!
固原民族师范影集_洪爷小说网_情色亚洲_美国十次了快播_淫乱电影_尻逼号_免费成人视频
欢迎来到固原民族师范影集 洪爷小说网 情色亚洲 美国十次了快播 淫乱电影 尻逼号 免费成人视频,一起分享电影给我们带来的快乐。 公告 固原民族师范影集 洪爷小说网 情色亚洲 美国十次了快播 淫乱电影 尻逼号 免费成人视频 如果喜欢本站,请推荐给你的小伙伴. 攻壳机动队2.0 Ghost in the Shell 2.0(2008). 直到那天到来 Geu nali ol daeggaji(1968). 伤追人 Winds From Zero(2008). 幸福的馨香 Flavor of Happiness(2008). 勿忘我 Nishi no majo ga shinda(2008). 百万美元密码 Million Dollar Password(2008). 海图迷踪 Carta esférica, La(2007). House of the Rising Sun(2004). All the Best Cowboys Have Daddy Issues(2004). Whatever the Case May Be(2005). Man of Science, Man of Faith(2005).
SOCIAL ENGAGEMENT