Random Links at Kaboodle
  • Print Print

Random Links

by senfo   |   17 Comments

0 Hearts

View:   List | Grid | Slideshow
flag-list Flag List
This list will be added to your My Favorites list.

Cancel
Show 30 | 60
1
default
Web Services References...

See this at: databasejournal.com| Added on 02/18/07

As usual, there is a download associated with this article, but this time it is multi-dimensional. It contains a Microsoft Access database that should work for you, out of the box, so long as you have Access 2003 installed. If it fails to work for... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
List Versus Collection

See this at: blogs.msdn.com| Added on 02/13/07

DoNotExposeGenericLists fires when I publicly expose List via a field, method, property, or parameter. Why? Although Krzysztof briefly touched on this last year, we wanted to expand on this a little through the use of examples. The first reason is... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Browse Designs

See this at: openwebdesign.org| Added on 12/22/06

Design Related * › Browse Designs * › Search Designs * › Am I Design or Not? * › Most Popular Designs * › Past Design Contests * › Designs in Action * › Link to us! Other Features * › Suggestion Box * › User Home Page * › Forum

TAGS: CSS, HTML, template

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
How Google Finds Your...

See this at: ams.org| Added on 12/06/06

* Michael Berry, Murray Browne, Understanding Search Engines: Mathematical Modeling and Text Retrieval. Second Edition, SIAM, Philadelphia. 2005. * Sergey Brin, Lawrence Page, The antaomy of a large-scale hypertextual Web search engine, Computer... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Creating Line Chart For...

See this at: codeproject.com| Added on 12/04/06

This article shows you how to create a line chart for web forms using C#. I think there are several third party components available for creating line chart and graphs. It wouldn't get you a knowledge on how internally it works. Hence I have created... See more more

Highlights: Ultimate Combo MFC tools $449 | Send to a friend

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
CSS-Based Forms: Modern...

See this at: smashingmagazine.com| Added on 11/21/06

In Web 2.0 registration and feedback forms can be found everywhere. Every start-up tries to attract visitors’ attention, so web-forms are becoming more and more important for the success of ??? company. In the end, exactly those web-forms are... See more more

TAGS: css, html

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Custom Script Callbacks...

See this at: msdn.microsoft.com| Added on 11/08/06

If you've read my recent ASP.NET 2.0 GridView feature article, you know that the GridView control does not require you to refresh the whole page in order to display a new page of records. In fact, the GridView control provides an advanced engine for... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Hacking Web 2.0...

See this at: securityfocus.com| Added on 10/12/06

The preceding code makes an asynchronous call to the backend web server and asks for the resource getnews.aspx?date=09262006. The content of this page is placed at the ‘result’ id location in the resulting HTML page. This is clearly an Ajax call... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
ASP.NET 2.0 Membership,...

See this at: weblogs.asp.net| Added on 10/11/06

ASP.NET 2.0 Security, Membership and Role Management Book Stefan Schackow is the ASP.NET Team technical expert and feature-owner for a lot of the core sub-systems in ASP.NET, and he owned the security, membership and role management features for... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.

See this at: codeproject.com| Added on 09/28/06

ASP.NET provides a mechanism to validate user input. That is, before a user submit his/her page, there are several kinds of validators that validate the input. However, in WinForms, we can't get those excellent components. When we validate a text in... See more more

Highlights: Ultimate Combo MFC tools $449 | Send to a friend

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Google Cheat Sheets...

See this at: adelaider.com| Added on 09/28/06

This two page Google Cheat Sheet lists all Google services and tools as well as background information. The Cheat Sheet offers a great reference to grasp of basic to advance Google query building concepts and ideas.

TAGS: Google

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
How To Create a Custom...

See this at: support.microsoft.co...| Added on 09/22/06

In its final form, your class file should appear as follows: using System; using System.Web; using System.Xml; using System.Configuration; namespace MyConfig { public enum LevelSetting { High, Medium, Low, None } public class MyConfigSectionHandler :... See more more

TAGS: C#, development

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Setting up Stored...

See this at: codeproject.com| Added on 09/21/06

peID)) AND (Clients.AdvertisingID

Highlights: Ultimate Combo MFC tools $449 | Send to a friend

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.

See this at: yoda.arachsys.com| Added on 09/21/06

using System; using System.Threading; using System.Runtime.Remoting.Messaging; class AsyncTest { delegate string UrlFetcher(string url); public static void Main() { UrlFetcher u = new UrlFetcher (Fetch); u.BeginInvoke ("some url", new AsyncCallback... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Power Toys for Visual...

See this at: msdn.microsoft.com| Added on 09/21/06

Peter Ritchie - Peter has been working professionally in software development for over 16 years. He's been working with computer software far longer, since his first computer, an Atari 800. Starting in C, Peter progressed to C++ not too long after... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
How To Distinguish...

See this at: groups.google.com| Added on 09/15/06

It seems to me that the OS does distinguish single and double clicks all over the place right now. For instance the recognition delay is programmable in the mouse control panel. Also, MFC readily handles this issue. My feeling is that this is a .NET... See more more

TAGS: C#, development

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Simplify Task Progress...

See this at: msdn.microsoft.com| Added on 09/12/06

Sometimes the examples aimed at demonstrating a given feature or technology have to be simple and canonical; sometimes not. This is one of the cases in which a more realistic example helps to reveal the potential of the underlying framework and... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Creating simple...

See this at: codeproject.com| Added on 08/30/06

What we need to do in the autoclicker? To keep things simple, we only set two things: where to click and how often to click. The point where to click can be stored in a variable of type Point, the interval will be set on our Timer. First thing to do... See more more

TAGS: C#, development

Highlights: Ultimate Combo MFC tools $449 | Send to a friend

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
ScottGu's Blog

See this at: weblogs.asp.net| Added on 08/22/06

If you haven’t watched this great online video yet you absolutely should. It walks through how to add Forms Authentication (using the <asp:login> control) with a secure Membership Credential Store + Role Based Security to a site, then implement pages... See more more

Highlights: He has recently published an awesome book on ASP.NET Security, Membership and Roles that you can buy for $26 on Amazon here.

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
ASP.NET Security: 8 Ways...

See this at: devx.com| Added on 08/22/06

uilding ASP.NET Web applications has never been easier. Visual Studio.NET hides so many technical details behind the scenes that developers need only concentrate on the core business logic. However, hackers are on the lookout for any opportunity to... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
“Programming PIC...

See this at: mikroe.com| Added on 08/18/06

Learn how to write your own program, debug it, and use it to start the microcontroller. We have provided plenty of practical examples with necessary connection schemes: temperature sensors, AD and DA converters, LCD and LED displays, relays,... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
* 5 HTML elements you...

See this at: seomoz.org| Added on 08/17/06

* 5 HTML elements you probably never use (but perhaps should)

TAGS: HTML, tags

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Hacked Gadgets Forum

See this at: hackedgadgets.com| Added on 08/11/06

“Five pins from RA0 to RA4 are used as the input pin. These pins are pull-uped with 10K ohm resisters. So, when a switch isn’t pushed, the input becomes H level ( +5V ). and when a switch is pushed, it will become L level ( 0V ). When the switch... See more more

Highlights: $2.00 Shipping!

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Efficient and DYNAMIC...

See this at: weblogs.sqlteam.com| Added on 08/10/06

The basic idea is to process as few rows as possible; this means finding the starting point, and then returning all rows “past“ that starting point until the desired number of rows has been returned.

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Home

See this at: sharpdevelop.net| Added on 07/31/06

#develop (short for SharpDevelop) is a free IDE for C#, VB.NET and Boo projects on Microsoft's .NET platform. It is open-source, and you can download both sourcecode and executables from this site. In addition, you can find the latest information and... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
News

See this at: monodevelop.com| Added on 07/31/06

* Code Completion. MonoDevelop's intelligent code completion attempts to complete type, method and field names as you're typing. The IDE will automatically get the class information from your source code files and from the libraries referenced in... See more more

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
event will include a...

See this at: codeproject.com| Added on 07/12/06

event will include a mechanism for signaling back to the property that generated the event that the update is to be cancelled, enabling event handlers to validate the proposed new value, and reject the new value if it fails validation. The article... See more more

Highlights: Ultimate Combo MFC tools $449

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Weeeeeeeee! (Gonads &...

See this at: albinoblacksheep.com| Added on 06/30/06

by Threebrain

TAGS: temp

Comments (1)

Just a temp movie thing. Watch and delete.

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
What is a decibel?

See this at: phys.unsw.edu.au| Added on 06/23/06

Let's go one step more complicated. Let's work out the value of (102)3. This is easy enough to do, one step at a time: (102)3 = (100)3 = 100*100*100 = 1,000,000 = 106. By writing it out, you should convince yourself that, for any whole numbers n and... See more more

TAGS: math

Comments (1)

Also gives explanation of what a logarithm is.

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Douchenator Water Balloon...

See this at: soakermedia.sscentra...| Added on 05/24/06

Want to shoot an object at 140 MPH over 500ft? Then this launcher is for you! This article will teach you how to build one of the cheapest, easiest, and most powerful water balloon launchers ever invented.

TAGS: fun

comment Add a comment

Sign in to comment. Not a member yet? Sign up here.
Show 30 | 60
1

Sign in to comment. Not a member yet? Sign up here.

Share This List!

Share via URL:

Delete