
GEEKI.WORDPRESS.COM
I, Geek | My Geeky ThoughtsMy Geeky Thoughts
http://geeki.wordpress.com/
My Geeky Thoughts
http://geeki.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
28
SITE IP
192.0.78.13
LOAD TIME
0.26 sec
SCORE
6.2
I, Geek | My Geeky Thoughts | geeki.wordpress.com Reviews
https://geeki.wordpress.com
My Geeky Thoughts
The 16 Habits of Mind | I, Geek
https://geeki.wordpress.com/2007/09/04/the-16-habits-of-mind
The 16 Habits of Mind. September 4, 2007. I recently came across an interesting article that talks about the sixteen habits of mind necessary to achieve success in life (the definition of success being subjective). They are below:. When we no longer know what to do we have come to our real work and when we no longer know which way to go we have begun our real journey. The mind that is not baffled is not employed. The impeded stream is the one that sings. – Wendell Berry. 8211; Edward deBono. The formulat...
How to do HA | I, Geek
https://geeki.wordpress.com/2015/08/04/how-to-do-ha
How to do HA. August 4, 2015. This article on philosophy of HA. Is a nice read, in that it gives some perspective about how to do HA. If HA can be decoupled from the application, then why not? It will make life much simpler. I am for it. For VMWare solution to work, we ought to have VMWare HA clusters and VMs deployed on one of the nodes in the cluster. The HTBT business will be taken care of by the virtual infrastructure. Leave a Reply Cancel reply. Enter your comment here. Address never made public).
Cost Advantage with VMs? | I, Geek
https://geeki.wordpress.com/2015/08/01/cost-advantage-with-vms
Cost Advantage with VMs? August 1, 2015. Apart from flexibility and other engineering/managerial advantages, does virtualization offer any cost advantages? If this question is behind your mind, then this article on memory oversubscription. The table showing how many VMs can be accomodated on a hypervisor (with and without overcommitment) shows how much is the cost per VM incurred. Even if we do not consider the overcommitment arguments, the cost per VM vs the cost per hardware host says it all! More Trou...
February | 2014 | I, Geek
https://geeki.wordpress.com/2014/02
Monthly Archives: February 2014. Data Alignment and Memory Accesses. February 19, 2014. IBM’s developerworks has an article on data alignment. And these are some of the facts worth noting:. Some processors completely lack the support for unaligned data access. Complex hardware jugglary is needed to support unaligned data access. Some processors trap to CPU on such accesses (PPC does so for 64-bit floating point access) and the OS does the labor to load the register with proper data. February 19, 2014.
Memory Resource Sharing Across VMs | I, Geek
https://geeki.wordpress.com/2015/08/01/memory-resource-sharing-across-vms
Memory Resource Sharing Across VMs. August 1, 2015. Will there be or can there be any advantage of sharing memory across VMs? Apparently, though VMWare supports it, Xen and Microsoft does not support memory sharing across VMs. This article. Talks about the same:. 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. Notify me of new comments via email. Create ...
TOTAL PAGES IN THIS WEBSITE
19
tcpdump for Dummies - Alex on Linux
http://www.alexonlinux.com/tcpdump-for-dummies
Posted on May 18, 2008, 4:29 pm, by Alexander Sandler, under System Administrator Articles. Turning off name resolution. Limiting number of packets to intercept. Changing packet size in the capture file. Reading from capture file. Seeing Ethernet header for each packet. Printing content of the packet. Introduction BACK TO TOC. Uses BACK TO TOC. It is exceptionally useful tool for debugging what might have caused certain networking related problem. It is an excellent tool to learn new things. Running tcpd...
printf - Alex on Linux
http://www.alexonlinux.com/tag/printf
Posts Tagged ‘printf’. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». Search Alex on Linux.
performance - Alex on Linux
http://www.alexonlinux.com/tag/performance
Posts Tagged ‘performance’. Laquo; Older Entries. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». One of the feature...
CPU - Alex on Linux
http://www.alexonlinux.com/tag/cpu
Posts Tagged ‘CPU’. Laquo; Older Entries. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». This article explains how ...
debug macro - Alex on Linux
http://www.alexonlinux.com/tag/debug-macro
Posts Tagged ‘debug macro’. Gcc macro language extensions. Posted on February 9, 2012, 12:28 am, by Alexander Sandler, under Blog. One of the great things about gcc and in particular its C/C preprocessor is various extensions that it has. In this post I would like to briefly describe three of them. One allows to turn C/C token into a string. Here token is anything that you can pass as an argument to a macro. Second allows you […]. Macros with variable number of arguments. Search Alex on Linux.
gcc macro language extensions - Alex on Linux
http://www.alexonlinux.com/gcc-macro-language-extensions
Gcc macro language extensions. Posted on February 9, 2012, 12:28 am, by Alexander Sandler, under Blog. Its amazing how useful this is. Take following code for example. Wouldn’t you give a kidney just not to write name of every single member of. Well, it appears that this can be done. Watch this:. Define PMEM(mem) #mem ": " mem #define PCMEM(mem) ", " #mem ": " mem. Now you can do the following:. Into a string using # operator # and then I concatenated it with. Std: cout #some token std: endl;. Using this...
standard library - Alex on Linux
http://www.alexonlinux.com/tag/standard-library
Posts Tagged ‘standard library’. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». Search Alex on Linux.
output stream - Alex on Linux
http://www.alexonlinux.com/tag/output-stream
Posts Tagged ‘output stream’. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». How less processes its input.
stream - Alex on Linux
http://www.alexonlinux.com/tag/stream
Posts Tagged ‘stream’. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». Search Alex on Linux.
programming - Alex on Linux
http://www.alexonlinux.com/tag/programming
Posts Tagged ‘programming’. Laquo; Older Entries. Printf() vs stream IO in C. Posted on August 14, 2012, 9:10 pm, by Alexander Sandler, under Blog. Before joining Dell I was mostly working in kernel writing in C programming language. At Dell I still work on mostly low level stuff, but this time it is user-mode, so I am not tied up to C anymore. We’re writing in C and I am learning C . One of the less appealing things for […]. Tags: c programming language. Read the rest of this entry ». Pthread exit() in C.
TOTAL LINKS TO THIS WEBSITE
28
geekhyena
April 10th, 2012. Trying to figure out what to do with my life. Wondering if I have a future. I specialized so much in nutrition because I was assured by professors/advisers that I could find a spot. I feel betrayed. I feel depressed. I feel like not doing anything but sitting and reading because whats the point? I tried my hardest, worked myself into several stress-related ailments, wrecked my body.and for what? Why try if all Im going to do is fail? January 13th, 2012. June 18th, 2011. A bit of backsto...
Blog de GeekHYPEE - ♥ - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Mise à jour :. Fini le délire du blog . ;). Abonne-toi à mon blog! Fini le délire du blog . ;). N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (23.21.86.101) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Poster sur mon blog.
Geeki-Anaki - 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')". 12542;(*'▽'*). Deviant for 2 Months. Last Visit: 1 hour ago. This deviant's activity is hidden. Deviant since Feb 13, 2017. 12542;(*'▽'*). This is the place where you can personalize your profile!
geeki.ly
Welcome!
Welcome to your website! This is the default index page of your website. This file may be deleted or overwritten without any difficulty. This is produced by the file index.html. For questions or problems please contact support.
I, Geek | My Geeky Thoughts
The Real Skill of Programming. August 27, 2017. Is not algorithmic wizardry, but organizational skills. The ability to manage state, to do error handling properly etc. Says. One guy. It makes sense! The better we orgainze the code, the easier it is to maintain and the easier it is to keep it sane. I have not used any crazy algorithms so far in the code- just a height balanced tree, a hash and thats about it. It is the software development skills that one needs to develop and master. August 14, 2017.
Geeki95's blog - Blog de Geeki95 - Skyrock.com
J AI RIEN A DIRE. TOUS AMI POUR LA VIE. 23/11/2009 at 12:34 PM. 05/03/2010 at 12:06 AM. Subscribe to my blog! A Vous De Vous Presenter! 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.3) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Monday, 23 November 2009 at 12:43 PM. Sisi se mec tjr la pour nous. Posted on Monday, 23 November 2009 at 12:45 PM.
Inicio | geekia. Diseño estratégico desde Almería
Skip to main navigation. Larr; Qué es geekia. Diseñamos servicios y productos digitales pensados para las personas. Entendemos el diseño como una herramienta transformadora capaz de resolver problemas y mejorar la vida de las personas. Por eso realizamos diseño centrado en el usuario, porque es la única manera de ofrecer experiencias tan eficaces como memorables. Definimos cualquier producto digital optimizando la experiencia de usuario y la consecución de los objetivos del cliente. Analizamos los flujos...
George Gee Kia Coeur D'Alene | New Kia dealership in Coeur D Alene, ID 83851
George Gee Kia Coeur D'Alene. 317 W Dalton Ave. 30,000 or less (106). 40,000 or less (107). 50,000 or less (109). 60,000 or less (109). 70,000 or less (111). 80,000 or less (112). 90,000 or less (112). 100,000 or less (112). 100,000 or more (1). 10,000 – $19,999 (32). 20,000 – $29,999 (38). 30,000 – $39,999 (30). 40,000 – $49,999 (3). No Price Available (9). Schedule a Test Drive. 2015 Kia Cadenza Premium Sedan. 2014 Kia Cadenza Premium Sedan. 2014 Kia Cadenza Premium Sedan. View More New Vehicles. Georg...
Geekia.org - Geek evreninden bir parça kesit
Geekia.org v1.0.1 Bi Sürüm Hikayesi. Bir Haziran gecesi sınavların da verdiği uykusuzluk, huzursuzluk ve ne yapsam düşünceleri arasında Aha! Posted by: Mustafa Uyğun. Deniz dibinde beklenmedik büyüklükte, nadir metal kaynağı manganez nodüller! Ve beklenmedik bir amaç sonucunda. R/V Sonne (Alman) araştırma gemisindeki bilim adamları (GEOMAR) Atlantik okyanusu tabanında. Posted by: Mustafa Uyğun. Uluslararası Uzay İstasyonu 45. Seferi için Astronotlar Jedi Oldu! Posted by: Mustafa Uyğun. Nasa ve Japon Hava...
geekiaful | Just another WordPress.com site
Just another WordPress.com site. Chicken fillet at Home. June 12, 2012 by geekiaful. Another best in the world! Bihon Guisado at Home. June 12, 2012 by geekiaful. The best in the world! Garlic Chicken at Home. June 12, 2012 by geekiaful. Macaroni Salad with chicken strips at Home. June 12, 2012 by geekiaful. Four Seasons at Home. June 12, 2012 by geekiaful. Pork Liver with butter at Home. June 12, 2012 by geekiaful. June 12, 2012 by geekiaful. A fun dinner with Dirk, Mamay and Patz via SnapDish.