Welcome to my web developer site: I post stuff here that I want to be able to find later. Look around, search, post comments, subscribe to my RSS feed, or follow me on Twitter. I made this site with Datapod.
A slide presentation on how FMC and UML work together: "FMC is for system-related structures and UML for software-related structures", FMC fills the gap. post comment |
a good overview of guidelines to think about when communicating with diagrams, based on FMC but widely applicable post comment |
Something like UML but "FMC is for system-related structures" and "UML for software-related structures" as in "The book describes Africa like software describes a system.", FMC "provides a framework to describe software-intensive systems", diagrams are easy to understand, what makes it special is it "focuses on human comprehension of informational systems". post comment |
This tutorial shows you how to install everything you need to develop Silverlight (with the free Web Developer Express and a 30-day version of Blend 2) and shows you how to write your first Silverlight application switching back and forth between the two. This tutorial is for you if you want to get everything installed as quickly as possible so you can get started with Silverlight examples. |
Classy way to show old-style pictures that have a white frame. post comment |
Haven't tried it, Scott Hanselman said it was a "joy to use". Free. post comment |
Might use this for my web developer site for short news items, nice "view all" and "view less" options. post comment |
Image on left in demo works well, one one right with click is skippy. post comment |
Looks like an article explaning how to get columns to be the same height in CSS like you can do it so easily in tables. post comment |
A photoviewer that makes the pictures pop out but also with next and previous, nice. post comment |
Seems to be a library built on top of jQuery itself, reusable widgets, nice demos, take a look. post comment |
Would be very useful in forms, e.g. telephone numbers. post comment |
Article describing why you shouldn't host your own jquery but instead just reference the jquery on Google's servers, speeds things up, I just use the latter simple example, works well. UNCOMFIRMED CAVEAT: I've heard that people who have done this on their personal sites could not access these sites from within their companies since some companies have policies which disallow pulling script from other sites (protection against cross scripting). post comment |
Very easy to use, intuitive, etc. post comment |
Works nicely, lots of options, produces professional quality, upload or point to URL picture. post comment |
Type in your URL, wait about 10 minutes and then get a screenshot of your site in over 50 browsers, very interesting. Discovered that my site had black squares on IE 4, IE 5.5 and IE 6.0. VERY useful this tool. post comment |
Very classy with transparency titles. post comment |
Nice effect to know about, would need the right context, demo on first page. post comment |
Allows you to basically do asserts (.ok) on jquery, project by John Resig, integrates with firebug. post comment |
Looking to move to a new mode of twitter consumption, this looks nice, Adobe Air, allows categorization, search, etc. post comment |
Narrate videos and make them available in one click, free. post comment |
A conference not about a particular technology but how all (web2.0) technologies work together. In Denver, CO in May. post comment |
A programming language for kids, from microsoft, worth checking out if you are a teacher, etc. post comment |
This is a blog site written in ASP.NET MVC as an example of a full application, try it out, open source at codeplex. post comment |
How to get the base physical path in PHP (like mappath in ASP.NET) This line:[code]echo dirname($_SERVER['SCRIPT_FILENAME']); CODEreturns, e.g. C:/xampplite/htdocs/web/testScriptswhich can be used to make sure you are including the correct file no matter where you are in the application, e.g. if you are inside file that renders as a graphic or if you are rendering HTML, etc. post comment |
Simple LINQ to array Shows how get all names out of an arraylist which end with "n".[code]ArrayList memberNames = new ArrayList() { "Jim", "John", "George", "Ann"};memberNames.Add("Alice");IEnumerable<string> names = memberNames.OfType<string>().Where(x => x.EndsWith("n"));foreach (string name in names){ Console.WriteLine(name);} CODE post comment |
Regex to replace text only outside certain tags This code shows how to search and replace HTML-coded brackets with actual brackets but not withi PRE tags, e.g. if you want to include code examples between your PRE tags. It is also a nice use of preg_replace_callback.[code]$text = 'This should be <i>italic</i> but <pre>not <i>this</i> since it is in code</pre> and this should be <i>italic</i> again.';$newText = preg_replace_callback('%<|>|<pre>.*?</pre>%si', compute_replacement, $text);echo $newText;function compute_replacement($groups) { if ($groups[0] == '<') { return '<'; } elseif ($groups[0] == '>') { return '>'; } else { return $groups[0]; }} CODE post comment |
A deeper defragger than most, does registry hives, files, etc. post comment |
Like vnc, free for non-commercial use, use other PCs remotely. post comment |
Click "try it now" can drag and drop to plan software, need to spend some time here, new concepts, also watch the youtubes. post comment |