
blog.tomekgrobel.com
My point of view - verbalisation of my thoughts : My point of viewverbalisation of my thoughts
http://blog.tomekgrobel.com/
verbalisation of my thoughts
http://blog.tomekgrobel.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
10.5 seconds
PAGES IN
THIS WEBSITE
6
SSL
EXTERNAL LINKS
10
SITE IP
85.17.145.35
LOAD TIME
10.453 sec
SCORE
6.2
My point of view - verbalisation of my thoughts : My point of view | blog.tomekgrobel.com Reviews
https://blog.tomekgrobel.com
verbalisation of my thoughts
'Why HTTP and REST are so similar?' by Tomek Grobel : My point of view
http://blog.tomekgrobel.com/2014/10/why-http-and-rest-are-so-similar
Subscribe to RSS feed. My point of view. Why HTTP and REST are so similar? Posted by Tomek Grobel. Posted on Oct - 26 - 2014. Have you ever wandered why HTTP and REST are so similar? Although officially REST was published after HTTP/1.1 it is not directly based on HTTP. So what’s going on? I think the best answer could only give us an author of REST, Roy T. Fielding. At the end Fielding asks a rhetorical question, would HTTP be RESTful if he hadn’t been involved in creating its specification. H...Java de...
'The time has come to say hello world!' by Tomek Grobel : My point of view
http://blog.tomekgrobel.com/2012/12/hello-world
Subscribe to RSS feed. My point of view. The time has come to say hello world! Posted by Tomek Grobel. Posted on Dec - 2 - 2012. I was really surprised. In about 10 minutes I had over 10 topics on the list. Then I realised that the devil’s not so black as he is painted and the best way to dispel all my doubts mentioned above is to really start a blog. And here it is. I wish you a pleasant reading, stay tuned for my next entries (that I believe will soon come). Click here to cancel reply. Send me an e-mail.
'How it would be done using paper?' by Tomek Grobel : My point of view
http://blog.tomekgrobel.com/2013/03/how-it-would-be-done-using-paper
Subscribe to RSS feed. My point of view. How it would be done using paper? Posted by Tomek Grobel. Posted on Mar - 8 - 2013. During training conducted by Greg Young. About which I wrote here. A bug and a new requirement. How it would be done using paper. After a short meeting with our business analyst everything was clear. So how it works using paper? No, this can’t be done, because everything inside patient’s file is a care documentation. So what if we add such diagnosis by mistake? Laquo; Advanced CQRS...
'Play Framework with MongoDB and ScalaTest' by Tomek Grobel : My point of view
http://blog.tomekgrobel.com/2013/10/play-framework-mongodb-scalatest
Subscribe to RSS feed. My point of view. Play Framework with MongoDB and ScalaTest. Posted by Tomek Grobel. Posted on Oct - 31 - 2013. By default in Play Framework SQL database is configured. To use document database you need to do some additional things. In my case I use MongoDB. To connect your application to it I recommend ReactiveMongo. Driver. You do not have to do much to configure it in your Play application. All you need to do is to use Play-ReactiveMongo. Database configuration for tests. So now...
'Advanced CQRS training with Greg Young' by Tomek Grobel : My point of view
http://blog.tomekgrobel.com/2013/02/advanced-cqrs-training-with-greg-young
Subscribe to RSS feed. My point of view. Advanced CQRS training with Greg Young. Posted by Tomek Grobel. Posted on Feb - 11 - 2013. Lately I participated in advanced CQRS training conducted by Greg Young. Share the post "Advanced CQRS training with Greg Young". Laquo; Why (not) to build internal frameworks. How it would be done using paper? Click here to cancel reply. Leave this field empty. Notify me of followup comments via e-mail. You can find me here. Send me an e-mail. Follow me on Twitter. Why (not...
TOTAL PAGES IN THIS WEBSITE
6
abstractionextraction.wordpress.com
kciesielski | Abstraction Extraction
https://abstractionextraction.wordpress.com/author/kciesielski
Hunting for patterns in the wild world of software development. Leveraging annotation macros to generate caching boilerplate in Scala. There are only two hard things in Computer Science: cache invalidation and naming things. 8212; Phil Karlton. This term defines the ability to cache. One pretty straightforward method is to use the decorator. First, let’s take a look at an example of some expensive function that might need caching:. To do our “manual AOP” and “weave in” the aspect ...Trait GraphBuilder { ...
abstractionextraction.wordpress.com
Will Node and Scala really dry up? | Abstraction Extraction
https://abstractionextraction.wordpress.com/2013/05/03/will-node-and-scala-really-dry-up
Hunting for patterns in the wild world of software development. Will Node and Scala really dry up? There’s a quite significant rise of buzz around Google’s Go. Programming language. Some may think that it’s just another peak of excitement coming after a period of calm because the Scala Akka / Node plateau is over. Derek Collison says. The management layers and infrastructure layers of the newer technologies that provide this cloud delivery model? Performance vs coding in javascript. The notion of reposit...
abstractionextraction.wordpress.com
Easy suite tagging with ScalaTest 2.0 | Abstraction Extraction
https://abstractionextraction.wordpress.com/2013/09/18/easy-suite-tagging-with-scalatest-2-0
Hunting for patterns in the wild world of software development. Easy suite tagging with ScalaTest 2.0. If you are using ScalaTest 1.x. And you need to tag some tests to make them easily skippable, you have to tag each method separately:. Class MySpec extends FlatSpec with ShouldMatchers { it should pass this exercise taggedAs SlowTest in { / . } it should pass another exercise taggedAs SlowTest in { / . } }. This approach has two major flaws:. It’s easy to forget about your tag. How to prepare a tag.
abstractionextraction.wordpress.com
Leveraging annotation macros to generate caching boilerplate in Scala | Abstraction Extraction
https://abstractionextraction.wordpress.com/2014/09/23/leveraging-annotation-macros-to-generate-caching-boilerplate-in-scala
Hunting for patterns in the wild world of software development. Leveraging annotation macros to generate caching boilerplate in Scala. There are only two hard things in Computer Science: cache invalidation and naming things. 8212; Phil Karlton. This term defines the ability to cache. One pretty straightforward method is to use the decorator. First, let’s take a look at an example of some expensive function that might need caching:. To do our “manual AOP” and “weave in” the aspect ...Trait GraphBuilder { ...
abstractionextraction.wordpress.com
Dynamic queries in Rogue | Abstraction Extraction
https://abstractionextraction.wordpress.com/2013/07/12/dynamic-queries-in-rogue
Hunting for patterns in the wild world of software development. Dynamic queries in Rogue. I’ve spent some time googling for information about how to build Rogue queries dynamically but surprisingly I couldn’t find any straightforward answer. This is why I created following short post describing how to do it. An usual query may look like this:. UserRecord where ( .surname eqs "Gates") and ( .age eqs 20) limit(5) fetch(). What if we want to add the our criteria conditionally? July 12, 2013. You are comment...
abstractionextraction.wordpress.com
Handling services that require explicit shutdown in Scala | Abstraction Extraction
https://abstractionextraction.wordpress.com/2014/06/02/handling-services-that-require-explicit-shutdown-in-scala
Hunting for patterns in the wild world of software development. Handling services that require explicit shutdown in Scala. Tail -f development.log. Based modules and having a single centralized. Closing them. In this post I briefly go through the experimental shutdownables API. This entry was posted in Uncategorized. June 2, 2014. A few hints about Scala sequences. Leveraging annotation macros to generate caching boilerplate in Scala →. Leave a Reply Cancel reply. Enter your comment here. Jarek Bajak: Wo...
abstractionextraction.wordpress.com
A few hints about Scala sequences | Abstraction Extraction
https://abstractionextraction.wordpress.com/2014/04/12/a-simple-view-of-scala-sequences
Hunting for patterns in the wild world of software development. A few hints about Scala sequences. This blog post is inspired by a cool talk The Dark Side of Scala. Given by Tomek Nurkiewicz on Scalar. Conference. I’m going to focus on one particular problem he mentioned – confusing Scala sequence types like. As non-sequential types like. Are pretty straighforward to use, let’s put them aside for now. Q: What type should my API accept as input? As general as possible. In most cases this will be. Is indee...
abstractionextraction.wordpress.com
Hello | Abstraction Extraction
https://abstractionextraction.wordpress.com/hello
Hunting for patterns in the wild world of software development. Passion: All about software engineering, growing elegant code and eradicating boilerplate. Continuously learning how to tame chaos and deliver solid software. 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. Dynamic queries in Rogue.
TOTAL LINKS TO THIS WEBSITE
10
Blog | Tomáš Tomeček's blog
Super easy, super fast way to install your VMs. Posted by: Tomáš Tomeček. 11 months, 2 weeks ago. If you hate a process of spinning new VMs same as I do, read on. I've discovered a fully automatic way of installing machines with libvirt. It's a combination of kickstart and virt-install bundled together in a very simple shell script. No voodoo. Posted by: Tomáš Tomeček. 11 months, 3 weeks ago. Can you meet my challenge? Running nvidia card with proprietary drivers. Posted by: Tomáš Tomeček. Page 1 of 2.
Tomedes Smart Human Translation, 24/7 Reliable Service
US: 1 877 774 8914. Why your company website translation should be a priority in 2017. February 8, 2017 – 9:46 am. Filed under Corporate Translation. Your company website allows you to showcase your products and service to customers around the world. Whatever messages your brand wishes to deliver, your website is the vehicle for doing so. Many businesses expend a great deal of time. 5 documents your company should translate today. January 25, 2017 – 8:01 am. Filed under Corporate Translation. Why it̵...
Default Parallels Plesk Panel Page
Web Server's Default Page. This page is generated by Parallels Plesk Panel. The leading hosting automation software. You see this page because there is no Web site at this address. You can do the following:. Create domains and set up Web hosting using Parallels Plesk Panel. Parallels is a worldwide leader in virtualization and automation software that optimizes computing for consumers, businesses, and Cloud services providers across all major hardware, operating systems, and virtualization platforms.
Real Estate News - Everything you wanted to know about real estate in one place
Phone: 609-987-8889 x 1319. Toll Free: 888-817-7383 x 1319. 100 Canal Pointe Blvd. - Suite 120. Work with a Buyer Agent. July 21st, 2014. Hire a buyer agent! Finding a home that meets the buyerâ s needs. Structuring a strong offer. Navigating through the inspection contingency. Assisting with the mortgage process. Helping to prepare for the closing. Work with a Buyer Agent. Licensed in Pennsylvania, New Jersey.
長久手市 東名接骨院・鍼灸院ブログ
11/26) 即効 びっくりポンの世界 肩こり 腰痛. Https:/ www.instagram.com/seikoh.i489/. Posted by tomeibs at 08:32 一般. Posted by tomeibs at 18:51 一般. 即効 びっくりポンの世界 肩こり 腰痛. FPMプレス療法 という ツボ刺激療法 刺さない鍼治療 があります。 微弱直流電気鍼 で患部をアルカリ化した上で、 FPMプレス療法 をするとさらに効果的です。 Posted by tomeibs at 09:19 一般. Posted by tomeibs at 13:01 Comment(0). Posted by tomeibs at 16:58 一般.
My point of view - verbalisation of my thoughts : My point of view
Subscribe to RSS feed. My point of view. Why HTTP and REST are so similar? Have you ever wandered why HTTP and REST are so similar? Although officially REST was published after HTTP/1.1 it is not directly based on HTTP. So what's going on? I think the best answer could only give us an author of REST, Roy T. Fielding. Play Framework with MongoDB and ScalaTest. How it would be done using paper? Advanced CQRS training with Greg Young. Lately I participated in advanced CQRS training conducted by Greg Young&#...
blog.tomekmichalski.pl
Witaj na stronie blog.tomekmichalski.pl. Aby zmienić wyświetlaną stronę, wgraj swoje pliki do folderu /home/elektroni/domains/tomekmichalski.pl/public html usuwając wcześniej plik index.shtml. Data utworzenia: Wednesday, 28-Jan-2015 19:47:08 CET. Nie jesteś naszym Klientem? Zobacz co możemy Ci zaoferować. Lub od razu zamów u nas testowy serwer. Zamów jedną z usług. Napisz jeśli masz problem.
Index of /
Středa, 1. dubna 2009. Stáhnout Sponsored by Destiny od Slagsmalsklubben mp3. Sponsored by Destiny - Slagsmalsklubben video. Tohle video není oficiální klip k tracku, ale jedná se výsledek domácího úkolu: "Převyprávějte pohádku o červené Karkulce". Autorem povedené animace je Tomas Nilsson. Student oboru Grafický desing and komunikace na Linköpingské univerzitě. Ve Švédsku. Na klipu je poznat silná inspirace videem k písničce Remind my od norských Röyksopp. Přidejte svůj komentář (1). Rapidshare.com ...
Tomeu Vizoso
Monday, November 6, 2017. Last week I played a bit with crosvm, a KVM monitor used within Chromium OS for application isolation. My goal is to learn more about the current limits of virtualization for isolating applications in mainline. Two of crosvm's defining characteristics is that it's written in Rust for increased security, and that uses namespaces extensively to reduce the attack surface of the monitor itself. Git clone git:/ git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git. The work ahea...
Blog de Vinos TomeVinos
No sin mi vino. El Mundo Del Vino. El Mundo Del Vino. No sin mi vino. Preguntas sobre el Vino. Blog de Vinos TomeVinos. No sin mi vino. El Mundo Del Vino. El stress del Yoga. No sin mi vino. Libalis, blancos de oro. El Mundo Del Vino. Cuando el hielo en el vino no es una aberración…. No sin mi vino. Nueva cata de Vermuts en TomeVinos Alcobendas. Te animas a ver las diferencias y disfrutrarlas? El Mundo Del Vino. En mi próxima vida quiero ser Spock. El de Star Treck. Para teletransportarme no ya p...Estoy...
SOCIAL ENGAGEMENT