
blog.frankel.ch
A Java geekNicolas Fränkel's blog
http://blog.frankel.ch/
Nicolas Fränkel's blog
http://blog.frankel.ch/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
8.3 seconds
16x16
PAGES IN
THIS WEBSITE
16
SSL
EXTERNAL LINKS
132
SITE IP
104.28.28.192
LOAD TIME
8.282 sec
SCORE
6.2
A Java geek | blog.frankel.ch Reviews
https://blog.frankel.ch
Nicolas Fränkel's blog
Tags: quality
https://blog.frankel.ch/tag/quality
Jun 19, 2016. As an ardent promoter of Mutation. I sometimes get comments that it’s too slow to be of real use. This is always very funny as it also applies to Integration Testing, or. Yet, this argument is only used againt Mutation Testing, though it cost. To setup, as opposed to the former. This will be the subject of another post. In this one, I will provide proposals on how to speed up mutation testing, or more precisely PIT. The Java Mutation Testing reference. Submodule of Netty 4.1. PIT offers a l...
Tags: webapp
https://blog.frankel.ch/tag/webapp
Polyglot everywhere - part 2. Apr 19, 2015. We set up a new project. Using the YAML flavor of Polyglot Maven. Now is time for some server-side code! I’m far from a Kotlin user - and this is not about Kotlin anyway, so please pardon my mistakes in the following. Java is still Maven’s first class citizen so the first step is to add some configuration for the Kotlin compiler to kick in. It’s quite easy, especially given the previous work on the polyglot POM:. Chfrankel.blog.polyglot.MainUi". Reusing front-e...
Tags: bug
https://blog.frankel.ch/tag/bug
Connection is a leaky abstraction. Apr 26, 2015. As junior Java developers, we learn very early in our career about the. API We learn it’s a very important abstraction because it allows to change the underlying database in a transparent manner. I’m afraid what appeared as a good idea is just over-engineering because:. I've never seen such a database migration happen in more than 10 years. Most of the time, the SQL written is not. Interface. Basically, you perhaps have been told to close the. If you’re lu...
Learning Vaadin
https://blog.frankel.ch/learning-vaadin
Mar 21, 2011. Is a Rich Internet Application framework in Java that let developers code applications in a very productive way. For more information regarding Vaadin, please consult its site. When one wants to learn a framework, one needs to read some documentation. In this regard, Vaadin provides plenty resources:. A long one-hour tutorial. The famous Book of Vaadin. Which is also available as a ready-to-print PDF. To keep it all in mind. Book with Packt Publishing. Writing is well underway, having writt...
Me
https://blog.frankel.ch/me
TOTAL PAGES IN THIS WEBSITE
16
All the colors of Java and so on: Clone all your git repositories over ssh with one small script
http://javacolors.blogspot.com/2015/05/clone-all-your-git-repositories-over.html
All the colors of Java and so on. Thursday, May 07, 2015. Clone all your git repositories over ssh with one small script. I worked on this with my colleague Rivo. Usefull when you have many projects (and many repos! Don't forget to install sshpass - sudo apt-get install sshpass. Path of your repos on server as /opt/git]. PROJECTS=`sshpass -p "$PASSWORD" ssh $USERNAME@$HOST ls -d $ROOT PATH/*.git sed -r 's/ . / /' sed -r 's/ .git/ '`. For prj in $PROJECTS. Subscribe to: Post Comments (Atom).
All the colors of Java and so on: Extract JDK 8 on Windows without the installer
http://javacolors.blogspot.com/2015/05/extract-jdk-8-on-windows-without.html
All the colors of Java and so on. Monday, May 18, 2015. Extract JDK 8 on Windows without the installer. That's something useful when you don't have admin rights on your machine. So :. Download the JDK from Oracle (the Windows version of course). Open the file with the archiver (7-zip) and extract its content. You will get a file tools.zip, extract it in a dedicated folder. This will extract all the jdk files except jar files. Enjoy your new jdk! Subscribe to: Post Comments (Atom). View my complete profile.
java.lang.Blog: About
http://javalangblog.blogspot.com/p/about.html
Aiming to contribute and give back to the development community and create an open discussion about technology, I declare today the birth of java.lang.Blog! Seeking a theoretical approach without forgetting the practical aspects, the java.lang.Blog will focus on the following topics:. I appreciate everybody’s participation thought comments, criticisms and suggestions witch you may present in the posts or mailing geraldomacielneto@gmail.com. Visualizar meu perfil completo. Scrum e XP das trincheiras.
Getting Cirrius: September 2012
http://www.gettingcirrius.com/2012_09_01_archive.html
Meandering thoughts about technology and management. Sunday, September 30, 2012. Introducing "CLAVIN" (Cartographic Location And Vicinity INdexer). What is a Geotagger? If your work involves finding meaning in unstructured text, you may have at one time or another, worked with semantic technologies like entity extraction. Promotes words in text to concepts; this is typically realized in the form of entity tagging. For years the Geotagging market has been dominated by a very small number couple commercial...
Getting Cirrius: Calculating Similarity (Part 1): Cosine Similarity
http://www.gettingcirrius.com/2010/12/calculating-similarity-part-1-cosine.html
Meandering thoughts about technology and management. Sunday, December 5, 2010. Calculating Similarity (Part 1): Cosine Similarity. Dot Product, 2010). Cosine similarity is literally the angular difference between two vectors. Cosine Similarity is expressed by the formula:. Cosine Similarity, 2010). For those of you allergic that don't speak "mad mathematician" (like me), to calculate the cosine similarity, we need to:. Take the dot product of vectors A and B. Calculate the magnitude of Vector A. In the c...
All the colors of Java and so on: February 2014
http://javacolors.blogspot.com/2014_02_01_archive.html
All the colors of Java and so on. Friday, February 28, 2014. Automatic date stamping of Hibernate entities. That's what I was looking for today and I found it on Stackoverflow. You can do that with three elegant JPA annotations :. PrePersist : automatically invoke the annoted method before persist the new entity. PreUpdate : automatically invoke the annoted method before update the existing entity. Enjoy Hibernate and JPA! Here is the example I found :. And have all your entities extend it, for instance:.
All the colors of Java and so on: June 2015
http://javacolors.blogspot.com/2015_06_01_archive.html
All the colors of Java and so on. Thursday, June 25, 2015. Override local changes with Git. For all SVN users like me, Git is great but a little bit more complex than all stuffs. Imagine, you want to get code from your remote repo and override your local changes (everything your commited on your local repo). This can be done in two step :. Reset your local repo with last fetched head : git reset - hard FETCH HEAD. Then update local repo with remote one and merge changes : git pull. Friday, June 12, 2015.
All the colors of Java and so on: June 2014
http://javacolors.blogspot.com/2014_06_01_archive.html
All the colors of Java and so on. Friday, June 13, 2014. Find Oracle apparent deallocks. Your application is blocked? Perhaps it is due to deadlock on database objects. So, if you have an Oracke DB Server, you can verify this with these few requests I found on the web :. List blocked sessions : select sid, serial#, username, command, lockwait, osuser from v$session where lockwait is not null. Kill concerned session (you need to have dba priviledges) : alter system kill session 'sid, serial#';.
Quantum Leap: The JVM finally moving forward
http://quantleap.blogspot.com/2012/04/jvm-finally-moving-forward.html
On Scala, Functional Programming, Distributed Computing, architecture, DDD, DevOps and building resilient large scale distributed financial systems. Saturday, 28 April 2012. The JVM finally moving forward. After almost a year of delay, Java 7 has been officially released for the Mac. See Java 7 Mac OS X download. In order to use it in Eclipse and others, bear in mind that the PATH is now:. Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents. This is my /etc/hosts. 255255.255.255 broadcasthost. Fellow twe...
Quantum Leap: November 2011
http://quantleap.blogspot.com/2011_11_01_archive.html
On Scala, Functional Programming, Distributed Computing, architecture, DDD, DevOps and building resilient large scale distributed financial systems. Sunday, 6 November 2011. This weekend I've been trying to write some microbenchmarks and discovered a large differences between different implements of the same problem: create a list of 10 million objects and print only the ones that are modulo of a million. Subscribe to: Posts (Atom). View my complete profile. Scala maven intellij ide java. Fellow tweeter ...
TOTAL LINKS TO THIS WEBSITE
132
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required. For online documentation and support please refer to nginx.org. Commercial support is available at nginx.com. Thank you for using nginx.
Frank Delaney
Feb 23, 2017. Its with tremendous sadness that we announce the passing of Frank Delaney. He was a true champion of books and the literary life. Witty, kind, erudite, charming, loyal, loving. Well miss you always, Frank. - Franks team. You can read the moving tribute to Frank below by clicking the image. Posted by Frank's Team at 8:35 AM in Blog. Feb 20, 2017. Delay in the Podcast. Dear Friends, listeners, and Joyce lovers,. Thanks for your patience,. Posted by Frank's Team at 11:54 AM in Re: Joyce. Click...
FRANK DEL CORRAL BLOG - FRANK DEL CORRAL BLOG
Thank you so much for visiting my blog. Here, you will find my current portfolio, as well as some of my favorite photos and memories. Click on an image and you will be taken to that particular gallery. All galleries scroll to the right. SHELLY JEWELLS (SPAIN WEDDING). FRANK DELCORRAL 2013 ALL RIGHT RESERVED FrankDelCorral.com. Site Made By Carlos. The item was added to the cart.
www.blog.frankdicks.de
Willkommen auf www.blog.frankdicks.de. Für diese Domain steht momentan keine Website zur Verfügung.
Blog Franke Italia
Rivenditori autorizzati Frames by Franke. 11 gennaio, 2017. La collezione Frames by Franke vi ha conquistati? Menù di Natale…è ora del dolce, con i tartufi al pandoro. 20 dicembre, 2016. Natale fa rima con dolci e golosità! Ecco un'idea sfiziosa per servire il pandoro! Menù di Natale….secondo piatto: salmone al forno. 12 dicembre, 2016. Il viaggio culinario nelle ricette natalizie continua. che ne dite di prepare del salmone come seconda portata? 6 dicembre, 2016. A proposito di …. Rollmat. Zuppa di zucc...
A Java geek
Mar 18, 2018. Mar 11, 2018. Feature lifecycle in Java. Today, I'd like to tackle a subject that seems to be misunderstood by a sizable fraction of developers, the lifecycle of features. Suppose you design a language, a framework, a library, anything that is provided to third-partys. Because you did a good job, this software is now widely used. Mar 4, 2018. Dynamic casting in Java. Feb 25, 2018. Programming by contract on the JVM. Feb 18, 2018. Authentication alternatives in Java EE webapps. Feb 11, 2018.
Costume & Halloween Blog – Frankel’s Costume
Costume and Halloween Blog. How To Become A Ventriloquist In One Hour. June 21, 2012. Playing with puppets (no matter how old or young) is fun and simple to do. Little girls/ boys have forever enjoyed dolls, teddy bears, toy soldiers–by making them talk the talk and walk the walk. And that is basic. As natural to children as breathing. Sit sideways to audience but with your puppet facing forward at them. Look at the dummy when he speaks but look at the audience when you respond. When you reply or explain...
This site is temporarily unavailable
Powerful Web Hosting and Domain Names for Home and Business. Click here to chat with a live specialist. This site is temporarily unavailable. If you are the owner of this site, please contact customer support. Follow us on Twitter.
BLOG.FRANKENSCHÖN.DE
Das Frankenland von seiner schönsten Seite. Abgelegt unter: Politik / Geschichte. Zu allem Übel, kommt noch hinzu, dass der Initiator des Volksentscheides aus Passau kommt auch noch Frankenberger heißt obwohl er mit Franken gar nichts zu tun hat. Da sieht man mal wieder, zu welchem Unsinn Menschen fähig sind, die sich nicht von handfester Arbeit ernähren wollen wie beispielsweise der ehem. Student und Politiker der großen Volkspartei ÖDP Sebastian Frankenberger. Nur die Dummen lassen sich angesichts ekla...
Lake Conroe Real Estate | The Marion Franke Team Blog
Lake Conroe Real Estate. The Marion Franke Team Blog. Search Lake Conroe MLS. Lake Conroe Subdivisions Map! The Marion Franke Team would like to introduce our recently improved Lake Conroe Subdivision Map! We have added feature-specific placemarks that. Please mark your calendars for May 17, 2012! That is the day Realtors from across America are conducting a. Montgomery County Real Estate. Home Sales in the Montgomery County area went way up over the last month due to home buyers taking advantage. If you...
frank museum showcases - blog • Museum Display Showcases - Uniquely Frank
Frank museum showcases - blog. Frank Europe proudly presents his new partner Gaylord for North America. Gaylord Archival launched the Frank showcase system to its customers all over the USA and Canada. We wish them the best of luck! Http:/ www.gaylord.com/frank. X3cdiv id= 'tumblr video container 124326306188 ' class= 'tumblr video container ' style= 'width:500px;height:375px; ' x3e x3ciframe src= 'https:/ www.tumblr.com/video/frank-showcases/124326306188/500/ ' style= 'display:block;background-...X3cdi...
SOCIAL ENGAGEMENT