Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

Thesisus

@Thesisus
About
Posts
68
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • You have to read this (Medical Article)
    T Thesisus

    Surprisingly even to myself, I don't have a problem at all with the thought of fecal transplant. I guess it is because I've worked in the hospital and there are other bodily fluids far more disgusting than rectal matter. In fact there isn't much inside of the human body that is pleasant when it is on the outside.

    Fear not my insanity, fear the mind it protects.

    The Lounge html database com question

  • Reverting back to Windows XP
    T Thesisus

    Knock yourself out :) http://cosmos.codeplex.com/[^]

    Fear not my insanity, fear the mind it protects.

    The Lounge com question

  • SQLServer 2008 R2 Free E-Book
    T Thesisus

    Thanks! Good find.

    Fear not my insanity, fear the mind it protects.

    The Lounge database com sysadmin question announcement

  • Overlay sound onto another sound
    T Thesisus

    You might want to have a look at this project then. C# Synth Toolkit - Part I[^] I think it accomplishes what your looking for and then some. :)

    Fear not my insanity, fear the mind it protects.

    C# help

  • The Duct Tape Programmer (aka the squatter)
    T Thesisus

    Guys, I felt this was very appropriate for us in here. We used to have less than flattering terms for this guy (i.e. squatter) but Joel Spolsky calls him the "Duct Tape Programmer". http://www.joelonsoftware.com/items/2009/09/23.html[^]

    Fear not my insanity, fear the mind it protects.

    Design and Architecture html css com

  • Firewall vs. FormsAuthentication
    T Thesisus

    I manage a site with about a hundred thousand registrants. We recently just switched from ASP 3.0 for .NET and for the most part it all went pretty well. But then the customer support team were reporting calls of people who could not get logged in. Just a few people a week. After little more inquery I found that they were logging in but their firewall software, namely ZoneAlarm, was not allowing cookies, so they weren't able to persist thier login or in this case even thier session. I can't imagine telling people to readjust thier firewall protection to allow them to log on to the site. So I'm calling upon the collective knowledge here while I continue poking around in this issue.

    ASP.NET csharp visual-studio sales collaboration help

  • Can I execute a DTS package from T-SQL?
    T Thesisus

    It'd really make this project simple if i could, but this part doesn't appear to be as easy I thought.

    Database database question

  • hacked?
    T Thesisus

    What exactly do you see? You surely aren't referring to the Austalia Day banner, are you? If so, it's not a hack, the admin of this site actually have personallity. :laugh: Fear not my insanity, fear the mind it protects.

    C# question

  • Detecting MDAC version
    T Thesisus

    Does anyone know how to detect what MDAC version a server is running?

    Database sysadmin tutorial question announcement

  • Web based chat for customer support
    T Thesisus

    When I was building an interface for our listserv I stumbled upon some real fun of this sort. I and another programmer who was working on the other side of the floor used our newly created toy to chat via good 'ol telnet while we were troubleshooting the unit. I can see how they could do this using either remoting or telneting. Depending upon the age and origin of the product. Don't forget that every user has an available session with wich you can trigger events. It sounds like it would be fun to try and duplicate sometime. Fear not my insanity, fear the mind it protects.

    ASP.NET lounge csharp asp-net wcf com

  • Why are my web service methods only available from the server?
    T Thesisus

    The web service works, but the methods are not available from a remote machine. Instead I get this "The testservice form is only available for requests from the local machine.". I've done this before, just messing around and it all went perfectly. Now that I'm under a deadline and actually working on a project I've run into this little nusance; any help anyone? Fear not my insanity, fear the mind it protects.

    C# sysadmin help question

  • How to force HTML <td> to display on new lines rather than across the page on one line?
    T Thesisus

    I would use the ASCII equivilants... chr(13) or chr(10) which ever one looks best to you. Label1.Text = "yada yada" & chr(13) Fear not my insanity, fear the mind it protects.

    ASP.NET csharp html debugging tutorial question

  • Same IP but I need different web applications
    T Thesisus

    I have serveral remote servers that I would like to streamline setting up Visual Studio Projects and applications on, but I'm having trouble. Now I'm familar with the basics of IIS administration. I've setup .NET applications before on my localhost and on remotes servers with no bells or whistles and thought everything was a "go". Then I encountered this situation. The site is a subdomain, which I don't think is an issue at all. But the IP address is shared among several subdomains. Same IP but I need different web applications, one for each subdomain. Does anyone have a suggestion for this one? Fear not my insanity, fear the mind it protects.

    ASP.NET csharp visual-studio windows-admin help question

  • The best way to manage user session ?
    T Thesisus

    I would try to use cookies instead of session vars if possile. Now cookies can be a hassel too, but it is far more scalible. Fear not my insanity, fear the mind it protects.

    Web Development help question

  • need help over this asp problem
    T Thesisus

    Well there are several ways to do it. But it all boils down to what you have available and how many people will be using it. I did some work for a company that needed something quick to allow them to chat in realtime with customers. They were expecting about 10 concurrent users so I used a combination of cookies and application vars. Application vars carried the actual chat and authenticated via the cookie. Basically had people log in and they could see only the conversation to which they were invited. Not a very scalible solution but worked perfectly for them. Fear not my insanity, fear the mind it protects.

    Web Development help tutorial lounge

  • .NET - Same IP but I need different web applications
    T Thesisus

    I have serveral remote servers that I would like to streamline setting up Visual Studio Projects and applications on, but I'm having trouble. Now I'm familar with the basics of IIS administration. I've setup .NET applications before on my localhost and on remotes servers with no bells or whistles and thought everything was a "go". Then I encountered this situation. The site is a subdomain, which I don't think is an issue at all. But the IP address is shared among several subdomains. Same IP but I need different web applications, one for each subdomain. Does anyone have a suggestion for this one? =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Fear not my insanity, fear the mind it protects.

    System Admin csharp visual-studio windows-admin help question

  • Fully managed HTML validator/reformator
    T Thesisus

    Nope, but have considered writting one. Fear not my insanity, fear the mind it protects.

    C# html question

  • Anyone know how to visually document SQL statements?
    T Thesisus

    Thanks, it's close. I have used that to provide resource stats. But I'm more intrested in logistics. Fear not my insanity, fear the mind it protects.

    IT & Infrastructure database tutorial question

  • Anyone know how to visually document SQL statements?
    T Thesisus

    I'm planning several very intensive data projects and am curious if anyone has seen a way to visually express a SQL statement. I need to be able to document the flow of information, but I've never seen anyone one else document it this closely. I hope this makes sense. :) Fear not my insanity, fear the mind it protects.

    IT & Infrastructure database tutorial question

  • Pop-up Using VB.Net
    T Thesisus

    Web forms or Window Forms? Fear not my insanity, fear the mind it protects.

    ASP.NET csharp com question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups