2009-07-14

KSP computer overheated


Once, lot's of shots of rum ago, when rockeiter did not know that all it's emploees will have a laptops , our CEO bougt two PCs from a local computer store (KSP). The thing is with those KSP guys is , that mine probability for getting a good computer from them equals to the probability of meeting a dinosaur on the street (it's 50 \50 either do , or not ).

Nowdays , when one of the computers runs 3 databases servers the heat control is dead we came up with an alterative cooling device.


The comp lays on an air conditioner and acually is very cool :)

don't buy at KSP

2009-05-25

Towel day

Wherever you go , drive, teleport , fly , drink or whatever , always bring a towel with you

I have mine , do you ?


Wikipedia link
Facebook group
Google query
Official TowelDay site


To quote from The Hitchhiker's Guide to the Galaxy.

A towel, it says, is about the most massively useful thing an interstellar hitch hiker can have. Partly it has great practical
value - you can wrap it around you for warmth as you bound across the cold moons of Jaglan Beta; you can lie on it on the brilliant marble-sanded beaches of Santraginus V, inhaling the heady sea vapours; you can sleep under it beneath the stars which shine so redly on the desert world of Kakrafoon; use it to sail a mini raft down the slow heavy river Moth; wet it for use in hand-to-hand-combat; wrap it round your head to ward off noxious fumes or to avoid the gaze of the Ravenous Bugblatter Beast of Traal (a mindboggingly stupid animal, it assumes that if you can't see it, it can't see you - daft as a bush, but very ravenous); you can wave your towel in emergencies as a distress signal, and of course dry yourself off with it if it still seems to be clean enough.

More importantly, a towel has immense psychological value. For some reason, if a strag (strag: non-hitch hiker) discovers that a hitch hiker has his towel with him, he will automatically assume that he is also in possession of a toothbrush, face flannel, soap, tin of biscuits, flask, compass, map, ball of string, gnat spray, wet weather gear, space suit etc., etc. Furthermore, the strag will then happily lend the hitch hiker any of these or a dozen other items that the hitch hiker might accidentally have "lost". What the strag will think is that any man who can hitch the length and breadth of the galaxy, rough it, slum it, struggle against terrible odds, win through, and still knows where his towel is is clearly a man to be reckoned with.

2009-04-01

SQL Fail



Can't pass april first whithout having something stupid written here
there you go :


2009-03-23

Some SQL Jokes - Geekness rulles

Hi

This is a sad day for us (we love you O , !) and An x coullegue of mine from Comsec sent me some SQL jokes

Here it goes

2009-03-02

The Importance of check-in comments

So that even years after the change is done, someone can just look at the comments and understand what's your patch!

http://thedailywtf.com/Articles/The-Apocalypse-Must-Have-Occured!.aspx

Null Pointer exception on the EMPTY LINE




I'm speechless, well our code is not perfect during the devepment stages .. you know , you change , you add , you remove , but our whitespaces should compile , otherwise .. i don't know , what the heck ?

2009-02-24

2009-02-12

Rocketier Door


Welcome home :) 
We have a new door, you can comment it as you wish 


check this out 

2009-02-05

Next generation of HPSEs is here

Baby is born with 24 fingers, 6 in each limb.

http://www.nrg.co.il/online/1/ART1/850/324.html

That's x1.2* out keyboard typing power!

* we don't** program with our feet.

** YET.

Experience

Experience (n). - the ability to recognize error messages and find the problem, when the message content has nothing to do with the problem itself.

2009-01-25

Just a cool movie


http://www.youtube.com/watch?v=0L7DTMKekoU
when I grow up, I want to to be like those guys :)


thanks to Alik and Johnatan

2009-01-15

Window size

have you ever been arguing with your collegues about opening the window or closing one ? well in out opinion the problem is the work itself, we just don't like getting up from the chair and openning or closing the window..

Our High Preformance Development Team has developed a very usefull and handy API for a window size controlling .

You can use it whidely and proudly and shock your bosses and colugues (our boss smiled) by this..

The API is avalible under the Open_source_license.
If there are problems, we will find someone to accuse :)


Posted by Picasa

2008-12-31

Inheritance, Polymorphism, & Testing

This is a video "The Clean Code Talks -- Inheritance, Polymorphism, & Testing"
The video talks about using Polymorphism instead of IF's and Cases

javascript:void(0)

2008-12-30

RomDiff


Hi
that's me again .. busy day today , huh ?

Anyway, while I was thinking of something, Romi, my colleague fond out that a file a his won't compile. He decided to check the differences of the files.

that is why we invented the RomDiff

Windows Pay - Per Use ? maybe soon

Microsoft has applied a patent of renting an operation system and probably hardware .
Imagine that you have a small cheap computer and suddenly you have an urge to kill, you know ... you just need to kick ass .. what shall you do ?

What I do is - take my Lenovo T61P Super Mega Laptop, run a battlefield and then have a nice time while shooting bad guys , flying helicopters and wasting time, however as I told you have a cheap computer . A problem ? Not anymore!

You can rent an nVidia Video card and a good sound adapter for a hour of two , pay some bucks (two three .. whatever) and when you done using them you just stop paying. Now of course you will not see a Microsoft delivery guy bringing you the hardware, it will be installed in your computer, but deactivated.

Moreover, all the XboxLinux project and the others taught Microsoft a lesson about obfuscating options of the computer hardware, therefore, we shall see more Hackers and security professionals hacking the security infrastructure of this "Device".

Here is a quote from Microsoft's patent application form

A different business model may allow a more granular approach to hardware and software sales. A computer may have individually metered hardware and software components that a user can select and activate based on current need. Beyond simple activation, the user may be able to select a level of performance related to processor, memory, graphics power, etc. that is driven not by a lifetime maximum requirement, but rather by the need of the moment. When the need is browsing, a low level of performance may be used and when network-based interactive gaming is the need of the moment, the highest available performance may be made available to the user.



let the fun begin !

2008-12-07

yo'moma joke

- yo momma is so ugly, that I would never sent an ICMP packet in her direction

reply:
talk to the firewall, 'cause the port ain't listening!

2008-12-04

Firefox vs Internet Explorer

Another frustrating difference between the Firefox and Internet Explorer. A simple script in one of my pages selects all of the checkboxes in the page

function ChangeCheckBoxState(id, checkState)
{
var cb = document.getElementById(id);
if (cb != null)
cb.checked = checkState;
}

function ChangeAllCheckBoxStates(sender)
{
var checkState = sender.checked;
// Toggles through all of the checkboxes defined in the CheckBoxIDs array
// and updates their value to the checkState input parameter

alert('1');
if (cbCheckBoxList != null)
{
for (var i = 0; i < cbCheckBoxList.length; i++)
ChangeCheckBoxState(cbCheckBoxList[i], checkState);
}
}

here is a trigger


&lt input type="checkbox" id="cbSelectAll" onchange="ChangeAllCheckBoxStates(this)" &gt


So, here is the issue: while Firefox handles everything well , Internet Explorer needs me to check or uncheck the box and then to click on some other area on the scree

I Hate that , why ? isn't is the meaning of ONCHAGE event ??!@ huh ?

2008-12-03

Hightech is in shit

I have been programming for the whole morning .. well not for the whole morning , because I could not stand on my feet in the morning .. We were presenting ourselves at the IGT2008 - The World Summit of Cloud Computing, and my feet were ruined. I will write a post about it as soon as i get the pictures.

Anyway when I went to find myself a sandwich , I was surrounded with sewerage. It looked like a huge buffer overflow with no debugger available and the smell was the same the buffer overflow should have .

They are right, Israeli Hi Tech is in deep shit .

2008-11-30

VoTP

Voice over Though Protocol (VoTP) is a general name for a set of telepathy communications.

VoTP is usually observed in human beings, and is thought to exist in other mammals as well.

VoTP can deliver a short message or initiate a conversation, but only with the rise of telephony systems, have these become into popular use.

It can be used as a toll-free initiation method for a call.

When you call someone, thinking you just wanted to talk to them, and they reply "thanks for calling, I was just thinking of you and wanted to talk to you", they've used it!