• Member Avatar for overwraith
    overwraith

    Replied To a Post in Server with C#

    Sending the code along with the app may, or may not be an issue. HTML, CSS, and JavaScript are all transmitted to the client, where the source can be read …
  • Member Avatar for overwraith
    overwraith

    Began Watching Circular For Loop

    I want to iterate over a List in a 2D way, basically starting at the center and working my way around in a "circular" fashion. The List is a List …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Circular For Loop

    I thought nobody would ever need a loop like this, but I am happy to be mistaken... This is 'parallel', so you will have to remove the thread pool call, …
  • Member Avatar for overwraith
    overwraith

    Began Watching Download File- Pause and Resume.

    Hi, I am developing a module that will download pdf files to a location. For downloading i have used streams to read and write to file. initially each download would …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Download File- Pause and Resume.

    I don't see why the number of download threads are limited, unless you have users using the threads or something, then it would be more of a matter of limiting …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to gusano79 in How to upgrade database fields

    > Would you temporarily allow for the fact that both algorithims could be used in the code, or do you create a program that makes the necessary conversions, and uploads …
  • Member Avatar for overwraith
    overwraith

    Began Watching Out of memory exception on a list

    Hi Guys I ran into a bit of a problem with some code I am writing. I am trying to store all possible combinations of a set of numbers which …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Out of memory exception on a list

    I can't find the code for Combinations, but you appear to have a lot of data coming out of that class. If I was you I would review the code, …
  • Member Avatar for overwraith
    overwraith

    Created How to upgrade database fields

    So I just got an entry level job at a company, and I have been given a business application to tweak and improve. I have a senior, and more experienced …
  • Member Avatar for overwraith
    overwraith

    Began Watching How to upgrade database fields

    So I just got an entry level job at a company, and I have been given a business application to tweak and improve. I have a senior, and more experienced …
  • Member Avatar for overwraith
    overwraith

    Began Watching C# Vs. other Web development languages

    just a question what are the advantages that C# as a general purpose programing language has over other web development programming languages such as HTML 5 CSS and so on
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in C# Vs. other Web development languages

    > the advantages that C# as a general purpose programing lang > > originally created JavaScript, they were going to call it Live > > release of Java in order …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Multi threading task takes much longer than 1 thread

    You also don't know however whether the applications will all execute on different processsors. It is all up to the OS's discression.
  • Member Avatar for overwraith
    overwraith

    Began Watching Multi threading task takes much longer than 1 thread

    Hello, I have a very strange problem. I have created a code that I beleive is multicore/parallell threading to make a task to run faster using more cores in the …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Multi threading task takes much longer than 1 thread

    There are probably a few things in play here. First, you got to know that there is a hierearchy of resources on computers, resources which are available in excess are …
  • Member Avatar for overwraith
    overwraith

    Began Watching Array Copy Every Nth Element

    I was wondering if there was an existing method within the .Net frame work which will copy every nth element of an array to a differant array with an initial …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Array Copy Every Nth Element

    It's kind of one of those situations where LINQ would solve it nicely, but the code for either LINQ or just regular loops would be approximately the same amount of …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Blocking DLL

    From what I understand on the subject certain assembly language constructs can be linked to higher level C++/C# language constructs. So yes, you can determine what the original source code …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Blocking DLL

    I don't think it's a waste of time. At the very least you will make it harder to reverse engineer. Sure it is not impossible, but you may as well …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Blocking DLL

    The question is how do you prove somebody decompiled your code unless they sell the product, pirate it. Is not illegal to download decompilers and use them on your own …
  • Member Avatar for overwraith
    overwraith

    Began Watching Blocking DLL

    What is the best way for blocking DLL for not publishing the code inside the library?
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Blocking DLL

    Essentially anything that you provide to customers will essentially be prone to reverse engineering, if this is what you are asking. There are techniques for making the reverse engineering process …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in ASP.NET connection to a database

    Am running Visual Studio 2010.
  • Member Avatar for overwraith
    overwraith

    Created ASP.NET connection to a database

    So I am having trouble connecting to an Oracle XE 11g database in visual studio. The Ultimate aim here is to make a webpage I can run on my local …
  • Member Avatar for overwraith
    overwraith

    Began Watching ASP.NET connection to a database

    So I am having trouble connecting to an Oracle XE 11g database in visual studio. The Ultimate aim here is to make a webpage I can run on my local …
  • Member Avatar for overwraith
    overwraith

    Marked Solved Status for Ordering matrix rows

    Hello, I am thinking about doing a matrix RREF function, am still in the research stage, but I thought I should post a bug I have been having. The following …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Ordering matrix rows

    I figured it out, sorry guys. My variable statement was casting it to something that I should have known not to cast it to, you see when you link together …
  • Member Avatar for overwraith
    overwraith

    Created Ordering matrix rows

    Hello, I am thinking about doing a matrix RREF function, am still in the research stage, but I thought I should post a bug I have been having. The following …
  • Member Avatar for overwraith
    overwraith

    Began Watching Ordering matrix rows

    Hello, I am thinking about doing a matrix RREF function, am still in the research stage, but I thought I should post a bug I have been having. The following …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in class struct or interface method must have a return type

    Oh, yeah you're right should be string not float.
  • Member Avatar for overwraith
    overwraith

    Began Watching class struct or interface method must have a return type

    using System; namespace studentObj class Student { private int id (); private string name (); private char grade (); public int ID { get {return id;} } public string Name …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in class struct or interface method must have a return type

    It looks like you aren't returning anything in the ToString method right now, if you don't return something it will error out. Also, the SetGrade method does not have a …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to tinstaafl in Better than Split()?

    A similar change to the second method should work. Replace the `yield break` with `closest = length + start;`
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to sepp2k in Better than Split()?

    > Something else to consider, using the String.IndexOfAny method will shorten your code considerably And, perhaps more importantly, improve the runtime from being quadratic in the worst case to being …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to tinstaafl in Better than Split()?

    Something else to consider, using the `String.IndexOfAny` method will shorten your code considerably. Here's some code to look at. This should work but I haven't fully tested it: public static …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Better than Split()?

    Ok, I think I fixed it, will have to check the second method in more detail. public static class StringExt{ public static System.Collections.Generic.IEnumerable<String> NextSplit( this String str, char[] tokens) { …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Better than Split()?

    You are right. I will try to fix it as soon as I am able. If somebody beats me to the punch, please post.
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Application base class

    This is kinda what we did, not exactly what we did, but it should give you some ideas. As far as logging, and having all projects inherit, I am unsure …
  • Member Avatar for overwraith
    overwraith

    Began Watching Application base class

    Hi, and sorry for the title, I don't really know what else to call it, so I'll get right to my point. I've recently decided to use most of my …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Application base class

    I took a class once where we wrote our own personal heading class for our assignments, it included information such as the developer name, the date the program was run, …
  • Member Avatar for overwraith
    overwraith

    Edited Better than Split()?

    So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So …
  • Member Avatar for overwraith
    overwraith

    Edited Better than Split()?

    So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So …
  • Member Avatar for overwraith
    overwraith

    Edited Better than Split()?

    So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So …
  • Member Avatar for overwraith
    overwraith

    Edited Better than Split()?

    So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Better than Split()?

    Thanks deceptikon.
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Better than Split()?

    Actually this should probably be moved to snippets, that's where I wanted to put it.
  • Member Avatar for overwraith
    overwraith

    Created Better than Split()?

    So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So …
  • Member Avatar for overwraith
    overwraith

    Began Watching Better than Split()?

    So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So …
  • Member Avatar for overwraith
    overwraith

    Began Watching Design issue in C#

    I’m working on a little matrix class for my own use and because for me, it is just fun! Now I noticed a lot (10 and more) of the methods …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Design issue in C#

    I think it's an improvement, even with the slight overhead introduced. This could make other methods like an RREF function easier to code (it's been a while, I actually don't …

The End.