how 2 get invisible on orkutjust go 2 ur edit profile optiondelete first nd 2nd namethen on the first name text box type ALT + 0173do th same for the 2nd name box then update the pagesimplekeep the ALT key pressed while typing 0173———————————————————————————————————–how to miss call on orkut…………..just type [ i ] withought spaces nd an invisible scrap will b sent means empty scrap or [u ] [ b]————————————————————————————————————–how 2 mirror a message& # 8 2 3 8type it without spaces b4 ur msg nd submitt ur message will be inverted………………————————————————————————————————————–CRAZY SCRIPTSjust copy paste them in ur adress…
Some useful orkut tricks
Bank of Rajasthan ties up with Hero Honda for two wheeler loans
MUMBAI: Bank of Rajasthan has announced a strategic tie-up with Hero Honda Motors Ltd. The company has entered into this tie up with the aim to offer retail financing facilities to two-wheeler customers at lower interest rates. This tie up will enable the customer to avail the loan on an interest rate, which has been reduced by 150 basis points coupled with a concession of 50% on the processing fees. The two major players have tied up to simplify the purchase of two-wheeler for both the urban as well as the rural customers with the network of 463 branches…
Iphone the Next Wonder of the World or Just a Flop?
Pocket Porn on the Iphone
The big screen fast internet connection combined with its user friendliness, makes lots of users attracted to the iPhone.
Men en stor skjerm, rask internett-tilkobling og brukervennlighet er det ikke bare mobilbrukere verden over som blir tiltrukket av iPhone.
The leading content providers for porn has according to Time Magazine embraced the iPhone to be the dream come through for pocket pornography. They are just looking forward to the iPhone firmware 2.0 that with 3G will have more speed than its predecessor.
iPhone is the most user-friendly telephone in the market and suited best…
Script as blocking element and dynamic script loading using document.write
We all know that script is blocking element, meaning no content will be rendered untill script block is parsed and executed or downloaded then parsed and then executed in case of externale script.
And we were told endless times that the best practice is to load scripts at the end of web page. It’s true.
We also have document.ready events thanks to numerous javascript frameworks that gives us opportunity to perform most of our JS actions when document is ready to be manipulated. But there are cases when you do need JS blocking features.
Many ad serving systems work using…
C# Parsing HTML with HtmlAgilityPack
Let’s say you have to parse some HTML, find all images or some other DOM elements make some changes/optimizations and save the result. What can you do ?
Well, i needed something like that a few days ago and after Googling for couple of hours I ran across this this great library called HtmlAgilityPack.
Sure, you can do it by using C# WebBrowser control or MSHTML, but you will have to forget about performance or multithreading – it will eat all your memory and the CPU won’t know what’s hit it.
Now, back to the HtmlAgilityPack.
The usage is very…
Javascript boolean interpretation
I have two simple questions for you about boolean values in Javascript.
When will browser show alert message:
if (a-b) alert(“it’s true!”);
And another one
What will be printed as result of running this script:
for (var n=10; n; n– )
{
document.write (n + “,”);
}
The answer for both questions relies on the same principle of what JavaScript engine will evaluate as true and what as false.
Related posts:Javascript pseudo protocol (is EVIL)Javascript function context, “apply” method and lost “this” objectC# LINQ Teaser
C# LINQ Teaser
Another great interview question.
Will the following code compile and if yes what will be the result of it ?
static void Main(string[] args)
{
int[] array = new[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
Func<int, int> func = i => {
Console.Write(array[i]);
return i;
};
var result = array.Where(e => e <= func(2)).ToArray ();
}
* There is a second part for this question, but only after you answer the first one.
Related posts:C# Inheritance QuestionC# The “double” troubleC# Byte Iteration Question
Javascript function context, “apply” method and lost “this” object
How many times you had problem or were asked about what happened to this object in your function? Or why this is not an object you expect it to be? Probably these times you have to remind yourself or your fellow programmer about function context.
First of all I have to ask you all a pretty lame question. If you write function in JS block right inside your HTML, what this keyword will refer to?
<script type=”text/javascript”>
function testThis(){
//who is “this”
}
</script>
And now to the real example.
Let’s say you build a simple Javascript object:
<script type=”text/javascript”>…
IE Memory Leak – jQuery Fix
I suppose all of you have suffered all those terrible memory leaks in Internet Explorer.
Sometimes it bearable, but most of the time it’s not. I say enough is enough !
A couple of days ago, I had to create some web application with a very rich client side UI.
It worked like a charm in Google Chrome, Firefox… but IE7, after few dozens of nyroModal popups it just went dead.
Most of the styles are gone, JavaScript functions began to throw exceptions till it just stoped working, decided it can’t tolerate this kind of abuse any more and closed…
C# Rectangle Packing
Sometimes, you’re faced with the problem to cramp as many smaller textures as possible onto a larger texture. Typical cases are lightmaps, which are very small textures with dimensions that usually are not powers of two, or bitmap fonts where you want to try and fit the entire ascii character set onto a texture without wasting much space.
What you need then, is a rectangle packer, an algorithm that arranges as many smaller rectangles on a larger rectangle as can possibly fit.
The Nuclex.Support assembly contains several rectangle packing algorithms in the Nuclex.Support.Packing namespace offering various levels of compromises between…
Mobile Malware Transmitter.C Spreading In The Wild
Researchers from NetQin Tech. are reporting on a newly discovered mobile malware variant (Transmitter.C) distributed through a modified version of legitimate mobile application. Upon execution, the malware attempts to automatically spread by sending hundreds of SMS messages linking to a web site where a copy of it (sexySpace.sisx) can be found.
NetQuin’s CEO, Dr. Lin Yu provided more insight into the nature of the malware, its financial implications for the infected user, as well as thoughts on the future of mobile malware.
As a foreign variant of previous erotic short message virus (Transmitter.A), this virus camouflages in a normal…
Fresh DirectShow Exploit In Internet Explorer Hits Windows Users
Thousands of websites have been hit by fast-moving exploit code that installs a cocktail of nasty malware on visitors’ computers by targeting a previously unknown vulnerability in some versions of Internet Explorer.
The compromised websites link to a series of servers that exploit a zero-day vulnerability in an IE component that processes media. The vulnerability affects those using the XP and 2003 versions of Windows, Microsoft warned in advisory 972890.
“An attacker who successfully exploited this vulnerability could gain the same user rights as the local user,” company security representatives wrote. “When using Internet Explorer, code execution is remote…