
theholyjava.wordpress.com
The Holy JavaBuilding the right thing, building it right, fast (by Jakub Holý)
http://theholyjava.wordpress.com/
Building the right thing, building it right, fast (by Jakub Holý)
http://theholyjava.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
1.2 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
11
SSL
EXTERNAL LINKS
83
SITE IP
192.0.78.12
LOAD TIME
1.156 sec
SCORE
6.2
The Holy Java | theholyjava.wordpress.com Reviews
https://theholyjava.wordpress.com
Building the right thing, building it right, fast (by Jakub Holý)
Code Quality « The Holy Java
https://theholyjava.wordpress.com/code-quality
Building the right thing, building it right, fast. My name is Jakub Holy and I’m a software craftsmanship enthusiast and a (mainly JVM-based) developer since 2005, consultant, and occasionally a project manager, working currently with TeliaSonera AS. In Norway. More under About. All content on this blog is licensed, unless stated otherwise, under CC BY 3.0. Enter your email to receive notifications of new posts. Articles by Kent Beck. Recommended readings of lately. Wonders of Code: Good x Bad Code.
Craft « The Holy Java
https://theholyjava.wordpress.com/craft
Building the right thing, building it right, fast. My name is Jakub Holy and I’m a software craftsmanship enthusiast and a (mainly JVM-based) developer since 2005, consultant, and occasionally a project manager, working currently with TeliaSonera AS. In Norway. More under About. All content on this blog is licensed, unless stated otherwise, under CC BY 3.0. Enter your email to receive notifications of new posts. Articles by Kent Beck. Recommended readings of lately. Wonders of Code: Good x Bad Code.
Wiki « The Holy Java
https://theholyjava.wordpress.com/wiki
Building the right thing, building it right, fast. My name is Jakub Holy and I’m a software craftsmanship enthusiast and a (mainly JVM-based) developer since 2005, consultant, and occasionally a project manager, working currently with TeliaSonera AS. In Norway. More under About. All content on this blog is licensed, unless stated otherwise, under CC BY 3.0. Enter your email to receive notifications of new posts. Articles by Kent Beck. Recommended readings of lately. Wonders of Code: Good x Bad Code.
Cool Tools: Fault Injection into Unit Tests with JBoss Byteman – Easier Testing of Error Handling « The Holy Java
https://theholyjava.wordpress.com/2012/02/25/cool-tools-fault-injection-into-unit-tests-with-jboss-byteman-easier-testing-of-error-handling
Building the right thing, building it right, fast. My name is Jakub Holy and I’m a software craftsmanship enthusiast and a (mainly JVM-based) developer since 2005, consultant, and occasionally a project manager, working currently with TeliaSonera AS. In Norway. More under About. All content on this blog is licensed, unless stated otherwise, under CC BY 3.0. Enter your email to receive notifications of new posts. Articles by Kent Beck. Recommended readings of lately. Wonders of Code: Good x Bad Code.
Webapp Blue-Green Deployment Without Breaking Sessions/With Fallback With HAProxy « The Holy Java
https://theholyjava.wordpress.com/2013/09/05/blue-green-deployment-without-breaking-sessions-with-haproxy-and-jetty
Building the right thing, building it right, fast. My name is Jakub Holy and I’m a software craftsmanship enthusiast and a (mainly JVM-based) developer since 2005, consultant, and occasionally a project manager, working currently with TeliaSonera AS. In Norway. More under About. All content on this blog is licensed, unless stated otherwise, under CC BY 3.0. Enter your email to receive notifications of new posts. Articles by Kent Beck. Recommended readings of lately. Wonders of Code: Good x Bad Code.
TOTAL PAGES IN THIS WEBSITE
11
Daniel Kolman: Jak správně pojmenovat test
http://blog.kolman.cz/2013/02/jak-spravne-pojmenovat-test.html
Jak správně pojmenovat test. Na názvu testu záleží! Může se to zdát jako nepodstatná banalita, ale není. Správná metoda pojmenovávání testů zlepší čitelnost testů a pomáhá psát čistší kód. Názvy vašich testů prozrazují, jaký máte přístup k testování. Vymýšlet názvy tříd a metod je těžké, dokonce tak těžké, že to zmiňuje i nejklasičtější anektoda o informatice: "There are only two hard problems in Computer Science: cache invalidation, naming things, and off-by-one errors.". Co metoda, to test. V dalším lo...
Link: The madness of layered architecture | Wonders of Code
https://wondersofcode.wordpress.com/2014/07/11/link-the-madness-of-layered-architecture
A study of good and bad code – to become better programmers. Link: The madness of layered architecture. Johannes Brodwall: The madness of layered architecture. This entry was posted in General. July 11, 2014. Link: Insane if condition in GCC →. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out.
Simple or Complex? Familiar Imperative Code Or Makes-Me-Think Declarative One? | Wonders of Code
https://wondersofcode.wordpress.com/2015/11/20/simple-or-complex-familiar-imperative-code-or-makes-me-think-declarative-one
A study of good and bad code – to become better programmers. Familiar Imperative Code Or Makes-Me-Think Declarative One? We have had a heated discussion today about the two alternatives of JavaScript code that filters out elements with a different. The imperative solution (1) is familiar to all of us and thus easy to grasp. However the declarative solution (2) is not familiar, we have to think about what it does, we need to know that. Filter({bundle: {product: {type: filter.hardwareType} }). PS: I admitt...
Declarative Beats Imperative: Transforming Data In JavaScript | Wonders of Code
https://wondersofcode.wordpress.com/2015/03/13/declarative-beats-imperative-transforming-data-in-javascript
A study of good and bad code – to become better programmers. Declarative Beats Imperative: Transforming Data In JavaScript. For example, here is some JSON data we get back from a REST service:. ProductId: 42, type: TEAPOT, subProducts: [{ productNumber: ch132, name: Kyusu Teapot, dealerDetails: [ { dealerGroup: webshop, rank: 1 } ]}]}];. And here is what we would like to transform it into:. My first implementation was functional, using the wonderful functional library lodash. The problem was that it was ...
Let the API Do the Hard Work: Promises in JavaScript with Q | Wonders of Code
https://wondersofcode.wordpress.com/2015/01/15/let-the-api-do-the-hard-work-promisses-in-javascript-with-q
A study of good and bad code – to become better programmers. Let the API Do the Hard Work: Promises in JavaScript with Q. That it already uses. The code presented below does this:. Asynchronously fetch users from MongoDB. For each user, asynchronously fetch her stats from Fitbit (skip those that fail to fetch). Return a promise of an array with users including their stats. Since the code does a lot and might be thus difficult to read, here is a simplified version:. Here is the original code:. Use languag...
Link: DRY vs Write Explicit Tests | Wonders of Code
https://wondersofcode.wordpress.com/2016/04/11/link-dry-vs-write-explicit-tests
A study of good and bad code – to become better programmers. Link: DRY vs Write Explicit Tests. DRY vs WET Arlo Being Bloody Stupid. Write Explicit Tests – Following WET just asks What is each test attempting to say? How could we say that most clearly? An awesome example on re-writing a test into a much, much better one. It also demonstrates well that writing a good test is an iterative and challenging task – but the result is absolutely worth the effort. This entry was posted in Testing. April 11, 2016.
Jakub Holý | Wonders of Code
https://wondersofcode.wordpress.com/author/theholyjava
A study of good and bad code – to become better programmers. Author Archives: Jakub Holý. I’m a JVM-based developer since 2005, consultant, and occasionally a project manager, working currently with Iterate AS in Norway. Link: DRY vs Write Explicit Tests. DRY vs WET Arlo Being Bloody Stupid. Write Explicit Tests – Following WET just asks What is each test attempting to say? How could we say that most clearly? This entry was posted in Testing. April 11, 2016. Keeps only bundles that have the given. 11/201...
Link: Refactoring to an Adaptive Model – Martin Fowler | Wonders of Code
https://wondersofcode.wordpress.com/2015/11/12/link-refactoring-to-an-adaptive-model-martin-fowler
A study of good and bad code – to become better programmers. Link: Refactoring to an Adaptive Model – Martin Fowler. Martin Fowler’s Refactoring to an Adaptive Model. 11/2015 – replacing imperative logic with a declarative one, with rules encoded in JSON so that they can easily be shared across platforms and updated without re-installation. A few other nice refactoring points too. This entry was posted in General. November 12, 2015. Declarative Beats Imperative: Transforming Data In JavaScript.
Resources | changearc
https://changearc.wordpress.com/resources
Change, Design, Architecture, Programming and Other Things . . . List of various women on Twitter who are well worth following. Click to share on Twitter (Opens in new window). Click to share on LinkedIn (Opens in new window). Click to share on Google (Opens in new window). Click to share on Reddit (Opens in new window). Click to share on Tumblr (Opens in new window). Click to share on Pinterest (Opens in new window). Click to email (Opens in new window). Click to print (Opens in new window). Random ramb...
TOTAL LINKS TO THIS WEBSITE
83
Islam and Muslims
Dispelling myths, clarifying half-truths and informing what is right. Friday, October 10, 2014. Ababil and Abraha: Historical evidence to Holy Quranic verses on protection of Holy Kaaba. October 10, 2014). A group of young Saudi history enthusiasts has retraced the path of the People of the Elephant who tried to destroy the Holy Kaaba centuries ago. Some of the most important historical sites along the way included inscriptions of elephants on rocks in the Al-Qahr Mountain, southeast of Tathlith; an old ...
The Holy Islam
IN THE NAME OF ALLAH MOST GRACIOUS MOST MERCIFUL. Islamic content for Muslims and Non-Muslims. Analysis of Compaigns And Movements of The Last Prophet (Peace Be Upon Him). Literally means a campaign or a movement, it is like a cruise or walk towards a place to make sure there is no trouble and threat. They were of two types:. Are those in which Prophet Muhammad (peace be upon him) himself participated and. Are those in which he did not participate but other Muslims did. Is the name of first day battle and.
This site is under development
This site is under development
The Holy jasper | The Power of God Right Now
The Power of God Right Now. July 2, 2014. Your True Potential is Outside the Box. 8220;Thoughts precede actions so think what you want and your actions will chase after it.”. Many people tend to live inside a box. A box of limitations. You are capable of so much more! It stems from a certain way of thinking. You can remove all limitations by simply changing a few words in the things you tell yourself. Here are some examples of limiting beliefs versus unlimited:. Limitation: It is impossible! Your desired...
The Holy Java
Building the right thing, building it right, fast. My name is Jakub Holy and I’m a software craftsmanship enthusiast and a (mainly JVM-based) developer since 2005, consultant, and occasionally a project manager, working currently with TeliaSonera AS. In Norway. More under About. All content on this blog is licensed, unless stated otherwise, under CC BY 3.0. Enter your email to receive notifications of new posts. Articles by Kent Beck. Recommended readings of lately. Wonders of Code: Good x Bad Code.
The Holy Jewish Moshiach Home Page
The Holy Jewish Moshiach is here now and there isn't anything. This world can do about it, saith the LORD thy GOD of Israel! The Holy Jewish Moshiach will speak and do what. Almighty GOD of Israel wants him to speak and do, saith the. LORD thy GOD of Israel. The Holy Jewish Moshiach will speak the words. I the LORD thy GOD of Israel wants him to speak and I will have. MY Holy Spiritual Presence within every word that he speaks,. Saith the LORD thy GOD of Israel! Thy GOD of Israel! Conception and I molded...
TheHolyK - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 4 Years. This deviant's full pageview. Last Visit: 17 weeks ago. This is the place where you can personalize your profile! Window&#...
theholykabalisticland.com
The Holy Kale | The Best in Organic, Raw, Vegan and Vegetarian Health and Wellness: eco-travel, food, supplements and toxin-free body care
Inspiring Your Quest for Health. Question of the Day. THK Tonic Herbs Guide. The Miracle Kidney Cleanse Book. Kidney Friendly Food Shopping Guide. Miracle Kidney Cleanse References. Order My Kidney Cleanse Book :). Join me on Instagram! Getting Off Birth Control Pills? Posted on Mar 6, 2013. The Birth Control Pill. Posted on Mar 5, 2012. IUD: Is the Health Risk worth the Benefits? Posted on Jan 31, 2013. Posted on Nov 9, 2011. Green Superfood Smoothie: A How To. Posted on Apr 22, 2013. On Jun 18, 2015.
ALL HAIL HOLY
SOCIAL ENGAGEMENT