websites

What should I know about user antisocial behavour?

Inspired by this posting http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site, I wanted to know: What should I know about user antisocial behavour? I know some users will try everything mentioned in that posting. Other users will spam others, write post to troll others. What are some th...

Where to Find Freelance Programmers

What is the best website to find freelance programmers? I would like to outsource an iphone application ( possibly the rest of the mobile platforms as well). Has anyone used: http://www.getafreelancer.com http://www.elance.com http://www.guru.com Thanks ...

books/sites to get good at algorithm competitions

Hi, I've been practicing doing topcoder and acm contests(local ones and practice sets). But I'm hitting a brick wall in terms of performance. I can solve the first topcoder problem, but almost never the second one. I need some solid theory and memory of common strategies/algos/structures involved in these types of competitions. Just try...

Displaying webserver information without breaking security.

Simple question: I am working on a website and want to display a page with some useful information about the web server, but without providing useful information to any potential hacker. What kind of (server) information is safe to share and how do I get this information when using Visual Studio 2008? ...

List of version numbers of assemblies used by it's web site.

A simple question. I have an ASP.NET web application which contains several assemblies and I need to create a list of version information for every assembly in the web site. (And perhaps even a few others too, but the focus is mostly for the site itself.) This list will be displayed within the same application on a protected page and is...

What Software Do You Use To Create Sitemaps / Site Structure For Large Sites?

Just wondering what software you use to create a visual sitemap / site structure representation before you start big sites? I am looking to map out a large site, but cannot find any good software to help me map the site visually (And in pages/categories).. ...

Raster graphics or vector graphics, which to choose for web-site development/designing?

While looking for a good tool for web-site development/designing on linux, I in the end got stuck with what to choose, the raster graphics or vector graphics. Gimp/Photoshop -- if you prefer Raster graphics (bitmaps i think) Inkscape/Fireworks -- if you prefer vector graphics (svg i think) I am totally inexperienced in this domai...

How are intellectual property/patents enforced on the Internet?

It seems that throughout the Internet, different companies often take core ideas from one another and implement it on their own website. A good example is Facebook taking ideas from Twitter and Friendfeed and incorporating it into their news feed, although there are hundreds of other examples of products being "inspired" by other product...

Good websites to help Java ME development?

Since J2ME apps have so many possible devices they can run on, there's lots to consider during each step of development. Are there websites that help you with the design process? Statistics of API and MIDP version availability on phones of all manufacturers? Browsing of APIs and Classes available by category? Articles and reviews of A...

How do I check what programming language a website is using?

How do we check what programming language a website is using? I mean something like this: www.domain.com How to check its using html, php, aspx, ruby on rails or etc? I only want to know the mainpage (www.domain.com), not the sub-page (www.domain.com/about/). ...

What are the active J2ME forums?

I'm interested in J2ME programming, and so it would be nice to discuss with other experienced people about issues and ideas during my development process. Do you know what are the active J2ME forum websites? Forums where J2ME devs visit frequently? Thank you. ...

practically most used background colors in web design

I'm customizing a color picker's default showing colors which will be used as background colors. I'm wondering if there is a collection of the colors that are particularly useful in practical web design. Like nobody(hopefully) would use #f00 as a 100%-width page's background color while #fff is a universally usable one, there's DO'S and ...

Expression Builder requires SPContext to run

I am having a problem with visual studio 2008 websites and SharePoint/MOSS 2007. We previously had 2 web application projects housed underneath our SharePoint structure, but due to the nature of project files and source control, it was creating problems in our team development environment. I have decided to switch to from web application...

Content Management System

Can anyone tell me the site where I can build a website which is compatible to host applications such as video and photo gallery? ...

How can we tell what language/technology was used to render an HTML document?

In general, a web application can render any HTML it likes. Therefore, in theory, any language could render identical HTML output. However, there are some ways we can try to deduce what is running server-side. For instance, file extensions are usually a dead giveaway (although they could technically be faked). Due to my experience with ...

CSharp Generics Samples

Like Linq 101 samples form Microsoft site,is there any site shows examples on Generics? or like albhari on threading can i get any ebook? ...

how to modify this code to include logging of ip address to another file

please look at the simple php webpage code below how can modify my code so that a log file is created on my server which logs each visitor's ip and whether it was successfully redirected to the correct page . something like that. <?php $a = $_SERVER['REMOTE_ADDR']; if ( $a == "117.96.112.122" ) { header("Location: ad_sams_...

Beginning of a career, the online way

I am at the last year of my scholar curriculum (Computer Science Engineering, a pretty broad title but yes, there is no specialization at my university). I now wish to make my profile available online for job recruiting purposes. I am aspiring for an international career (I am French, but I've studied quite a lot abroad and currently li...

Website revision control system

I'm looking for the ability to use a revision control system for websites, but ALSO have the revisions go live immediately. Example: A developer submits to the repository, those changes are live immediately pulled from the repository. Any suggestions on available software? ...

composed divs on the same line

hey guys, I'm building a site and I have a proble. I have a composed divs : <div id="content"> <div id="left"> <div id="leftcontent">...</div> </div> <div id="center"> <div id="centercontent">...</div> </div> <div id="right"> <div id="rightcontent">...</div> </div> How can I put left, center, and right in the same line ? which...