webdotdev

Stories kicked by webdotdev

Preface of Ruby/GTK2 Tutorial (webdotdev.com)

submitted by webdotdevwebdotdev(70) 4 years, 4 months ago

GTK is accessible through several programming languages, such as C++, Guile, Perl,Python, TOM, Ada95, Objective C, Free Pascal, Eiffel, Java, and C#. This document covers Ruby/GTK2, the Ruby binding for the GTK library version 2. The reader should have some Ruby knowledge. It would be better if he/she has some experience on X programming, but this is not required.This document is still under construction. Do not hesitate to send comments or as questions to the mailing list. Any feedback will be greatly appreciated. read more...

add a comment |category: |Views: 20

tags: another

uuid UUID objects according to RFC 4122(webdotdev.com)

submitted by webdotdevwebdotdev(70) 4 years, 4 months ago

This module provides immutable UUID objects (the UUID class) and the functions uuid1(), read more...

add a comment |category: |Views: 6

tags: another

C++ Functions Part II (webdotdev.com)

submitted by webdotdevwebdotdev(70) 4 years, 4 months ago

Until now, in all the functions we have seen, the arguments passed to the functions have been passed by value. This means that when calling a function with parameters, what we have passed to the function were copies of their values but never the variables themselves. For example, suppose that we called our first function addition using the following code: read more...

add a comment |category: |Views: 0

tags: another

A Ruby HTTP Daemon That's Faster Than Mongrel (webdotdev.com)

submitted by webdotdevwebdotdev(70) 4 years, 4 months ago

Thin is a new web server which has been written by Marc-André Cournoyer that uses the EventMachine, Rack and Mongrel libraries. EventMachine makes it super fast at processing network I/O, Rack makes it easy to integrate with existing Ruby Web app frameworks, and Mongrel helps it parse HTTP. read more...

1 comment |category: |Views: 2

tags: another

Call for help with the Code Camp server written using ASP.NET MVC(codebetter.com)

submitted by aaronlerchaaronlerch(1670) 4 years, 4 months ago

Jeffrey Palermo has announced a call for participation in the open source "code camp" server project. If anybody has been involved with code camps before, they know there's limited resources out there for organizing one - this promises to be a great resource. But it'll only be as great as you want it to be! Contribute! read more...

add a comment |category: |Views: 55

tags: another

How to Use Hirarchical DataTemplates - Improved !!!(dev102.com)

submitted by razamitrazamit(4566) 4 years, 4 months ago

As it turns out, my latest post about DataTemplates was not the most efficient way to do this. I used a different Template for the root and a second one for the all the rest of the data.... read more...

add a comment |category: |Views: 59

tags: another

Microsoft Sync Framework Support in Visual Studio 2008(vitalygorn.com)

submitted by vitalyvitaly(740) 4 years, 4 months ago

How to add synchronization framework to your app in several mouse clicks in Visual Studio 2008. read more...

add a comment |category: |Views: 230

tags: another

Messing around with various ORMs(davesquared.blogspot.com)

submitted by troyhunttroyhunt(831) 4 years, 4 months ago

Some good posts on using various ORM methods to implement a common requirement. Includes "How Tos" and conclusions on LINQ to SQL, NHibernate, SubSonic and ADO.NET Entity Framework Beta 3. read more...

4 comments |category: |Views: 23

tags: another

Ctrl-S in web.config in Visual Studio closes web.config file(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 4 months ago

If you've hit a bug in Visual Studio where you hit Ctrl-S/Save while editing a web.config file causes the web.config file to close, you're not alone. Looks like the ADO.NET Entity Tools Designer somehow mucked up the Visual Studio save option for web.config files. read more...

1 comment |category: |Views: 3

tags: another

Adding CSS Colors to Visual Studio 2005(carlj.ca)

submitted by CarlJCarlJ(875) 4 years, 4 months ago

One of my biggest pet peeves about Visual Studio, is that it displays a lot of HTML formatting errors as errors, instead of warnings, and one of the most common HTML errors that Visual Studio 2005 likes to display is the invalid color values, such as “AliceBlue“, “Bisque“, “CornflowerBlue“, “Chartreuse” and “Linen” to name a few. Here's a quick and dirty way to solve this problem. read more...

add a comment |category: |Views: 2

tags: another

Lambda expression – predicate and projection(vikramlakhotia.com)

submitted by Vineet2Vineet2(435) 4 years, 4 months ago

Some of the Lambda expression have particular name, which is based on their purpose. Predicate and projection are two type of Lambda expression, which have their name, based on the purpose. read more...

add a comment |category: |Views: 53

tags: another

LINQ In An N-Tier Architecture(compiledmonkey.com)

submitted by CompiledMonkeyCompiledMonkey(135) 4 years, 4 months ago

Brainstorming an n-tier architecture using LINQ. read more...

add a comment |category: |Views: 574

tags: another

Web Application Foundation - Part 1 - Preparing a Continuous Integrati(arkesystems.com)

submitted by trentontrenton(60) 4 years, 4 months ago

First article in a series for setting up a web application in a continuous integration environment. read more...

add a comment |category: |Views: 1

tags: another

Using SingleTagSectionHandler Instead Of appSettings(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 8 months ago

As an alternative to appSettings you can use SingleTagSectionHandler to store settings in a web.config file. Learn how. read more...

4 comments |category: |Views: 439

tags: another

DataGrid Columns in ASP.NET 1.x(webdotdev.com)

submitted by webdotdevwebdotdev(70) 5 years, 5 months ago

Working with the DataGrid component in ASP.NET 1.x can be an overwhelming task at times. With so many configurable options available and a myriad of different attributes and parameters to work with your head can be spinning in no time. read more...

add a comment |category: |Views: 1

tags: another

Is DHTML Dead?(webdotdev.com)

submitted by webdotdevwebdotdev(70) 5 years, 6 months ago

September 1997 saw the release of Microsoft's Internet Explorer™ 4, an event which not only changed the face of web development but officially marked the start of the infamous 'Browser Wars'. Shipped with every version of Microsoft Windows™ (beginning with the final beta release of Windows 98), Internet Explorer soon became by far the most popular browser on the web. Version 4 saw the introduction of Dynamic Hyper Text Markup Language (DHTML) support, combining aspects of scripting with Cascading Style Sheet (CSS) technology and thus allowing web developers the option of bringing far greater interactivity to their previously static HTML documents. read more...

add a comment |category: |Views: 1

tags: another