Sign in
Antimail
Adi Oltean's Weblog - Flashbacks on technology, programming, and other interesting things
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
Bing
Classification
Click or miss
FCI
FSRM
gaming
Pages
Programming
Puzzles
Questions
Science
Script recipes
Storage
Vista
VSS
Web Search
Windows Server
Windows XP
XBox
XBox, gaming
Archive
Archives
September 2009
(1)
June 2009
(2)
May 2009
(7)
February 2008
(1)
January 2008
(1)
December 2007
(2)
November 2007
(4)
October 2007
(4)
September 2007
(1)
May 2007
(1)
March 2007
(2)
February 2007
(2)
January 2007
(3)
December 2006
(2)
November 2006
(3)
October 2006
(3)
September 2006
(6)
August 2006
(12)
July 2006
(2)
June 2006
(4)
May 2006
(3)
April 2006
(5)
March 2006
(6)
February 2006
(3)
January 2006
(23)
December 2005
(17)
November 2005
(14)
October 2005
(9)
September 2005
(27)
August 2005
(22)
July 2005
(19)
June 2005
(36)
May 2005
(29)
April 2005
(21)
March 2005
(15)
February 2005
(17)
January 2005
(19)
December 2004
(23)
November 2004
(14)
August 2004
(1)
July 2004
(3)
June 2004
(5)
May 2004
(2)
April 2004
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Antimail
What keeps people away from blogging?
Posted
over 8 years ago
by
Adi Oltean
10
Comments
I was looking recently to our OPML list and I noticed that many people I know haven't started a blog. Or at least... not yet. Which got me thinking: what are the most common reasons people don't start a blog? Is it too intimidating? Or it would be too...
Antimail
Tricks around the "copy" command...
Posted
over 8 years ago
by
Adi Oltean
6
Comments
The copy command can be very useful for quick operations. However, there are a number of tricks that are not widely known. 1) Copying the contents of a source directory into the current directory: just specify the source directory! y:\privates>copy...
Antimail
Wireless security is (unfortunately) not for dummies...
Posted
over 8 years ago
by
Adi Oltean
5
Comments
I'll try to keep this post short, but the main idea is that apparently wireless and security don't really mix well. At least if you are not an expert in this area. While I started learning about this stuff, I got really worried on how easy is to setup...
Antimail
0.3 Petabytes of storage available free of charge?
Posted
over 8 years ago
by
Adi Oltean
1
Comments
I always wondered where should I store my backups... A regular backup of my Windows box takes around 13 Gigabytes. Where should I store this stuff? Should I burn DVDs? Or buy a tape drive? Well... let's see. I recently got 50 Gmail invites. That makes...
Antimail
Is Microsoft serious about security?
Posted
over 8 years ago
by
Adi Oltean
8
Comments
If you don't know already, here is an indirect answer. I'll quote directly from Bill Gates latest speech : Now, in terms of delivering on more secure systems, I think there are three general things that we do. The first is advancing the technology. We...
Antimail
Script Recipe: How to evaluate numerical expressions in the command line
Posted
over 8 years ago
by
Adi Oltean
2
Comments
Here is a little known feature of our beloved CMD.EXE. It is extremely easy to evaluate an arithmetic expression! All it takes is a five characters. Just type set /a followed by your expression . Here is an example: E:\>set /a 1+1 2 Or, if you want...
Antimail
One Million Dollar Paranormal Challenge
Posted
over 8 years ago
by
Adi Oltean
4
Comments
During my more-or-less brownian surfing I stumbled across this challenge : The Foundation is committed to providing reliable information about paranormal claims. It both supports and conducts original research into such claims. At JREF, we offer a one...
Antimail
Is there anybody else using Visual C++ 6.0?
Posted
over 8 years ago
by
Adi Oltean
7
Comments
Andy Pennell noted a really interesting post from a Mozilla Firefox developer. It looks like people out there are still using Visual C++ 6.0 as the debugger of choice. And, guess what, I also use Visual C++ 6.0 occasionally, but not for debugging (I switched...
Antimail
Nerd score
Posted
over 8 years ago
by
Adi Oltean
10
Comments
It seems a little high, but, hey, I'm working with computers more than 10 hours per day, and so on :-)
Antimail
Using XSLTProcessor programatically in IE to minimize client-server bandwith
Posted
over 8 years ago
by
Adi Oltean
6
Comments
jgwebber pointed out that the new maps.google.com is using the XSLTProcessor at the client side. This is interesting... while I always thought it is possible, I didn't saw too many cases where this approach is actually useful beyond academic exercises...
Antimail
Cameron Purdy on distributed caching
Posted
over 8 years ago
by
Adi Oltean
0
Comments
Especially if you live in a pure .NET world, it's a good exercise to see once in a while what's interesting in the Java land. There are some things out there which do not have (not yet, I would add) an equivalent implementation in .NET. So, if you have...
Antimail
Quick Puzzle: what does this program print?
Posted
over 8 years ago
by
Adi Oltean
5
Comments
You have 30 seconds left... just kidding :-) using System; using System.Collections; using System.Reflection; class Hello { Type Unknown { get { return World.GetType(); } } object [] Knowledge() { return Unknown.GetProperties(); } string [] Library()...
Antimail
Trick of the day: How to compress long URLs into very short ones
Posted
over 8 years ago
by
Adi Oltean
3
Comments
Go to tinyurl.com. It's a wonderful idea - you get a simple, quick service that converts very long URLs into very short ones. For example, one of my permalinks got converted into a very short URL which looks like this: http://tinyurl.com/45z4e Update...
Antimail
Gosling: Huge security hole in... Java?
Posted
over 8 years ago
by
Adi Oltean
8
Comments
I am reading now an article in which James Gosling claims that .NET has a huge security hole. The problem seems to be that .NET allows execution of both safe and unsafe managed code in the same process: [...], Gosling is concerned about "unsafe" code...
Antimail
Warning: Shadow Copies for Shared Folders are not a replacement for backup
Posted
over 8 years ago
by
Adi Oltean
3
Comments
Shadow Copies for Shared Folders are a great feature that can give your users access to previous files in minutes, as opposed to hours or even days (as it is takes normally to reclaim a file from the tape in an corporate environment). One word of caution...
Antimail
Google Suggest
Posted
over 8 years ago
by
Adi Oltean
6
Comments
I love Google Suggest. Here is a little experiment: 1) Go to http://www.google.com/webhp?complete=1&hl=en 2) Type "msn search" 3) Check out the last suggestion at the bottom... :-)
Antimail
Where are all my iPods?
Posted
over 8 years ago
by
Adi Oltean
12
Comments
Leander Kahney publishes an interesting discovery : "About 80 percent of Microsoft employees who have a portable music player have an iPod," said one source, a high-level manager who asked to remain anonymous. "It's pretty staggering." The source estimated...
Page 1 of 1 (17 items)