Showing posts with label TECH. Show all posts
Showing posts with label TECH. Show all posts

Tuesday, August 03, 2010

Miscellaneous

Scientifically Tested Code Reading Skills
http://omergertel.com/2010/07/04/how-to-read-code/
 
Optimizations For Improving Page Load Times - MSDN
http://msdn.microsoft.com/en-us/scriptjunkie/ff743754.aspx
 
Code Reviews
http://codebetter.com/blogs/kyle.baley/archive/2010/06/22/rietveld-update-or-how-to-make-code-reviews-fun-without-canceling-them.aspx
 
Balsamiq – A Mockup Tool -
http://www.balsamiq.com/builds/mockups-web-demo/
http://codeclimber.net.nz/archive/2009/11/26/why-sketchflow-is-not-a-mockup-software.aspx
http://blog.davidsandor.com/post/Mockup-to-XAML-e28093-A-Balsamiq-Mockup-to-XAML-conversion-tool.aspx
http://sixrevisions.com/user-interface/website-wireframing/
 
Wireframes Articles InfoQ
http://www.infoq.com/news/2010/05/agile-usability-books

http://www.infoq.com/news/2010/06/agile-wireframes
 
Wallpapers & Icons
http://simpledesktops.com/browse/
http://www.tutorial9.net/resources/icon-pack-256x256-business-icons/
 
Code Analysis – FxCop, Resharper, CodeRush
http://winterdom.com/2007/02/livingwithresharper
http://devnet.jetbrains.net/message/5215136;jsessionid=F40F7E5B995D04C36BB1EBF0C721ABEC
http://jesseliberty.com/2010/05/28/code-rush-vs-resharper/
http://ira.me.uk/2010/05/22/writing-better-code/
http://code.google.com/p/resharper-tdd-productivity-plugin/
http://blogs.msdn.com/fxcop/archive/2007/08/09/what-rules-do-microsoft-have-turned-on-internally.aspx
 
Source Control
TFS http://arcware.net/how-to-exclude-files-from-tfs-source-control/
TFS Power Tools http://msdn.microsoft.com/en-us/vstudio/bb980963.aspx
TFS Report Refresh http://usmanshaheen.wordpress.com/2010/06/07/tfs-2010-report-refresh-frequency/
 
Display Folder Size In Windows 7 and Vista [ Applies To All Windows ]
http://www.troublefixers.com/display-folder-size-in-windows-7-and-vista-applies-to-all-windows/

Thursday, May 27, 2010

Windows Vista:: how to delete failed mapped network drive?

NET USE * /delete will delete all network drives and printers. Replace the * with the full UNC path and share name to delete a specific connection to a share. A standard user may not have the rights to disconnect from a network share.

Friday, May 21, 2010

How to Disable Adobe Updater

  1. Step
    1. 1

    Open "My Computer" by double-clicking on the desktop icon or clicking on the "Start" menu and selecting the "My Computer" button. Open the drive that contains your Adobe programs. By default, this is the "C" drive.

  2. Step2

    Double-click on "Program Files" to view software files installed on your computer. Open the "Common Files" folder by double-clicking on the folder name.

  3. Step3

    Locate the Adobe folder and double-click on it to open it. The Adobe folder contains files for all Adobe programs installed on your system. Locate and open the Adobe Updater folder, which will be named "Updater" followed by a version number, such as 5 or 6.

  4. Step4

    Locate the executable file titled "Adobe Updater" within the "Updater" folder. Double-click the file to initiate the Adobe Updater application. The program will take a few moments to connect to the Internet to search for updates.

  5. Step5

    After it finishes searching, a prompt window will appear to install new updates. Click "Preferences" on the left-hand side and uncheck the "Automatically check for Adobe updates" box. Click "OK" to accept the changes. Adobe Updater will not check for available updates unless manually instructed to do so.


http://www.ehow.com/how_5098323_disable-adobe-updater.html

Thursday, May 20, 2010

SubSonic 2.x

http://www.codeproject.com/KB/database/SubsonicDAL.aspx

Wednesday, May 19, 2010

Monday, April 12, 2010

64bit ODBC Driver

Scenario: Consume MySQL data in a report or in a SSIS package
- Install 64bit version of ODBC driver
- Create a User/System DSN on the machine
- Use the DSN in place of Buid Command

Run SQL Job from website on 64bit machine

Error: Problem with Microsoft.SqlServer.BatchParser.dll on Windows 64-bit


Download: SQLServer2005_XMO_x64.msi (pre req sql native client)


Permission to run SQL Job

1. Select database user
2. Go to database mapping
3. Select msdb database
4. look for privilege window below
5. Select all the rights related to SQL Agent
6. Save/Submit

Tuesday, April 06, 2010

SSIS Package on 64 bit machine

debugging
For the SSIS packages that really don't make use of the 64-bit processor, the SSIS project property Run64BitRuntime can be set to False. This is a instruction to load 32-bit runtime environment rather than 64-bit, and your packages would still run without doing any plumbing work. The property can be found under SSIS Project Property Pages -> Configuration Properties -> Debugging.


Run as SQL Agent Job
JobType: Operating system (CmdExec).
Package Path: "C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe" /FILE "" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF

Other Links