Altered Carbon – Richard Morgan
My favourite quotes from the book Altered Carbon by Richard Morgan: Somebody wants to kill me, and that’s not a nice feeling. People envy me, people hate me. That’s…
My favourite quotes from the book Altered Carbon by Richard Morgan: Somebody wants to kill me, and that’s not a nice feeling. People envy me, people hate me. That’s…
What are they? MEAN.(io + js) are both full-stack JavaScript frameworks, and they are both comprised of these technologies: MongoDB – leading NoSQL database, empowering businesses to be more agile and…
My favourite quotes from the book The Science of Getting Rich by Wallace Wattles: One is all and all is one. One substance manifests itself as the seeming many…
TL;DR You can download from Github the demo application (zipped exe) or the whole source code project (Visual Studio project solution), or continue reading to see how it…
Whenever I opened some pdf file and scrolled with the mouse the scrolling was per one page. Sure, you can change this by going to View -> Page Display…
This has been haunting me for some time now – there’s just no Print Screen key on this keyboard which works on a Windows machine. If you take a…
So, if you have this in the code behind: if (System.Windows.Forms.Screen.AllScreens.Length >= Config.ScreenNumber) { System.Drawing.Rectangle screenBounds = System.Windows.Forms.Screen.AllScreens[Config.ScreenNumber – 1].Bounds; this.Left = screenBounds.Left; this.Top = screenBounds.Top; } And…
Taken from: http://msdn.microsoft.com/en-us/library/ff650316.aspx public class Singleton { private static Singleton instance; private Singleton() {} public static Singleton Instance { get { if (instance == null) { instance =…
Especially today, when you’re reading this post on your computer/laptop/mobile phone/tablet, this message may be one of the last wake up calls for us. I myself sit at…
Add reference to System.Configuration : and include it using the using statement: using System.Configuration; Edit App.config so that you add your settings in the appSettings node in an add element with key and value parameters.…
First you have to install NodeJS. You can do that via package manager for your distribution. In my case (RHEL) it is easily done with: sudo yum install nodejs…
My favourite quotes from the book The Art of War by Sun Tzu: Hold out baits to entice the enemy. Faint disorder, and crush him. If it is to…
Since I like to read (like, a lot), I realized I should test my reading speed and as it turned out I’m at an average person reading speed…
My favourite quotes from the book A Short History of Nearly Everything by Bill Bryson: Once in a great while, and few times in history, a human mind produces…
TL;DR: See it in action here or here, and official site here. Spritz – change the way people read and make communication faster, easier, and more effective. So, there has…
My favourite quotes from the book The Cuckoo’s Calling by Robert Galbraith aka J.K.Rowling: There were other routes to woman’s intimacy than to admire her figure in tight dress. And…
PHP biceps cURL 🙂 Following is the PHP cURL wrapper class which I use to make GET and POST requests. The examples are below. Disclamer: be sure that…
Here I will post non standard and ‘out of the ordinary’ crontab settings. A note to myself (ANTM): crontab file in Centos is located in /etc/crontab. Lets start: Run…
My favourite quotes from the book The Woodcutter by Reginald Hill: He was certainly very good to talk to, meaning of course he was a good listener. The written…
Flappy Bird – no info as anyone who may be reading this knows about it 😉 Phaser – open source desktop and mobile HTML5 game framework supporting both JavaScript…
My favourite quotes from the book The Antidote by Oliver Burkeman: Inspiration is for amateurs, the rest of us just show up and get to work. In the effort…
Disclaimer: I’m in no way affiliated with Nodejitsu or MEAN.io. I’m just documenting my experience with them – problems (and solutions) I’ve faced while trying these new technologies…
This is a post about getting started with OpenShift Online on a Windows machine by deploying a MongoDB, Node.js and RockMongo application for free. The reason why this…
All of a sudden my arrow keys stopped working – up and down keys scrolled the screen up and down, while left and right had no effect. I found the solution here and basically all that you…
Say you have a simple XML file books.xml that looks like this: <?xml version=”1.0″ encoding=”UTF-8″?> <books> <book> <author> <name>Nikola</name> <surname>Brežnjak</surname> </author> <title>Some awesome book title</title> <year>2014</year> </book> <book> <author>…
Every time I read a book I write quotes to my notebook, but also when I come across some good random quote I put it in as well.…
Disclaimer: I’m in no way affiliated with Nodejitsu or any of the frameworks that I listed below in the post. I’m just documenting my experience with them –…
If you’re using Console 2, and I don’t know why you wouldn’t want to btw, you probably wanted to customize it. Here is an excellent post by Scott…
If you clone your project on another computer and try to do: git push origin master and you get and error like: fatal: could not read Username for…
My favorite quotes from the book The Wise Man’s Fear by Patrick Rothfuss: I don’t care what they talk, I care what they say. There was an art to…
My problem started with not being able to install gulp. I checked my npm version (npm –version ) and saw I have version 1.2.32 whilst the time of this…
Heroku is a cloud platform as a service supporting several programming languages which lets app developers spend their time on their application code, not managing servers, deployment, ongoing…
Nodemon is a utility that will monitor for any changes in your source and automatically restart your server. Perfect for development. Install it using npm. npm install -g…
My favourite quotes and notes from the book The name of the wind by Patrick Rothfuss: Though this genre is not my favorite, this book made me reconsider, as…
Since this is in the “quick tips” category I won’t go into what Sublime Text is, or why using JSHint is recommended, and that for it’s installation you…
Recently I started using CodeSchool to explore new languages/technologies in the web world, and I will post every Tuesday something new that I learn. So far, all I have…
Since I very much like to read non technical books also, and I have a habit of collecting quotes in my “quotes book”, I’m about to start and…
Why? Recently I had to make a script which runs once per week and gathers images of an admin interface (login required) and sends it to its manager…
Sooner or later everyone has to make use of some kind of caching of their content. Below is the simplest possible code demonstration on how to implement caching…
So, as most of you know PHP 5.5.x has deprecated the original MySQL extension, and instead we should be using MySQLi or PDO_MySQL extensions. Here I will show you how to use…
Recently I had to make use of templates in PHP, and as a lot of people on StackOverflow ([1], [2]) suggested “you don’t need another templating engine like…
tl;dr: The link to the application and the link to source code on GitHub. Welcome First of all – hi all!, this is my first post so go…