Generated by All in One SEO v5.0.0.1, this is an llms.txt file, used by LLMs to index the site. # Samuel Haddad ## Sitemaps - [XML Sitemap](https://samuelhaddad.com/sitemap.xml): Contains all public & indexable URLs for this website. ## Posts - [PDF.JS - Message: file origin does not match viewer's with WordPress](https://samuelhaddad.com/2024/02/27/pdf-js-message-file-origin-does-not-match-viewers-with-wordpress/) - Recently I received the error while working on a WordPress Site. Message: file origin does not match viewer's Solution. Both the website and the PDF have to be served over the same protocol, in my case, SSL. I upgraded the website to use SSL. The PDF.JS plugin and the file must be served from the - [Git Delete all local branches except main](https://samuelhaddad.com/2022/11/24/git-delete-all-local-branches-except-main/) - git branch | grep -v "main" | xargs git branch -D - [Android - Set the Background Color Notification Notification](https://samuelhaddad.com/2022/11/18/android-set-the-background-color-notification-notification/) - private fun createTimerNotification(application: Application, body: String): Notification { return NotificationCompat.Builder(application, FOREGROUND_TIMER_NOTIFICATION_CHANNEL_ID) .setContentTitle("Title") .setContentText(body) .setColor(AccentPurple.toArgb()) .setColorized(true) .setStyle(NotificationCompat.DecoratedCustomViewStyle()) .setPriority(NotificationCompat.PRIORITY_MIN) .setWhen(0) .setSmallIcon(R.drawable.ic_launcher_foreground) .setOngoing(true) .build() } - [Overwriting an Excel file destination using SSIS](https://samuelhaddad.com/2009/03/31/overwriting-an-excel-file-destination-using-ssis/) - This was a problem I racked my brains over for a while when I first started using SSIS. I found a few possible including using a File System task to copy a "Template" Excel file over the existing on, or generating unique files by appending the date. I simply wanted to overwrite the existing data - [Restart Jenkins from Web Interface](https://samuelhaddad.com/2013/05/17/restart-jenkins-from-web-interface/) - Navigate to: [jenkins_url]/safeRestart. - This will restart Jenkins after the current builds have been completed. [jenkins_url]/restart - This will force a restart. Builds will not wait to complete. Work with Jenkins a lot I found Jenkins 2 a helpful resource. - [Twitter Talk](https://samuelhaddad.com/2009/04/19/twittertalk/) - A Launchy like Twitter application. - [Pandora Keys](https://samuelhaddad.com/2010/10/21/pandora-keys/) - Download: Click here to download Pandora Keys from:http://samuelhaddad.com/downloads/pandorakeys/ Source Code: https://github.com/SamPlusPlus/Pandora-Keys Features: Media Key support Customizable keyboard shortcuts Control Pandora from any application. Auto updater for new features See more... Screenshots: Requirements: .NET 4.0 A Pandora.com account Enjoy listening to music Why Did I make this?: I am a big fan of both Pandora, Jango, - [Dell Service Tag](https://samuelhaddad.com/2009/08/15/dellservicetagfinder/) - When I was working as a Desktop Support Technician in college, I wrote a .NET C# Dell service tag finder because I dealt with well, many Dell computers. I decided to write a little program that I could carry on my flash drive with me and all my other technical applications. What I like most - [Open In Firefox](https://samuelhaddad.com/2008/12/14/open-in-firefox/) - As a web developer, I am constantly testing my websites in many browsers. Particularly Firefox and Internet Explorer. Firefox was built around the idea of extensibility. There are many add-ons that allow you to customize Firefox the way you want. One great add-on is IEView this little tool allows you to right-click on any web - [Jango Desktop](https://samuelhaddad.com/2008/11/17/jango-desktop/) - WARNING: THIS PROJECT IS OUTDATED AND NOT MAINTAINED. Download: Click here to download Jango Desktop from: http://samuelhaddad.com/jangodesktop/ Contribute: As of 10/19/2009, Jango Desktop is going open source. Please check out the project at http://code.google.com/p/jango-desktop/ and jump right in. Programmers, graphic designers, or just your ideas, whatever your skills may be you are welcome to join the - [Fix ‘Another Update is Currently in Progress’ WordPress Error](https://samuelhaddad.com/2022/05/13/fix-another-update-is-currently-in-progress-wordpress-error/) - When WordPress goes to update, it creates a lock in the database so that multiple users and processes do not attempt to edit the system in parallel. However, there are cases when this lock is created, but the update never occurs. If this happens and the lock is not released, you will be blocked from - [Allow Console Logging with ESLint](https://samuelhaddad.com/2018/08/14/allow-console-logging-with-eslint/) - /* eslint no-console: ["error", { allow: ["warn", "error", "log"] }] */ - [Nuget File Locations](https://samuelhaddad.com/2018/07/06/nuget-file-locations/) - NuGet File Locations NuGet Cache Stores downloaded NuGet packages (.nupkg). %LocalAppData%\NuGet\Cache %UserProfile%\.nuget\packages NuGet Configuration The NuGet.Config file stores user defined NuGet package sources, credentials and proxy settings. The default location for this file is: %AppData%\NuGet\NuGet.Config Machine Wide NuGet Configuration Machine wide configurations are used to define NuGet package sources specific to a machine or a - [Git disable ssl check.](https://samuelhaddad.com/2017/06/16/git-disable-ssl-check/) - You probably don't want to do this, but if you really have to git config http.sslVerify "false" - [Clear cached Git Credentials on Windows.](https://samuelhaddad.com/2017/02/17/clear-cached-git-credentials-on-windows/) - git config credential.helper store - [Export Git Repository to zip.](https://samuelhaddad.com/2017/05/04/export-git-repository-to-zip/) - git archive --format zip --output /full/path/to/zipfile.zip master - [Jetbrains Resharper Command line tools not running](https://samuelhaddad.com/2015/08/21/jetbrains-resharper-command-line-tools-not-running/) - Problem: I was trying to get Resharper's dupfinder to run from a command line script. Using Resharper's command line tools. I keep getting the errors below. The solution came from https://devnet.jetbrains.com/thread/460601;jsessionid=FB59ACB66FFC17A22451A99A63A1BD76 which basically says Remove Zone.Identifier NTFS Alternate Data Stream (http://msdn.microsoft.com/en-us/library/dn392609.aspx) from the ZIP file before using it. turns out it was spot on. I used 7Zip - [Opening the same file in Visual Studio Twice.](https://samuelhaddad.com/2015/08/17/opening-the-same-file-in-visual-studio-twice/) - Here's how to do it ... Select the tab you want two copies of Select Window > New Window from the menu (this will open the same file again in a new tab) Right click the new tab and select 'New Vertical Tab Group' From StackOverflow - [Add a calendar on Android Emulator](https://samuelhaddad.com/2015/06/16/add-a-calendar-on-android-emulator/) - After much searching this is the only way I could figure out how to add a calendar when running in an Android Emulator. This is not a new problem, many users have complained about this on the internet see http://stackoverflow.com/questions/14971158/avd-emulator-has-no-option-to-sync-with-google-calendar The solution I came to is based off of the idea from BizTalk Maven however this does - [Visual Studio Tools for Apache Cordova Error, MDAVSCLI failed with code 8](https://samuelhaddad.com/2015/06/15/visual-studio-tools-for-apache-cordova-error-mdavscli-failed-with-code-8/) - I recently installed Visual Studio Tools for Apache Cordova CTP 3.1 in Visual Studio 2013 with Update 4 and when trying to build I kept getting the error: Command failed with exit code 8 Visual Studio - mdavscli The problem was that I has upgraded my version of Android SDK which was not compatible. To - [ASPxDateEdit causes scrolling in Chrome](https://samuelhaddad.com/2015/04/28/aspxdateedit-causes-scrolling-in-chrome/) - I am currently working on a project that takes advantage of some DevExpress components. Recently we ran into an issue where ASPxDateEdit caused the parent page to scroll if the control was used in an IFrame. Oddly enough this issue only happened on Chrome (and potentially other webkit browsers), but not on IE. The only - [Blurry icons with AspxHtmlEditor.](https://samuelhaddad.com/2014/10/23/blurry-icons-with-aspxhtmleditor/) - Today I was working with the DevExpress AspxHtmlEditor, when I noticed that the toolbar icons were sometimes blurry, but would clear up on mouse over. Turns out my browser zoom was not set to 100%. Setting the Zoom to 100% resolved the issue. - [ASP.NET system.InvalidOperationException: Script controls may not be registered before PreRender.](https://samuelhaddad.com/2014/09/12/asp-net-system-invalidoperationexception-script-controls-may-not-be-registered-before-prerender/) - Today I ran into the following error. System.InvalidOperationException: Script controls may not be registered before PreRender. In my case I was overriding OnPreRender and forgot to include base.OnPreRender(e) Adding in the the call to base solved the issue. - [Invalid postback or callback argument.](https://samuelhaddad.com/2014/08/28/invalid-postback-or-callback-argument/) - Today I ran into this error when posting back on my ASP.NET page. System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.ArgumentException: Invalid postback or callback argument. Event validation is enabled using in configuration or in a page. For security purposes, this feature verifies that arguments to postback - [No parameterless constructor defined for this object. - Gridview DataBind ASP.NET](https://samuelhaddad.com/2014/08/18/no-parameterless-constructor-defined-for-this-object-gridview-databind-asp-net/) - Error: An exception of type 'System.MissingMethodException' occurred in mscorlib.dll but was not handled in user code Additional information: No parameterless constructor defined for this object. Possible Solution: If defining your gridview's data source in the ASP.NET markup. Make sure the code behind's constructor is public and has the right visibility. In my case, Resharper - [OsCommerce - Call to a member function buildBlocks()](https://samuelhaddad.com/2013/07/29/oscommerce-call-to-a-member-function-buildblocks/) - I just ran into this error when upgrading a OsCommerce Site: Fatal error: Call to a member function buildBlocks() on a non-object in public_html/includes/template_top.php on line 13 I saw that others had this error, but no one was able to help them. In case anyone else runs into this error check the following: In catalog/includes/application_top.php - [Office Document Content Types](https://samuelhaddad.com/2013/07/02/office-document-content-types/) - Here is a list of content types Ext MIME Type .doc application/msword .dot application/msword .docx application/vnd.openxmlformats-officedocument.wordprocessingml.document .dotx application/vnd.openxmlformats-officedocument.wordprocessingml.template .docm application/vnd.ms-word.document.macroEnabled.12 .dotm application/vnd.ms-word.template.macroEnabled.12 .xls application/vnd.ms-excel .xlt application/vnd.ms-excel .xla application/vnd.ms-excel .xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet .xltx application/vnd.openxmlformats-officedocument.spreadsheetml.template .xlsm application/vnd.ms-excel.sheet.macroEnabled.12 .xltm application/vnd.ms-excel.template.macroEnabled.12 .xlam application/vnd.ms-excel.addin.macroEnabled.12 .xlsb application/vnd.ms-excel.sheet.binary.macroEnabled.12 .ppt application/vnd.ms-powerpoint .pot application/vnd.ms-powerpoint .pps application/vnd.ms-powerpoint .ppa application/vnd.ms-powerpoint .pptx application/vnd.openxmlformats-officedocument.presentationml.presentation .potx application/vnd.openxmlformats-officedocument.presentationml.template .ppsx application/vnd.openxmlformats-officedocument.presentationml.slideshow .ppam - [Disable Visual Studio Tabify Prompt](https://samuelhaddad.com/2013/06/07/disable-visual-studio-tabify-prompt/) - I was getting this prompt because I installed Productivity Power Tools. To disable this question do the following: Go to Tools -> Options Productivity Power Tools -> Fix Mixed Tabs - set to NO. Then restart Visual Studio. - [MYSQL cross table update](https://samuelhaddad.com/2013/01/07/mysql-cross-table-update/) - So today update data cross table in a MYSQL database. It took me way longer than it should have. I spent way too much time trying to get my join to work only to continue getting syntax errors. So long story short. If you are doing a cross table update in MYSQL you cannot use - [Cannot import the following key file fix](https://samuelhaddad.com/2011/07/27/cannot-import-the-following-key-file-fix/) - This one has caused me a few hours of pain….a couple of times. It is about time I document how I fixed it. The Error: Cannot import the following key file: .pfx. The key file may be password protected. To correct this, try to import the certificate again or manually install the certificate to the - [Microsoft Office installs" when opening a file](https://samuelhaddad.com/2013/05/09/microsoft-office-installs-when-opening-a-file/) - Does Office appear to install every time you try to open a document or you see a configuration dialog. Open run (Press Windows Key + R) and paste in the correct line for your version of Office and the troublesome application. For Office 2010 Run the command for the application giving you trouble reg add - [Always open IE 10 in Desktop Mode](https://samuelhaddad.com/2013/03/10/always-open-ie-10-in-desktop-mode/) - While I do use Windows 8 I find that I often work in Desktop Mode. One thing I found is that I always want Internet Explorer to open in desktop mode. If you are like me. Here is how While at the Windows 8 Start menu Search for Internet Options Select Settings on the right hand - [.NET Multiple Line Regex](https://samuelhaddad.com/2013/01/24/net-multiple-line-regex/) - Recently I was trying to use a Regular Expression in .NET. I was working with small blobs of text. I was trying to extract some code snippets out of some wiki markup. The code snippets looked like: {code:csharp|title=C#} //C# Code {code} {code:vbnet|title=vb.net} //VB.NET Code {code} For testing purposes I was using the simplest Regex I - [The challenge!](https://samuelhaddad.com/2012/09/27/the-challenge/) - So my girlfriend and I have been talking about how we both neglect our websites and blogs and that we really want to work on them. I was curious and pulled up my site stats and checked out how much traffic I have been getting. On average I receive about 5,500 views in a month. - [Stop Google from indexing your Facebook account.](https://samuelhaddad.com/2009/03/01/stop-google-from-indexing-your-facebook-account/) - New Way: Facebook is constantly changing its layout. The new way to disable public search is to go to Account - > Privacy Settings In the lower left hand corner look for Apps and Websites Edit your settings Edit settings for the public search Uncheck enable public search. Old Way: Login to Facebook and - [Adobe Photoshop Black Canvas Fix.](https://samuelhaddad.com/2009/01/24/adobe-photoshop-black-canvas-fix/) - So I just started testing out Adobe Photoshop CS4. I ran into a little problem to start with. Every new image I made would be solid black and I could not see anything I was trying to do. When I first started using the new version of Photoshop it gave me a message about implementing - [Digsby Tips and Tricks](https://samuelhaddad.com/2008/10/15/digsby-tips-and-tricks/) - So Digsby has been around for quite some time now. For those of you have not heard about Digsby or tried it, let me fill you in. Digsby is an instant messaging client that combines, emails, and social networking. This means you can have your AIM, GMail, and Facebook all in the same place. Until - [Making Netgear SC101 Work with Vista SP1](https://samuelhaddad.com/2008/09/30/making-netgear-sc101-work-with-vista-sp1/) - So you my have noticed that if you upgraded to Vista or have Vista that it took Netgear over 6 months to release drivers for there Zetera SC101 NAS. The Problem: When installing the latest SCM utility and drivers you receive an error "Failed to install the Z-SAN SCSI miniport driver" or similar. The Resolution: - [Skinning Pidgin - Sick of Pidgin's Look and Feel](https://samuelhaddad.com/2008/02/16/sick-of-pidgins-look-and-feel/) - Pidgin is a multi-protocol Instant Messaging client that allows you to use all of your IM accounts at once. It can be found at http://pidgin.im/ I have been using it for a while now when AIM started putting advertisements into there software. Pidgin was formally GAIM which changed its name due to legal reasons and - [C# .NET and LyricWiki to lookup lyrics](https://samuelhaddad.com/2009/03/22/c-net-and-lyricwiki-to-lookup-lyrics/) - Music is everywhere with today's high speed internet is most home it is no wonder that music is even moving to the World Wide Web. Many radio stations allow you to stream their stations over the internet. Many websites have been developed around music, like www.jango.com, www.pandora.com, and www.last.fm. I recently released my second version - [Visual Studio Tips and Tricks](https://samuelhaddad.com/2009/05/06/visual-studio-tips-and-tricks/) - Useful tips and tricks to make Visual Studio more effecient. - [2 Plugins to Eliminate WordPress Spam.](https://samuelhaddad.com/2009/05/10/2-plugins-to-eliminate-wordpress-spam/) - Stopping Wordpress Spam with 2 plugins. - [Custom Free Silent LogMeIn Installer.](https://samuelhaddad.com/2009/05/17/custom-free-silent-logmein-installer/) - So there are already a few guides out there on how to make a Silent(In the sense that it don't ask you for your username and password) LogMeIn installer. I am going to show you the way I do it with step by step instructions so that anyone can follow. This tutorial will be broken into two - [Creating a Single Instance C# Application](https://samuelhaddad.com/2009/05/19/creating-a-single-instance-c-application/) - Create a single instance C# application using Mutex - [VBscript Permission Denied 800A0046 Solution](https://samuelhaddad.com/2009/06/26/vbscript-permission-denied-800a0046-solution/) - I was helping a friend write some VBscript the other day. I was trying to write a simple copy function and I kept getting permission denied. However I was logged in locally as the administrator so that could not be it. My code looked something like: The Solution is: add "\" add the end of - [Pointsec boot from CD](https://samuelhaddad.com/2010/01/07/pointsec-boot-from-cd/) - Since I always forget how to boot from a cd using Pointsec I decided to write it down. This brings you to an alternative boot menu. Start computer Enter Pointsec account information. When it prompts you to continue, do not hit continue right away instead press CTRL + F10 Then continue you will be prompted - [Uninstall TrendMicro OfficeScan](https://samuelhaddad.com/2010/06/05/uninstall-trendmicro-officescan/) - This procedure work as of June 5th 2010 The problem: When trying to uninstall TrendMico Office Scan you are prompted for a password. Solution: Start -> run and type MSCONFIG Under services and uncheck TrendMicro Unauthorized Change Prevention Service Restart the computer Start -> run type Regedit Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\TrendMicro\PC-cillinNTCorp\CurrentVersion\Misc Changing the AllowUninstall value to 1 - [Bypass Symantec Endpoint Protection](https://samuelhaddad.com/2010/07/05/bypass-symantec-endpoint-protection/) - So recently I had bypass Symantec endpoint protection. Instead of having to stop services and delete registry keys like my other Trend Micro Post it is worth trying the default password of Symantec which worked for me. - [Prish Image Resizer](https://samuelhaddad.com/2010/09/11/prish-image-resizer/) - There are many Windows 7 Image resizers out there that integerate into the shell, but this is my favorite. http://prishcom.spaces.live.com/blog/cns!6A6A204ABDF15411!128.entry - [AnkhSVN and Google Code](https://samuelhaddad.com/2010/10/14/ankhsvn-and-google-code/) - Recently I was trying to commit to my Jango Desktop project hosted on Google code. I was using AnkhSVN and I kept getting an error similar to: SharpSvn.SvnRepositoryIOException: Commit failed (details follow): ---> SharpSvn.SvnRepositoryIOException: Server sent unexpected return value (405 Method Not Allowed) in response to MKACTIVITY request for If anyone else runs into this - [SoftArtisans OfficeWriter](https://samuelhaddad.com/2010/10/24/softartisans-officewriter/) - Disclaimer: While this article was written before I started working at SoftArtisans, I do work at SoftArtisans now. Support for SoftArtisans products can be found at http://support.softartisans.com/ So today I tried out a product from SoftArtisans called OfficeWriter specifically the WordWriter feature. You can find a Demo here. I set out to create an application - [FMyScript Disappearing Voting Links](https://samuelhaddad.com/2010/11/20/fmyscript-disappearing-voting-links/) - I was recently asked to work on a site running FMyScript. The problem was this every time a voting link was clicked the link would just disappear and the votes were not updated. The solution was two fold: Part 1: The first problem was the voting links has a ' in the string such as - [SharePoint 2010 Development: Getting Started](https://samuelhaddad.com/2011/01/20/sharepoint-2010-development-getting-started/) - [Image via Tihomir Ignatov] Setting up a SharePoint Development Server Recently I wanted to start some SharePoint 2010 development, and taking Microsoft’s recommendation that developing for SharePoint be conducted on a machine that already has it installed, I set out to create development-optimized SharePoint environment. One of the greatest tools I came across was the SharePoint 2010 Easy Setup - [Simple XML Parse Flickr Feed](https://samuelhaddad.com/2010/10/21/simple-xml-parse-flickr-feed/) - So in one of my recent projects I had to parse a Flickr feed and extract the image urls the code I came up with is as follows: Of course my code did more then just extract the URL, but I will leave the rest up to the creative developers. - [System.BadImageFormatException on a 64-bit Machine](https://samuelhaddad.com/2011/01/20/system-badimageformatexception-on-a-64-bit-machine/) - The other day, one of our customers was switching over to 64-bit development machines, and encountered the following issue: System.BadImageFormatException: Could not load file or assembly'(assembly name)' or one of its dependencies. An attempt was made to load a program with an incorrect format. The likely reason is that you (or in this instance, our - [.NET High Quality Thumbnail Generation](https://samuelhaddad.com/2011/01/26/net-high-quality-thumbnail-generation/) - This method is a modified version of Mike Borozdin method which I happen to enjoy very much. The biggest changes I made where to add using statements around the disposable objects such as the Bitmap and the Graphics object to avoid memory leaks, as well as a few minor changes. - [Display driver stopped responding - Flash Green Screen](https://samuelhaddad.com/2011/03/25/display-driver-stopped-responding-flash-green-screen/) - The Problem: Recently I was working on a customers computer and when loading a page with a flash video on it, the video would crash.The following message was displayed in the system tray. Display driver stopped responding and has recovered. The machine I was working on was a Dell Inspiron n5010 with a ATI mobility - [Distributing XULRunner with ClickOnce](https://samuelhaddad.com/2011/09/01/distributing-xulrunner-with-clickonce/) - Recently I was working on ClickOnce Application and I was trying to distribute XULRunner with my application. Unfortunately when deploying the application I realized that not all the files where included in the ClickOnce applications file, particularly text files such as files that ended in .ini or .manifest. The solution was to go into the - [FIX: “The Application HTC Sense (process com.htc.launcher) has stopped unexpectedly”](https://samuelhaddad.com/2011/09/16/fix-the-application-htc-sense-process-com-htc-launcher-has-stopped-unexpectedly/) - Today I did a factory reset on my T-Mobile My Touch 4G however on reboot I continued to get the following error: Sorry! The Application HTC Sense (process com.htc.launcher) has stopped unexpectedly. Please Try Again. The only option available was Force Close, and soon as that was pressed the message would appear again. I tried - [Windows 7 and .chm issue](https://samuelhaddad.com/2009/11/26/windows-7-and-chm-issue/) - Sometimes documentation files can come in .chm or compressed html files. In Windows 7 you may see this error: You may get a page reading "Navigation to the webpage was canceled" The solution: Right click on the file, go to properties and select unblock. - [Outlook Error](https://samuelhaddad.com/2009/10/18/outlook-error/) - The other day I stumbled upon the error message: Cannot start Microsoft Office Outlook. Cannot open the Outlook window. The solution for me was to go to Start -> Run -> and type Outlook.exe /resetnavpane ## Pages - [About Me](https://samuelhaddad.com/about/) - I am an entrepreneurial software engineer with a passion for crafting quality products. My hobbies include traveling, soccer, and foosball. I created this blog to share the issues I run into in hopes that they may help, inspire or entertain someone else. ## Categories - [Uncategorized](https://samuelhaddad.com/category/uncategorized/) - [Software](https://samuelhaddad.com/category/software/) - [Tech Support](https://samuelhaddad.com/category/tech-support/) - [Web](https://samuelhaddad.com/category/development/web/) - [.NET](https://samuelhaddad.com/category/development/net/) - [SSIS](https://samuelhaddad.com/category/development/ssis/) - [SQL](https://samuelhaddad.com/category/development/web/sql/) - [SharePoint](https://samuelhaddad.com/category/development/sharepoint/) - [Development](https://samuelhaddad.com/category/development/) - [ASP.NET](https://samuelhaddad.com/category/development/web/asp-net/) - [Mobile](https://samuelhaddad.com/category/mobile/) - [PHP](https://samuelhaddad.com/category/development/web/php/) - [OsCommerce](https://samuelhaddad.com/category/development/web/oscommerce/) - [GIT](https://samuelhaddad.com/category/development/git/) - [Wordpress](https://samuelhaddad.com/category/development/wordpress/) - [Personal Projects](https://samuelhaddad.com/category/personal-projects/) - [Android](https://samuelhaddad.com/category/mobile/android/) ## Tags - [Digsby](https://samuelhaddad.com/tag/digsby/) - [Social Networking](https://samuelhaddad.com/tag/social-networking/) - [SEO](https://samuelhaddad.com/tag/seo/) - [Netgear](https://samuelhaddad.com/tag/netgear/) - [sc101](https://samuelhaddad.com/tag/sc101/) - [zetatera](https://samuelhaddad.com/tag/zetatera/) - [Programming](https://samuelhaddad.com/tag/programming/) - [Facebook](https://samuelhaddad.com/tag/facebook/) - [Privacy](https://samuelhaddad.com/tag/privacy/) - [Search Engines](https://samuelhaddad.com/tag/search-engines/) - [Pidgin](https://samuelhaddad.com/tag/pidgin/) - [GTK](https://samuelhaddad.com/tag/gtk/) - [Themes](https://samuelhaddad.com/tag/themes/) - [Skins](https://samuelhaddad.com/tag/skins/) - [Look and Feel](https://samuelhaddad.com/tag/look-and-feel/) - [Adobe Photoshop](https://samuelhaddad.com/tag/adobe-photoshop/) - [CS4](https://samuelhaddad.com/tag/cs4/) - [GPU Processing](https://samuelhaddad.com/tag/gpu-processing/) - [LogMeIn](https://samuelhaddad.com/tag/logmein/) - [Silent Installer](https://samuelhaddad.com/tag/silent-installer/) - [LogMeIn Silent Installer](https://samuelhaddad.com/tag/logmein-silent-installer/) - [LyricsWiki](https://samuelhaddad.com/tag/lyricswiki/) - [C#](https://samuelhaddad.com/tag/c/) - [Music](https://samuelhaddad.com/tag/music/) - [Excel Destination](https://samuelhaddad.com/tag/excel-destination/) - [Overwrite Excel File](https://samuelhaddad.com/tag/overwrite-excel-file/) - [SQL Server Integration Service](https://samuelhaddad.com/tag/sql-server-integration-service/) - [Visual Studio](https://samuelhaddad.com/tag/visual-studio/) - [Spam](https://samuelhaddad.com/tag/spam/) - [Wordpress Spam](https://samuelhaddad.com/tag/wordpress-spam/) - [Akismet](https://samuelhaddad.com/tag/akismet/) - [Wordpress Ban](https://samuelhaddad.com/tag/wordpress-ban/) - [Single Instance](https://samuelhaddad.com/tag/single-instance/) - [Mutex](https://samuelhaddad.com/tag/mutex/) - [Custom LogMein Installer](https://samuelhaddad.com/tag/custom-logmein-installer/) - [Single Click LogMeIn Installer](https://samuelhaddad.com/tag/single-click-logmein-installer/) - [VBScript](https://samuelhaddad.com/tag/vbscript/) - [Copy and Paste](https://samuelhaddad.com/tag/copy-and-paste/) - [File System Object](https://samuelhaddad.com/tag/file-system-object/) - [FileSystemObject](https://samuelhaddad.com/tag/filesystemobject/) - [Permission Denied](https://samuelhaddad.com/tag/permission-denied/) - [Permission](https://samuelhaddad.com/tag/permission/) - [Error](https://samuelhaddad.com/tag/error/) - [800A0046](https://samuelhaddad.com/tag/800a0046/) - [Dell](https://samuelhaddad.com/tag/dell/) - [Service Tag](https://samuelhaddad.com/tag/service-tag/) - [WMI](https://samuelhaddad.com/tag/wmi/) - [Serial Number](https://samuelhaddad.com/tag/serial-number/) - [Win32 Bios](https://samuelhaddad.com/tag/win32-bios/) - [Windows Managment Instrumentation](https://samuelhaddad.com/tag/windows-managment-instrumentation/) - [Express Service Code](https://samuelhaddad.com/tag/express-service-code/) - [Outlook](https://samuelhaddad.com/tag/outlook/) - [Microsoft Office](https://samuelhaddad.com/tag/microsoft-office/) - [resetnavpane](https://samuelhaddad.com/tag/resetnavpane/) - [Windows 7](https://samuelhaddad.com/tag/windows-7/) - [Windows Vista](https://samuelhaddad.com/tag/windows-vista/) - [chm](https://samuelhaddad.com/tag/chm/) - [compressed html](https://samuelhaddad.com/tag/compressed-html/) - [Navigation to the webpage was canceled](https://samuelhaddad.com/tag/navigation-to-the-webpage-was-canceled/) - [Pointsec](https://samuelhaddad.com/tag/pointsec/) - [Boot CD](https://samuelhaddad.com/tag/boot-cd/) - [Bart PE](https://samuelhaddad.com/tag/bart-pe/) - [Check Point](https://samuelhaddad.com/tag/check-point/) - [Boot](https://samuelhaddad.com/tag/boot/) - [Google Code](https://samuelhaddad.com/tag/google-code/) - [Ankhsvn](https://samuelhaddad.com/tag/ankhsvn/) - [405 Method Not Allowed](https://samuelhaddad.com/tag/405-method-not-allowed/) - [MKACTIVITY](https://samuelhaddad.com/tag/mkactivity/) - [TrendMicro Office Scan](https://samuelhaddad.com/tag/trendmicro-office-scan/) - [SoftArtisans](https://samuelhaddad.com/tag/softartisans/) - [Office Writer](https://samuelhaddad.com/tag/office-writer/) - [FMyScript](https://samuelhaddad.com/tag/fmyscript/) - [FML](https://samuelhaddad.com/tag/fml/) - [Voting](https://samuelhaddad.com/tag/voting/) - [Thumbnails](https://samuelhaddad.com/tag/thumbnails/) - [Bitmap](https://samuelhaddad.com/tag/bitmap/) - [ATI mobility Radeon HD 5470](https://samuelhaddad.com/tag/ati-mobility-radeon-hd-5470/) - [Windows 7 x64bit.](https://samuelhaddad.com/tag/windows-7-x64bit/) - [Dell Inspiron n5010](https://samuelhaddad.com/tag/dell-inspiron-n5010/) - [Display driver stopped responding and has recovered](https://samuelhaddad.com/tag/display-driver-stopped-responding-and-has-recovered/) - [Flash Green Screen](https://samuelhaddad.com/tag/flash-green-screen/) - [Hardware Acceleration](https://samuelhaddad.com/tag/hardware-acceleration/) - [Strong Name](https://samuelhaddad.com/tag/strong-name/) - [PFX](https://samuelhaddad.com/tag/pfx/) - [CSP](https://samuelhaddad.com/tag/csp/) - [Android](https://samuelhaddad.com/tag/android/) - [T-Mobile](https://samuelhaddad.com/tag/t-mobile/) - [HTC](https://samuelhaddad.com/tag/htc/) - [Sense](https://samuelhaddad.com/tag/sense/) - [My Touch 4G](https://samuelhaddad.com/tag/my-touch-4g/) - [MYSQL](https://samuelhaddad.com/tag/mysql/) - [Databases](https://samuelhaddad.com/tag/databases/) - [CrossTable Update](https://samuelhaddad.com/tag/crosstable-update/) - [Regex](https://samuelhaddad.com/tag/regex/) - [Regular Expressions](https://samuelhaddad.com/tag/regular-expressions/) - [Internet Explorer 10](https://samuelhaddad.com/tag/internet-explorer-10/) - [Windows 8](https://samuelhaddad.com/tag/windows-8/) - [Desktop Mode](https://samuelhaddad.com/tag/desktop-mode/) - [Browser](https://samuelhaddad.com/tag/browser/) - [Jenkins CI](https://samuelhaddad.com/tag/jenkins-ci/) - [Jenkins](https://samuelhaddad.com/tag/jenkins/) - [Office](https://samuelhaddad.com/tag/office/) - [Word](https://samuelhaddad.com/tag/word/) - [Excel](https://samuelhaddad.com/tag/excel/) - [PowerPoint](https://samuelhaddad.com/tag/powerpoint/) - [Content Types](https://samuelhaddad.com/tag/content-types/) - [Template](https://samuelhaddad.com/tag/template/) - [Header Blocks](https://samuelhaddad.com/tag/header-blocks/) - [Dropdown](https://samuelhaddad.com/tag/dropdown/) - [Postback](https://samuelhaddad.com/tag/postback/) - [PreRender](https://samuelhaddad.com/tag/prerender/) - [InvalidOperatinExceptiion](https://samuelhaddad.com/tag/invalidoperatinexceptiion/) - [Script](https://samuelhaddad.com/tag/script/) - [ASPxDateEdit](https://samuelhaddad.com/tag/aspxdateedit/) - [Chrome](https://samuelhaddad.com/tag/chrome/) - [DevExpress](https://samuelhaddad.com/tag/devexpress/) - [Scrolling](https://samuelhaddad.com/tag/scrolling/) - [mdavscli](https://samuelhaddad.com/tag/mdavscli/) - [Apache Cordova](https://samuelhaddad.com/tag/apache-cordova/) - [Visual Studio Tools](https://samuelhaddad.com/tag/visual-studio-tools/) - [Android SDK](https://samuelhaddad.com/tag/android-sdk/) - [AVD Emulator](https://samuelhaddad.com/tag/avd-emulator/) - [Instant Messaging](https://samuelhaddad.com/tag/instant-messaging/) - [Tech Support](https://samuelhaddad.com/tag/tech-support/) - [.NET](https://samuelhaddad.com/tag/net/) - [SSIS](https://samuelhaddad.com/tag/ssis/) - [SQL](https://samuelhaddad.com/tag/sql/) - [ASP.NET](https://samuelhaddad.com/tag/asp-net/) - [Mobile](https://samuelhaddad.com/tag/mobile/) - [OsCommerce](https://samuelhaddad.com/tag/oscommerce/) - [Resharper](https://samuelhaddad.com/tag/resharper/) - [command line tools](https://samuelhaddad.com/tag/command-line-tools/) - [dupfinder](https://samuelhaddad.com/tag/dupfinder/) - [dupfinder.exe](https://samuelhaddad.com/tag/dupfinder-exe/) - [Pandora](https://samuelhaddad.com/tag/pandora/) - [Twitter](https://samuelhaddad.com/tag/twitter/)