The current time is
Thursday, December 18, 2008
There are no primary or candidate keys in the referenced table
Wednesday, November 26, 2008
Live webinar: Accelerate the deployment and provisioning of your SharePoint e-learning platform
Challenges faced by today’s educational institutions typically lie in three main areas: efficiency, security, and accuracy.
Build your Microsoft e-learning platform. Automate your most mission-critical provisioning and ongoing management activities. Rely on a secure, reliable, and scalable provisioning solution; ITWorx Education Catalyst Provisioning Suite.
ITWorx introduces Catalyst 2.0, the second release of its market- sweeping provisioning product, with a richer set of functions and capabilities to further expedite and facilitate your provisioning processes.
In this webinar you will learn how Catalyst can:
- Decrease the provisioning time from weeks to hours.
- Meet the real education business challenges.
- Automate the synchronization with Schools’ Management Information Systems.
- Guarantee data consistency and accuracy across the board.
- Tailor to administrator needs for reduced complexity.
Tuesday, November 25, 2008
Writing a data-driven unit test
This was a really cool investigation…
It's all about one having a unit test case and it is required to run it using some number of data… An "easy" way out of this could be creating the same unit test case with different parameters every time. However, if one has enormous amount of data that should be tested on a specific method, he can create a unit test case and bind to it a datasource that is used by this test case.
Please follow the steps below:
- Create a new test Project (File New Test Project)
- Create a new method into the default class being created (Let us name it: TestTrimTexts())
- Above this method, you should write the code [TestMethod]
- To identify the datasource that would be used by this test method, you should write this line of code: [DataSource("System.Data.SqlClient", "Data Source=.\\OfficeServers;Initial Catalog=master;Integrated Security=SSPI;", "spt_values", DataAccessMethod.Sequential)]
This instructs the CLR to use the table "spt_values" using the connection string "Data Source=.\\OfficeServers;Initial Catalog=master;Integrated Security=SSPI;" and the provider "System.Data.SqlClient". It also mentions that the data should be used sequentially.
The most important part comes last, reading the data from the datasource just defined in the previous steps. You should add this pieace of code:
Afterwards, inside the test method, TestTrimTexts(), you should use the TestContext.DataRow["name"] where it will contain data fetched from the datasource specified, the column named "name", in this case.
Enjoy it then :)
Notes: There is an overload for step number 4. Check the screen shot below:
This overload had a small problem with me since it used data from the datasource randomly and this caused me to get frightened while debugging… I wasn't able to trace it with ease :)
References:
Friday, November 21, 2008
Tuesday, November 18, 2008
Installing Visio for Enterprise Architects without installing the prerequisite Visual Studio
Open the registry at the following key:
HKLM\Software\Microsoft\VisualStudio\8.0\Setup\VS\VSTD\
Of course, if you didn't find any part of this path, create it till the end...
Afterwards, inside VSTD, create a String key with name "ProductDir" and put any text inside it.
Voilaaa, VSTA installation will start like a sparky :)
Enjoy it till it lasts...
Monday, November 03, 2008
Brain Computer Interface (BCI)
Now, we even read more about it online !!!
Check this video below :)
Saturday, November 01, 2008
Gmail accessing methods
I've listed them here for you
Enjoy
Safe mode
http://mail.google.com/mail/?labs=0.
It disables the experimental features from Gmail Labs, just in case some of them are buggy.
Secure mode
It encrypts the traffic between your computer and Gmail’s servers.
Older version
http://mail.google.com/mail/?ui=1.
This version has been replaced in October 2007 by a rearchitectured Gmail, but the old version is a little bit faster.
Basic mode
http://mail.google.com/mail/?ui=html.
It’s the version that doesn’t use JavaScript, so it loads faster and it works well with older browsers.
Mobile mode
http://mail.google.com/mail/?ui=mobile or http://m.gmail.com.
This is a simplified Gmail interface for mobile phones that has even less feature than the basic mode. Use it if no other Gmail mode works for you.
iPhone mode
http://mail.google.com/mail/x/gdlakb-/gp/.
A more user-friendly mobile version for iPhone and other mobile phones that use WebKit-based browsers.
iGoogle gadget
http://www.google.com/ig/gmailmax.
This is the canvas view for the updated Gmail gadget which can be found in the new iGoogle.
“No browser checking” mode
http://mail.google.com/mail?nocheckbrowser.
If you use a cutting-edge new browser and Gmail serves you the basic HTML mode, try this URL to bypass browser detection.
Original source
Thursday, October 02, 2008
[Google] Right or left or maybe both on the same side??
Personally, I liked this one :)
Official Gmail Blog: New in Labs: Right-side Labels and Chat
Thursday, September 25, 2008
Looking for a Converter?
http://www.zamzar.com/
It's really worth to check, even if you don't need to convert a thing :)
Enjoy...
Sunday, July 27, 2008
What would you do if...
Thought maybe it's something on the sidewalk... When I looked over there, I found a parking car's mirror torn to the other side with the mirror broken...
At this second, I knew that the truck hit and broke the mirror... I kept on beeping, knowing that the driver knew what he did !!!
He just ran a bit faster as if nothing happened...
What would you do if you were in my place, knowing that the truck had no numbers yet (wasn't licensed!!!)
I thought, afterwards (while it was too late), to take the porter, who also kept yelling at the truck and drive him to fight with the truck driver... but that was very too late :( !!!
Strangely, today morning too, the car infront of me opens the window, throws a scrambled paper and then closes the window, as if it's a very normal behavior !!! grrr
Tuesday, June 03, 2008
Finally able to speed up Outlook 2007
Enjoy then...
Following these steps:
1. Open Outlook as an Administrator by going to C:Programs/Microsoft Office/Office12 and right clicking on the Outlook exe program. Choose “Run as Administrator”.
2. Then once Outlook opens, go to Tools, then Trust Center, then Addins.
3. Click “Go…” at the bottom and uncheck Outlookaddins.
4. To maximize speed, they recommended to uncheck everything EXCEPT Windows Indexing, which, according to them, is the only useful addin anyway.
Referrence: http://www.pimpyourwork.com/finally-a-real-tip-to-speed-up-outlook-2007/
Thursday, May 29, 2008
So you think you can hide...
Maybe you wanna check this snippet... Tells you most of them... But you'll need to do this by adding this pieces of code into a web part so that if it's used within the page... It would hide those elements... ;)
In other words, injected code... :D
/* To hide Quick Launch menu */
.ms-quicklaunchouter { display: none;}
.ms-quicklaunchheader { display: none;}
.ms-quicklaunch { display: none;}
.ms-titlearea {width: 150%;}
.ms-leftareacell {width: 1px;}
.ms-titleareaframe {width: 1px;
/* To hide top nav bar */
.ms-topNavContainer { display: none;}
/* To hide Welcome and My Site link section */
.ms-globalright { display: none;}
/* To hide search section */
.ms-sbrow { display: none;}
/* To hide breadcrumbs */
.breadcrumb { display: none;}
Referrence: http://hardeepm.spaces.live.com/blog/cns!7877E3B0A44BBBF!156.entry