draconianoverlord.com draconianoverlord.com

DRACONIANOVERLORD.COM

Draconian Overlord

Variations on a State Machine. Are Classes and Prototypes that Different? Micro Service Testing at Scale. Using Given/When/Then For Tests. Dealing with Selenium API Gotchas. The Futility of Cross-System Integration Testing. Tools, Productivity, and Investing in Yourself. The Curse of Webapps Being Visual for TDD. Writing Emails Asking for Help. Obsessively Simple Test Values. The One True Way Of Indentation. Staffing a Front-End Team. Stuck on a Dead Framework. The Holy Grail of Database Testing. Abstrac...

http://www.draconianoverlord.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR DRACONIANOVERLORD.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

August

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.6 out of 5 with 10 reviews
5 star
2
4 star
6
3 star
0
2 star
0
1 star
2

Hey there! Start your review of draconianoverlord.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.1 seconds

CONTACTS AT DRACONIANOVERLORD.COM

Stephen Haberman

909 Ed●●●●●●d Blvd

Pap●●●ion , NE, 68046

UNITED STATES

1402●●●●2231
st●●●●●@exigencecorp.com

View this contact

Stephen Haberman

909 Ed●●●●●●d Blvd

Pap●●●ion , NE, 68046

UNITED STATES

1402●●●●2231
st●●●●●@exigencecorp.com

View this contact

Stephen Haberman

909 Ed●●●●●●d Blvd

Pap●●●ion , NE, 68046

UNITED STATES

1402●●●●2231
st●●●●●@exigencecorp.com

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
2008 April 16
UPDATED
2014 May 26
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

DOMAIN AGE

  • 17

    YEARS

  • 3

    MONTHS

  • 7

    DAYS

NAME SERVERS

1
ns1.dynadot.com
2
ns2.dynadot.com

REGISTRAR

DYNADOT, LLC

DYNADOT, LLC

WHOIS : whois.dynadot.com

REFERRED : http://www.dynadot.com

CONTENT

SCORE

6.2

PAGE TITLE
Draconian Overlord | draconianoverlord.com Reviews
<META>
DESCRIPTION
Variations on a State Machine. Are Classes and Prototypes that Different? Micro Service Testing at Scale. Using Given/When/Then For Tests. Dealing with Selenium API Gotchas. The Futility of Cross-System Integration Testing. Tools, Productivity, and Investing in Yourself. The Curse of Webapps Being Visual for TDD. Writing Emails Asking for Help. Obsessively Simple Test Values. The One True Way Of Indentation. Staffing a Front-End Team. Stuck on a Dead Framework. The Holy Grail of Database Testing. Abstrac...
<META>
KEYWORDS
1 draconian overlord
2 oppressing software entropy
3 posts
4 compassionate code reviews
5 gmail filter tips
6 first principles
7 musings on flatpack
8 spark size tracking
9 moving to gradle
10 jooq went commercial
CONTENT
Page content here
KEYWORDS ON
PAGE
draconian overlord,oppressing software entropy,posts,compassionate code reviews,gmail filter tips,first principles,musings on flatpack,spark size tracking,moving to gradle,jooq went commercial,spark report patterns,east oriented programming,spark test
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Draconian Overlord | draconianoverlord.com Reviews

https://draconianoverlord.com

Variations on a State Machine. Are Classes and Prototypes that Different? Micro Service Testing at Scale. Using Given/When/Then For Tests. Dealing with Selenium API Gotchas. The Futility of Cross-System Integration Testing. Tools, Productivity, and Investing in Yourself. The Curse of Webapps Being Visual for TDD. Writing Emails Asking for Help. Obsessively Simple Test Values. The One True Way Of Indentation. Staffing a Front-End Team. Stuck on a Dead Framework. The Holy Grail of Database Testing. Abstrac...

INTERNAL PAGES

draconianoverlord.com draconianoverlord.com
1

Spark Report Patterns

http://www.draconianoverlord.com/2014/02/12/spark-patterns.html

We’ve been writing a lot of Spark. We are big fans of Spark, as it’s basically a faster, testable, type-safe alternative to Hive. Over the course of writing many jobs, we’ve established a few patterns that have been working well. Separate Job vs. Report Classes. Unit testing our reports is a big reason we like Spark, and being able to unit test Spark logic relies on feeding your logic fake RDDs, instead of real tons of real data from the cluster RDDs. So, while a naive Spark report might look like:.

2

What I Would Remove from GWT--Basically Everything

http://www.draconianoverlord.com/2014/02/22/what-id-remove-from-gwt.html

What I Would Remove from GWT Basically Everything. At the 2013 GWT.Create conference, one the audience questions to the steering committee members was What would you remove from GWT? I bungled my answer, hemming and hawing, and eventually saying um, Request Factory? Which was a terrible answer. Of course, the next day I realized what I should have said: generators. But now, a few months later, I’ll go further: I would remove basically everything. Here’s a list of things I don’t think need to be in GWT:.

3

From xmonad to i3 on Ubuntu 14.04

http://www.draconianoverlord.com/2014/05/26/from-xmonad-to-i3.html

From xmonad to i3 on Ubuntu 14.04. For several years now, I’ve been a faithful user of xmonad. The Linux tiling window manager that is written in Haskell. Why Move From xmonad? I really enjoyed xmonad, and want to still highly recommend it, but I consistently ran into two issues:. I consider myself an expert-level programmer, but after years of usage, I simply did not understand how my xmonad config file (which is a Haskell program) actually worked. Here is an example from my config file:. Xmonad has alw...

4

Trait Rules of Thumb

http://www.draconianoverlord.com/2014/12/29/trait-rules-of-thumb.html

Trait Rules of Thumb. We’ve been using Scala for quite awhile at work, and I think one of the tricky things to figure out is when to use/not use a trait. Personally, I have two rules of thumb that I apply:. Is the trait purposefully adding useful methods to the class’s public API? Does the trait’s implementation use instance data from the class? Is so, use the trait. If not, you’re likely, IMO, abusing traits as a fancy way to organize code that is not coherently tied to the conceptual type hierarchy.

5

Google's Build System is a Giant Maven Repo

http://www.draconianoverlord.com/2013/03/23/google-giant-maven-repo.html

Google’s Build System is a Giant Maven Repo. We occasionally mull over our build system and how it could be improved. Tangentially, right now our build is based on Ant and Ivy. Yes, yes, I was admittedly skeptical at first too, but our per-project. Files are less code than most Maven. Files I’ve seen. We use an internal fork of Spring’s common-build project, and it is a surprisingly nice setup. These Google blog posts describe an interesting setup where:. Conceptually, there is one large. Input hash of y...

UPGRADE TO PREMIUM TO VIEW 15 MORE

TOTAL PAGES IN THIS WEBSITE

20

LINKS TO THIS WEBSITE

recursor.blogspot.com recursor.blogspot.com

recursor: Tim Bray on the Android Ecosystem

http://recursor.blogspot.com/2011/06/tim-bray-on-android-ecosystem.html

Tim Bray on the Android Ecosystem. Went to a presentation by Tim Bray. Here are my notes:. Indication of the state of the Economy:. Who's looking to hire people? Who's looking for a job? Stand up and talk to each other afterward. Explains his role: I'm an advocate, not an evangelist. Tell me about your experiences so I can take them back to the product group. More than 4BB mobile phones in the world today. Only 5 years to get to 225MM users for iOS. App upgrades (Oracle is great at this). Multiple APK su...

recursor.blogspot.com recursor.blogspot.com

recursor: Panoramic Experiment

http://recursor.blogspot.com/2010/06/panoramic-experiment.html

Six different pictures shot with a Canon XSi, and an EF 50mm prime lens. White balance set to 6000K (cloudy). Net result, stitched with Hugin. Organic things (like grass, and flowers and such) that tend to move here and there or have tiny edges that recast shadows in variant ways tend to cause a little bit of trouble, but Hugin does a great job in overcoming them. Subscribe to: Post Comments (Atom). Simple template. Powered by Blogger.

recursor.blogspot.com recursor.blogspot.com

recursor: A view from the Oyster Dome

http://recursor.blogspot.com/2011/06/view-from-oyster-dome.html

A view from the Oyster Dome. Mid way to the top of the Oyster Dome last weekend with the Ogden's. Four images stitched with Hugin. Click image to expand to a much higher resolution PNG. Subscribe to: Post Comments (Atom). Software Stabilization for Video! Tim Bray on the Android Ecosystem. Visualizing ten months of work in under two minute. A view from the Oyster Dome. Simple template. Powered by Blogger.

recursor.blogspot.com recursor.blogspot.com

recursor: Masters in CS: worth it after professional experience?

http://recursor.blogspot.com/2011/04/masters-in-cs-worth-it-after.html

Masters in CS: worth it after professional experience? I'll be defending my Master's thesis on May 6th, and if all goes well I'll be graduating with full pomp and circumstance a few weeks thereafter. Hoping that these notes on going back to school to get a Master's in CS after working for many years may prove useful to someone else, I figured it should be captured before I (hopefully, fingers crossed) graduate. Learning on my own. Learning on the job. Put delicately, work had stopped challenging me as mu...

recursor.blogspot.com recursor.blogspot.com

recursor: Pulling data out of the air

http://recursor.blogspot.com/2008/04/pulling-data-out-of-air.html

Pulling data out of the air. About a month ago, I bought a real small weather station from AAG Electronica. The unit I got has three sensors: temperature, wind speed and wind direction. Data is transmitted from the station using the 1-Wire. Protocol. The transport that this runs on is merely a phone line, within which only two of the wires are put to use. With the station installed, I had to start collecting data. The One-Wire Weather. Project proved quite easy. In addition to a gtk UI that's useful ...

recursor.blogspot.com recursor.blogspot.com

recursor: chronicling something strange

http://recursor.blogspot.com/2010/12/chronicling-something-strange.html

I've been trying to get to Google Maps but keep getting flipped to Yahoo Maps. Trying to capture what happened in case others have experienced this in the past or are experiencing this now. First off, this looks odd:. Traceroute maps.google.com. Traceroute to maps.l.google.com (98.136.42.132), 64 hops max, 52 byte packets. 1 192168.1.1 (192.168.1.1) 10.414 ms 0.979 ms 1.009 ms. 2 73220.38.1 (73.220.38.1) 8.990 ms 8.228 ms 7.975 ms. 688695.185 (68.86.95.185) 18.711 ms. 12 ae-33-89.car3.sanjose1&#4...13 ya...

recursor.blogspot.com recursor.blogspot.com

recursor: Visualizing ten months of work in under two minutes

http://recursor.blogspot.com/2011/06/visualizing-ten-months-of-work-in-under.html

Visualizing ten months of work in under two minutes. Was written using Subversion as its version control system, I was able to run the wonderful gource. Visualizer on the version control logs. Here's the end result:. Subscribe to: Post Comments (Atom). Software Stabilization for Video! Tim Bray on the Android Ecosystem. Visualizing ten months of work in under two minute. A view from the Oyster Dome. Simple template. Powered by Blogger.

recursor.blogspot.com recursor.blogspot.com

recursor: Dilbert meets Hobbes

http://recursor.blogspot.com/2009/08/dilbert-meets-hobbes.html

Today (sadly), I was forced to use a laptop running Windows. I connected a mouse to it (using a USB port). The hardware drivers kicked in and the mouse started to work. I used the mouse to move, and click on a window. Windows informed me that a mouse had been detected and installed (after I used the aforementioned mouse to move and click on something). Stole the focus from the application I was using, after I used the mouse it so eagerly wanted to let me know it had found. Anyway.daily I have to plug...

recursor.blogspot.com recursor.blogspot.com

recursor: More juice

http://recursor.blogspot.com/2011/03/more-juice.html

Recently, I discovered a problem with wordsinmedia.com. Week 11 was not fun. There are three main parts to this system:. A database that stores stuff. A set of perl programs that acquire and process the news and store them in the database. And, a website that sits on top of the database whose backend executes within Jetty. A recent change I made that increased the number of news sources that were being polled and analyzed, caused a significant spike in resource utilization. Provision a new node. Fortunat...

UPGRADE TO PREMIUM TO VIEW 19 MORE

TOTAL LINKS TO THIS WEBSITE

28

SOCIAL ENGAGEMENT



OTHER SITES

draconianmercha.skyrock.com draconianmercha.skyrock.com

draconianmercha's blog - draconianmercha's blog - Skyrock.com

More options ▼. Subscribe to my blog. Created: 01/08/2016 at 9:11 PM. Updated: Yesterday at 7:54 PM. Whatever takes my fancy. If you want a law firm in Orewa http:/ www.trapezi.org/2015/11/20/hibiscus-coast-lawyer/. 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.14) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Thursday, 12 January 2017 at 7:54 PM.

draconianmother.deviantart.com draconianmother.deviantart.com

DraconianMother - 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 6 Months. This deviant's full pageview. Last Visit: 2 weeks ago. This is the place where you can personalize your profile! 8221; Th...

draconiannn.deviantart.com draconiannn.deviantart.com

draconiannn (Kadri Uuk) - 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')". Deviant for 8 Years. This deviant's full pageview. Last Visit: 104 weeks ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask?

draconianobservations.blogspot.com draconianobservations.blogspot.com

Draconian Observations

Security, Development, Government and More from a Scandinavian Perspective. Wednesday, April 30, 2008. Is public diplomacy an information operation? Moreover, the whole thing should be a slap oin the wrist for the media whose interest in colorful commentators sometimes exceeds their willingness to research their affiliations. The Onion caught that part brillantly:. Actual Expert Too Boring for TV". Wednesday, April 30, 2008. Links to this post. Monday, April 28, 2008. Monday, April 28, 2008. Tuesday, Apr...

draconianos.es draconianos.es

Draconianos Club House

Buscar en este sitio. You ll Never Ride Alone. Deja un mensaje en nuestro foro. Ahora nos movemos mas por Whatsapp , el whatsapps mató al foro! Aunque esto no lo actualizemos , seguimos en la carretera ahora quedamos por whatsappun saludo. Publicado a las 30 mar. 2016 2:18. Videos de IV Draconianos Wild Hogs Route 2013. Aquí tenéis los vídeo de la ruta anual draconiana de 2013https:/ vimeo.com/66551337https:/ vimeo.com/74132251. Publicado a las 10 sept. 2013 8:33. 2013 - 08 - 31 BBQ y Ruta en Lechubikers.

draconianoverlord.com draconianoverlord.com

Draconian Overlord

Variations on a State Machine. Are Classes and Prototypes that Different? Micro Service Testing at Scale. Using Given/When/Then For Tests. Dealing with Selenium API Gotchas. The Futility of Cross-System Integration Testing. Tools, Productivity, and Investing in Yourself. The Curse of Webapps Being Visual for TDD. Writing Emails Asking for Help. Obsessively Simple Test Values. The One True Way Of Indentation. Staffing a Front-End Team. Stuck on a Dead Framework. The Holy Grail of Database Testing. Abstrac...

draconianpeacock.deviantart.com draconianpeacock.deviantart.com

DraconianPeacock (Courtney) - 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')". Deviant for 3 Years. This deviant's full pageview. Last Visit: 59 minutes ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask?

draconianprinciple.tumblr.com draconianprinciple.tumblr.com

The Draconian Principle

C a s e y . W e l d o n . A r t. Hey Unloving, I Will Love You. See you in Hell, Satan. Kaden, MD 19 y.o. Biomedical Engeering and various thoughts abound. My Religion is Kindness. Humans but no humanity. This isn't happiness. Cause backstreet's got it. Wicked eyes and wicked hearts. Rihanna is bae tho. Happiness is a warm gun. Motha PRODIGY of Anime. Travis Cook by Travis Cook: The Fragrance. Bite me, hard. I want dicks flyin' in mah face. Begging for mercy, but nobody heard me. See you in Hell, Satan.

draconianpublishing.com draconianpublishing.com

Home | Draconian Publishing

E-Publish and Traditional publishing done right. The World of Blood Series. Draconian Publishing is an up and coming independent publishing house, specializing in e-book formatting, audiobook editing, and distribution. Our primary operator has over twenty years experience in all areas of the printing and publishing industry. We are taking a new approach to e-publishing. Simply helping writers to become published authors. To learn more details, please read our Submission Standards. By the end of 2016.

draconianpureblood.deviantart.com draconianpureblood.deviantart.com

DraconianPureblood (Kyle) - 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? Kiriban @ 12,345. Digital Art / Hobbyist. Deviant for 3 Years. 8 Month Core Membership. December 12, 1992. This deviant's activity is hidden. Deviant since Jan 7, 2012. Core Member until Apr 7, 2016. If we're ...

draconianqueen.deviantart.com draconianqueen.deviantart.com

DraconianQueen - 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? Traditional Art / Student. Deviant for 1 Year. 1 Week Core Membership. Daily Pageviews ». By moving, adding and personalizing widgets. Share a ...