
pascaldimassimo.blogspot.com
Chez PascalLe blog de Pascal Dimassimo
http://pascaldimassimo.blogspot.com/
Le blog de Pascal Dimassimo
http://pascaldimassimo.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Tuesday
LOAD TIME
0.4 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
31
SITE IP
172.217.11.33
LOAD TIME
0.406 sec
SCORE
6.2
Chez Pascal | pascaldimassimo.blogspot.com Reviews
https://pascaldimassimo.blogspot.com
Le blog de Pascal Dimassimo
Un peu de fiction cette année...
http://pascaldimassimo.blogspot.com/2009/03/un-peu-de-fiction-cette-annee.html
Le blog de Pascal Dimassimo. Mercredi 11 mars 2009. Un peu de fiction cette année. Je dois avouer que je ne suis pas un grand lecteur de fiction (pas dans le sens de science-fiction mais dans le sens de fictif). Adolescent, j'en lisais beaucoup, mais depuis quelques années, j'ai préféré lire des livres de type documentaire (en anglais non-fiction). Mais après avoir lu, à quelques reprises, des remarques à propos de l'intérêt de lire davantage de fiction. Pas mal pour mon premier roman de l'année! Mon nom...
juillet 2009
http://pascaldimassimo.blogspot.com/2009_07_01_archive.html
Le blog de Pascal Dimassimo. Samedi 25 juillet 2009. How to get ideas. J'ai toujours cru que les personnes très créatives, celles qui ont toujours de bonnes idées, sont spéciales et possèdent un talent qui n'est pas accesible au commun des mortels. Mais le livre How to get ideas. M'a convaincu que ce n'est pas une question de talent particulier. N'importe qui peu devenir créatif et avoir de bonnes idées. Il s'agit d'avoir la bonne recette. Voici quelques points que j'ai retenu:. S'exposer le plus possibl...
Le Dernier discours
http://pascaldimassimo.blogspot.com/2009/03/le-dernier-discours.html
Le blog de Pascal Dimassimo. Samedi 28 mars 2009. Comme plusieurs, j'avais entendu parler de Randy Paush et de son Dernier discours. L'année dernière. Pour ceux qui ne le connaissent pas, il était professeur à l'université américaine Carnegie Mellon. Il enseignait l'informatique, plus précisément dans le domaine de la réalité virtuelle. Randy est décédé l'été dernier. Des suites d'un cancer. J'ai finalement pris le temps de visionner le Dernier discours. Publié par Pascal Dimassimo. Mes 3 outils de lheure.
Clean code
http://pascaldimassimo.blogspot.com/2009/05/clean-code.html
Le blog de Pascal Dimassimo. Mardi 19 mai 2009. Je lis présentement le livre Clean Code de Robert Martin. Souvent surnommé Oncle Bob! Ce livre insiste sur les bonnes pratiques nécessaires pour produire du code de première qualité. Il insiste sur plusieurs principes importants et bien connus (inversion de contrôle, tests unitaires), mais un a particulièrement attiré mon attention: Single Responsability Principle. Ou, traduction libre, le principe de responsabilité unique. Publié par Pascal Dimassimo.
mars 2009
http://pascaldimassimo.blogspot.com/2009_03_01_archive.html
Le blog de Pascal Dimassimo. Samedi 28 mars 2009. Comme plusieurs, j'avais entendu parler de Randy Paush et de son Dernier discours. L'année dernière. Pour ceux qui ne le connaissent pas, il était professeur à l'université américaine Carnegie Mellon. Il enseignait l'informatique, plus précisément dans le domaine de la réalité virtuelle. Randy est décédé l'été dernier. Des suites d'un cancer. J'ai finalement pris le temps de visionner le Dernier discours. Publié par Pascal Dimassimo. Liens vers ce message.
TOTAL PAGES IN THIS WEBSITE
19
hackreduce | A programmer's blog
https://pascaldimassimo.com/category/hackreduce
Skip to search - Accesskey = s. A programmer's blog. By pascaldimassimo on March 28, 2011. Last Saturday, I went to Hack/Reduce. Organized by the folks at Hopper. The event was an opportunity to learn to use Hadoop. They took the time to prepare a EC2 cluster of more than a hundred nodes. They also loaded a set of popular dataset for us to play with. With clear instructions on how to deploy our jobs to the cluster, we were ready to hack! I teamed up with Mathieu Carbou. To build a full inverted index.
Spring AOP: Prevent advising test classes | A programmer's blog
https://pascaldimassimo.com/2012/09/28/spring-aop-prevent-advising-test-classes
Skip to search - Accesskey = s. A programmer's blog. Spring AOP: Prevent advising test classes. By pascaldimassimo on September 28, 2012. Recently, I’ve been using @ContextConfiguration. To annotate my Spring test classes. This allows to have a context available for the test, without having to load it manually in a @Before method. It also gives to opportunity to use @Autowired within the test class. What is the problem with having the test classes advised? I came up with this code:. IsTestClass() public ...
How to return a single JSON list out of MappingJacksonJsonView | A programmer's blog
https://pascaldimassimo.com/2010/04/13/how-to-return-a-single-json-list-out-of-mappingjacksonjsonview
Skip to search - Accesskey = s. A programmer's blog. How to return a single JSON list out of MappingJacksonJsonView. By pascaldimassimo on April 13, 2010. I really like to build REST web services with Spring Web MVC. The ContentNegotiatingViewResolver allows to easily render an object or a collection of objects to many representations, like XML, JSON or good old HTML. So, by default, this code:. ModelAndView mav = new ModelAndView(); mav.addObject(listOfObjects); return mav;. Now it only returns the list.
spring | A programmer's blog
https://pascaldimassimo.com/category/java/spring
Skip to search - Accesskey = s. A programmer's blog. Spring AOP: Prevent advising test classes. By pascaldimassimo on September 28, 2012. Recently, I’ve been using @ContextConfiguration. To annotate my Spring test classes. This allows to have a context available for the test, without having to load it manually in a @Before method. It also gives to opportunity to use @Autowired within the test class. What is the problem with having the test classes advised? I came up with this code:. IsTestClass() public ...
java | A programmer's blog
https://pascaldimassimo.com/category/java
Skip to search - Accesskey = s. A programmer's blog. Building a singleton in Java. By pascaldimassimo on October 28, 2012. Usually, I don’t use singletons that objects need to fetch using a static method. I prefer using dependency injection to give each object what it needs. But for lower level concerns, like logging or security, it is common to use singletons that are accessible from a static method. Like the way you get a logger with SLF4J. The logger object is a singleton obtained via a static method.
clojure | A programmer's blog
https://pascaldimassimo.com/category/clojure
Skip to search - Accesskey = s. A programmer's blog. By pascaldimassimo on March 10, 2011. Another day at Confoo! I’ve started the day with Designing HTTP Interfaces and RESTful Web Services. So far, it’s my favorite talk of the event. The guy is very knowledgeable about all things HTTP and REST and had a funny way to present. We learned about what it really takes to design clean and efficient HTTP and REST api. It was the first time I heard about the Richardson Maturity Model. It was an introduction to ...
Learning Clojure | A programmer's blog
https://pascaldimassimo.com/2010/11/03/learning-clojure
Skip to search - Accesskey = s. A programmer's blog. By pascaldimassimo on November 3, 2010. I started learning Clojure a couple of weeks ago. Tough my brain is hurting, I must say that I really enjoy it. It is so refreshing! Clojure has been on my radar for a year or two, but that video from Rich Hickey. Gives me the motivation to actually start learning it. I am currently using the labrepl. To practice writing clojure code. Nice stuff! Comments Off on Learning Clojure. Laquo; How to re-crawl with Nutch.
Java and the Reactor pattern | A programmer's blog
https://pascaldimassimo.wordpress.com/2011/02/10/java-and-the-reactor-pattern
Skip to search - Accesskey = s. A programmer's blog. Java and the Reactor pattern. By pascaldimassimo on February 10, 2011. Since Java 1.4, the Selector class. Provides an implementation of this pattern. You start by registering connections to a Selector instance. Then you call the. For more details on how to use the Selector class. To familiarize myself with the Selector class, I wrote nio-crawler. Laquo; Lucene and Solr Introduction. Subscribe to comments with RSS. Said, on February 13, 2013 at 1:22 am.
Lucene and Solr Introduction | A programmer's blog
https://pascaldimassimo.wordpress.com/2011/01/29/lucene-and-solr-introduction
Skip to search - Accesskey = s. A programmer's blog. Lucene and Solr Introduction. By pascaldimassimo on January 29, 2011. Here is a presentation I gave on November 18th 2010 at the Montreal JUG. Comments Off on Lucene and Solr Introduction. Laquo; Learning Clojure. Java and the Reactor pattern. My Old Blog (in french). Building a singleton in Java. Error: Twitter did not respond. Please wait a few minutes and refresh this page. Create a free website or blog at WordPress.com.
Confoo Day 2 | A programmer's blog
https://pascaldimassimo.wordpress.com/2011/03/10/confoo-day-2
Skip to search - Accesskey = s. A programmer's blog. By pascaldimassimo on March 10, 2011. Another day at Confoo! I’ve started the day with Designing HTTP Interfaces and RESTful Web Services. So far, it’s my favorite talk of the event. The guy is very knowledgeable about all things HTTP and REST and had a funny way to present. We learned about what it really takes to design clean and efficient HTTP and REST api. It was the first time I heard about the Richardson Maturity Model. It was an introduction to ...
TOTAL LINKS TO THIS WEBSITE
31
Rebels on the Rampage
Rebels on the Rampage. St Albans Methodist Church 1922 Wedding Preformed. View my complete profile. Saturday, July 31, 2010. St Albans Methodist Church 1922 Wedding Preformed by Pascal DiFlorio. For Pascal’s grandson Michael…As you precede on your 1st, authorized to solemnize the rites of matrimony as they used to say in the early 1900’s. In 2010 we would probably prefer to say… “To celebrate or observe with dignity and gravity.”. Ith the coming of summer we went to. Where I supplied the. At once my wife.
het leven als voorlopige oplossing
Vrijdag 6 april 2018. Brugge, Vesten - 180111. Labels: stad en ommeland. Van bij het begin. Het einde van Homo sapiens. Als diersoort lijkt Sapiens. 8211; een die slimmer is dan de huidige en zijn leefwereld niet kapotmaakt bijvoorbeeld, of een die niet meer ziek wordt en zelfs niet meer doodgaat, of een die, mits inplanting van een monogamie-gen, bij zijn partner blijft. ‘Voor je het weet gaan we zo uitgebreid aan Homo sapiens. Prutsen dat we uiteindelijk geen Homo sapiens. Meer zijn.’. We staan misschi...
HOME | Pascal Digital
Looking for a job. Send us your CV. All recruitment companies say the same thing it’s a fact! To register a vacancy. To search our current jobs. To have access to the best roles and vacancies across Europe. Saturday, 14 April 2018. Project Manager 50k Bens Immediate Start. Work Quotes and Sayings. Pascal Digital specialises in Executive Search and Recruitment for the IT, Banking and Operations sectors, both in the UK and mainland Europe. Pascal Digital is a niche recruitment agency specialising in provid...
Chez Pascal
Le blog de Pascal Dimassimo. Samedi 5 septembre 2009. Je viens de terminer la lecture du livre Bad Astronomy de Phil Plait. Ce livre est un recueil de mythes et légendes urbaines à propos de l'astronomie, de l'exploration spatiale et de la cosmologie. Il prend bien la peine d'expliquer la signification de plusieurs termes. Par exemple, il explique en détail qu'elle est la différence entre un météore, une météorite et un météoroïde, termes que l'on emploie souvent indifféremment. Son livre contient donc q...
A programmer's blog
Building a singleton in Java. Oct 28, 2012. Usually, I don’t use singletons that objects need to fetch using a static method. I prefer using dependency injection to give each object what it needs. But for lower level concerns, like logging or security, it is common to use singletons that are accessible from a static method. Like the way you get a logger with SLF4J. Spring AOP: Prevent advising test classes. Sep 28, 2012. Recently, I’ve been using @ContextConfiguration. Mar 28, 2011. Mar 11, 2011. Another...
A programmer's blog | The blog of Pascal Dimassimo
Skip to search - Accesskey = s. A programmer's blog. Building a singleton in Java. By pascaldimassimo on October 28, 2012. Usually, I don’t use singletons that objects need to fetch using a static method. I prefer using dependency injection to give each object what it needs. But for lower level concerns, like logging or security, it is common to use singletons that are accessible from a static method. Like the way you get a logger with SLF4J. The logger object is a singleton obtained via a static method.
pascaldimensions18.skyrock.com
Blog de Pascaldimensions18 - Blog de Pascaldimensions18 - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Pour ceux qui veulent découvrir les monde du mystère et de l'étrange soyez les bienvenu(e)s. Mise à jour :. Abonne-toi à mon blog! Ajouter cette vidéo à mon blog. N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (67.219.144.170) si quelqu'un porte plainte. Ou poster avec :. Posté le dimanche 05 juin 2011 09:30. A l'occasion de ces s...
pascaldimitri-moutongo.skyrock.com
Blog de pascaldimitri-moutongo - Blog de pascaldimitri-moutongo - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. La vie est magnifique pour moi pascal. Création : 12/07/2013 à 15:07. Mise à jour : 06/10/2013 à 15:40. L'auteur de ce blog n'accepte que les commentaires de ses amis. Tu n'es pas identifié. Clique ici pour poster un commentaire en étant identifié avec ton compte Skyrock. Et un lien vers ton blog ainsi que ta photo seront automatiquement ajoutés à ton commentaire. Posté le dimanche 06 octobre 2013 15:40. Clique ici pour...
Life is a shared experience
An Entrepreneur Humaniste I moved to New York in 1984 I chose Soho because it still to this day remains Artistic Human in size , sophisticated in character, everyone from everywhere is here even me from a small French village from Italian parents I found my way to Liberty right here between King and Prince in Soho. The Art of living nourish ma raison d'etre. Life is a shared Experience. L'Art de la communication , L'Arte della communicazione, The Art of communication! Service company since 2012.