This is just a spot to keep miscellaneous links. It also shows you what a geek I am.
Sunday, January 31, 2010
Upgrade causes loss of f5 networks host plugin
Why F5 Network didn't fix it, I don't know...
To install it :
- download the urhostplg.xpi file
- rename it in urhostplg.zip and unzip it
- change the version limit in 'install.rdf' file :
From :3.1.*
To : 3.5.*
- zip and rename to urhostplg.xpi
- drag and drop the .xpi on Firefox to install it"
Pushing to a Git repository using the wrong case causes peculiar behavior (maybe involves --forcing)
Unpacking objects: 100% (3/3), done.
From github.com:sidecut/Quest-Paperless
+ 22b4432...7d00da0 TRY-remove-LLBLGEn -> origin/TRY-remove-LLBLGEn (forced update)
error: Ref refs/remotes/origin/TRY-remove-LLBLGen is at 7d00da03b4a76116ffbaf89a4b5f6d54aeba9810 but expected 22b4432207570926a71d969a7ff8da821bf68354
! 22b4432..cddedc1 TRY-remove-LLBLGen -> origin/TRY-remove-LLBLGen (unable to update local ref)
As evident from gitk, the remote branch refused to advance farther, but I could continue to push to that branch from the office. (Notice the git fetch output mentioned a forced update. I don't remember, frankly, whether I pushed it in that way from the office
The culprit was hiding in plain site: the error message showed that the branch names that differed only in case:
TRY-remove-LLBLGEn
TRY-remove-LLBLGenThe solution? Dropped the branch
TRY-remove-LLBLGEn and recreated it using the proper case:git push origin :TRY-remove-LLBLGEn
git push origin TRY-remove-LLBLGen
Monday, January 25, 2010
Web Service Functional Testing - Tips and Tricks Login Security - soapUI
Friday, January 22, 2010
Youssef Moussaoui's WCF blog : How to Change .NET Configuration Files at Runtime (including for WCF)
One of the most common issues people run into with WCF configuration, and .NET applications in general, is that configuration files appear to be fixed. You only have one configuration file for an executable, and you can’t use different configuration files as your exe.config while the application is running. Of course, you can always shut down the application, change the configuration, and then restart it with the new configuration file, but that’s tedious and oftentimes undesirable. In this blog post, I’ll show you how to easily get around this limitation."
Wednesday, January 20, 2010
SharpTemplate � Xtreem Geek
Converts HTML into C# that gets compiled by Script#
Benefits from strong typing for all variable / API references that occur within the HTML
Generated HTML templates are super efficient due to compile time pre-processing that helps avoid regex matching in JavaScript unlike many other templating engines
Familiar templating syntax (based upon Asp.Net)
If you are not already using some sort of compile time HTML templating with Script# then you must definitely give this a try and see the productivity boost for yourself.
SharpTemplate has Script# as its prerequisite.� It can work in VS2008, VS2010 and Visual C# express."
Thursday, January 14, 2010
[ANN] DC ALT.NET – 1/27/2010 - Clojure
[ANN] DC ALT.NET – 1/27/2010 - Clojure: "Simply put, Clojure is a dynamic general purpose programming language that targets both the Java Virtual Machine as well as the .NET CLR. This language, which is a dialect of Lisp, combines the ease of an interactive development scripting language with something that makes it stand out, which is a robust concurrency infrastructure. Parts of the concurrency story that are interesting is both a software transactional memory (STM) system as well as a reactive agent system much like the Mailboxes we’ve covered here in F#. What also makes Clojure interesting is that it is predominantly a functional language with a rich set of immutable data structures.The Clojure site is the best place to get started which includes the language features reference, basic tutorials, screencasts and more. For those who wish to get Clojure working on the CLR, there are great instructions at the Git repository for ClojureCLR. In the future, I’ll cover more of the language, but these two references should be enough to get you started.
"
Wednesday, January 13, 2010
DotNet JQuery (DNJ) : new features in version 0.4.0
Check Out the Newest Additions to the Control Gallery!
Tuesday, January 12, 2010
Subversion seems to be losing favor among version control users : Jeffrey Palermo (.com)
Friday, January 08, 2010
Thursday, December 31, 2009
Eureka! SoapExtension problems solved! - Jan Tielens' Bloggings
Wednesday, December 30, 2009
ASP.NET.4GuysFromRolla.com: Exception Handling Advice for ASP.NET Web Applications
| "The Crib Notes |
|---|
My advice for handling exceptions in an ASP.NET application can be boiled down to the following guidelines:
|
Tuesday, December 29, 2009
How to Make Your ASP.NET Third Party Component 10x Faster > Web/Cloud Applications Development Platform > White Papers
I wonder how well this works. I tried making a control using Visual WebGui, but it was extremely expensive to load up a hundred of them on one page (yes, that's my requirement).
1.1�What is the Empty Client?
This architecture is an emerging open source methodology which offers a different approach to architecting, developing and deploying AJAX applications. In order to shed some light on this methodology, we will compare it to the classic Thin and Thick (also referred to as Fat or Smart) client approach and to traditional AJAX structures. Empty Client offers a new balance between the Thin and Thick client approaches and a new channeling of the AJAX calls."
Monday, December 21, 2009
Making Sense of ASP.NET Paths
Tuesday, December 15, 2009
How to commit in Git when there are "suspicious patch lines" with trailing whitespace
1. Stage desired files using "git add" or "git add -p" or "git gui" or "git citool" etc.
2. Use "git commit --no-verify"
Actually, was this really worth a blog post? Since this blog acts to augment my memory, I guess it does.
Friday, December 04, 2009
Dynamic LINQ - Development With A Dot
Saturday, November 21, 2009
ASP.NET 2.0: Playing a bit with GridView "Sort Grouping"
A few ASP.NET 2.0 GridView Sorting Tips and Tricks
Mike has a nice post that walksthrough how to implement custom bi-directional sorting with the GridView. Souri uses a similar approach to implement multi-column GridView sort semantics.
Teemu then has a cool post that shows how to implement 'sort grouping' where you can sub-group/band row values within the GridView:
Hope this helps,
Scott"
Thursday, November 12, 2009
Deployment of DHTML Visual WebGui application with different extension than the standard .WGX > Web, Cloud Applications Development, Deployment
Monday, November 09, 2009
jQuery Performance Rules
- Always Descend From an #id
- Use Tags Before Classes
- Cache jQuery Objects
- Harness the Power of Chaining
- Use Sub-queries
- Limit Direct DOM Manipulation
- Leverage Event Delegation (a.k.a. Bubbling)
- Eliminate Query Waste
- Defer to $(window).load
- Compress Your JS
- Learn the Library