• Member Avatar for overwraith
    overwraith

    Began Watching Spooky web stuff

    So, a few times I have typed in some specific searches into google, and ultimately come up with some really spooky coming back to me from google. I don't really …
  • Member Avatar for overwraith
    overwraith

    Began Watching trying to get data from a html file

    Hello everyone, what i am trying todo is get the following data from a html file.... Friday 31 - 1 - 2014 Created: 31/01/2014 2:32 PM Updated: 31/01/2014 7:03 PM …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in trying to get data from a html file

    If it compiles into a dll you can just include it in the project as a reference. I actually think you have to have it as a dll, but I …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in My very ugly story about a Lenovo Laptop...

    Suzy's right about malware, you see, it hooks libraries and kernel stuff, so some malware can actually intercept system calls made by AV products if it is programmed to do …
  • Member Avatar for overwraith
    overwraith

    Began Watching How to hide strings in the executable?

    Hi all, first thread in here. I usually don't open my executables with any sort of editor, but for the sake of curiosity I've tried opening one. And what I've …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in How to hide strings in the executable?

    Really guys you don't need to hide your strings very often. Encryption is meant to hide **data at rest**, not something meant to run in a program on strings which …
  • Member Avatar for overwraith
    overwraith

    Began Watching My very ugly story about a Lenovo Laptop...

    If there was one computer that was badly infected as this then you'll be horrified! It was about 7PM Australian time and I just got this Lenovo Laptop from this …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in My very ugly story about a Lenovo Laptop...

    Dude, Bit-torrent isn't illegal. Just use wisely. What you download could be illegal, but lots of sites use it to conserve their server's bandwidth. It could be illegal in your …
  • Member Avatar for overwraith
    overwraith

    Began Watching How to Improve this code?

    #include<iostream> #include<conio.h> #include<string.h> #include<iomanip> #include<iostream> #include<fstream> #include<Windows.h> using namespace std; class book { char book_number[30]; char book_name[50]; char author_name[20]; public: void create_book() { cout<<"\nEnter The Book Number: "; cin>>book_number; cout<<"\nEnter …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in How to Improve this code?

    Don't know if anybody mentioned this, but you could probably break some parts out into other source code files. Classes generally live in their own code file.
  • Member Avatar for overwraith
    overwraith

    Began Watching break one level of nested loops

    Yes I know the code is not complete. I know it will cause an infinite loop. The question is how would I break out of the first for loop and …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in break one level of nested loops

    Break only breaks you out of one nested looping structure. So on the inside loop if you break, the inner loop will cease, and the outter loop will continue execution.
  • Member Avatar for overwraith
    overwraith

    Began Watching Duplication Check

    I am in the process of developing a web application with a "question - answer" session in PHP and MySQL. This is more like a forum, where the user asks …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Duplication Check

    Never done it before, but could bayesian filtering do something like this for you? Basically you count the occurrences of tokens in a sentence and based on that you have …
  • Member Avatar for overwraith
    overwraith

    Began Watching Detect Keylogger Softwares

    How to detect the keylogger softwares which are running in the system. Keylogger run in hidden mode,by the processes running in the background are us to detect it. Is there …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Detect Keylogger Softwares

    <Directed twoard experienced devlopers questions> Perhaps it would be useful to determine which processes actually exist on a windows device by default? Win 7, Win 10, etc? Does anyone know …
  • Member Avatar for overwraith
    overwraith

    Began Watching What skills do you need to become a good web developer?

    Hi, I'm Kavin, I guess I've always been a bit geeky. I'm currently working on my first website and learning HTML and CSS. I'm also quite keen on photoshop. I …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in What skills do you need to become a good web developer?

    High BS tolerances. jk. It does strike me however that most of the things you guys are suggesting are soft skills, as opposed to actually knowing the code. I would …
  • Member Avatar for overwraith
    overwraith

    Marked Solved Status for Would a Typed Reader be useful?

    Say hypothetically you had a reader which did something like this... //testing reader, automatically parses strings and converts to the custom type via attributes! using ( FlatFileReader<MyCustomClass> reader = new …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to ddanbe in Would a Typed Reader be useful?

    This [tip](https://msdn.microsoft.com/en-us/library/microsoft.visualbasic.fileio.textfieldparser.aspx?f=255&MSPPError=-2147217396) I got from deceptikon [here](https://www.daniweb.com/programming/software-development/code/468063/how-to-read-lines-from-a-csv-file-).
  • Member Avatar for overwraith
    overwraith

    Marked Solved Status for Telerik

    Hey I have a question, how many people actually use telerik? Does anybody have experience with it, and what are your opinions on it? To me it is just another …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to JamesCherrill in Printing out objects

    Yup That toString() is in the Client class, but its an instance of one of the other classes that's being printed. You need an appropriate toString() method in each and …
  • Member Avatar for overwraith
    overwraith

    Began Watching Printing out objects

    I have in my program an object of a class. When I try to print it out I am getting "Address@33909752" - guessing it is a hash code. I also …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Printing out objects

    I don't know exactly what's wrong without viewing **MORE CODE**, but it should be fairly straight-forward to point you in the right direction regaurdless. Here is an example that should …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming

    I was referring to a programatical interface however, it is a little bit important, and like I said it was a higher level programming class. public interface ISomething{ void IDoSomething(); …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming

    Well, "What is TCP/IP" is not the worst question I have ever heard. I think the worst one I have ever heard is "What is an interface". Mind you this …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to ~s.o.s~ in Why daniweb attracts only newbies with no interest to stay in programming

    I have come to realize that only a handful of beginners prefer programming "discussions". This is one of the primary reasons why SO is viral; as long as you have …
  • Member Avatar for overwraith
    overwraith

    Began Watching Memorable Quotations

    Once harm has been done, even a fool understands it. -- Homer
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Memorable Quotations

    Try not to think of this quote in regaurds to any previous quotes, I think this one's one of the funniest I have ever heard: "Just close your eyes and …
  • Member Avatar for overwraith
    overwraith

    Began Watching Simple Data Encryption Standard (SDES) Algorithm for Encryption and Decryption.

    This is a program for Encryption and Decryption This program uses the Simple Data Encryption Standard (SDES) Algorithm. This Algo takes 8-bits of plaintext at a time and produces 8-bits …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Simple Data Encryption Standard (SDES) Algorithm for Encryption and Decryption.

    A cool program for sure, but I always submit to the observation I have read in a practical crypto book, "Don't roll your own encryption" I don't know much about …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to JOSheaIV in Questions Never Being set to "Answered" or Followed Up

    So I have to say this is starting to become an annoyance of mine. It seems so many of the questions I answer tend to go dead, never followed up …
  • Member Avatar for overwraith
    overwraith

    Began Watching Questions Never Being set to "Answered" or Followed Up

    So I have to say this is starting to become an annoyance of mine. It seems so many of the questions I answer tend to go dead, never followed up …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Questions Never Being set to "Answered" or Followed Up

    If I have any that I have left unanswered they typically are unanswered, or not answered adequately, but I haven't checked in a while. I guess everybody should check more …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to jwenting in Why daniweb attracts only newbies with no interest to stay in programming

    Main problem is that there's no penalty for dumping your homework assignments here verbatim. On StackOverflow if you do that the entire thread gets removed, and your account gets locked …
  • Member Avatar for overwraith
    overwraith

    Began Watching Pseudocode

    I need help understanding this logic: itemList = call Function getItemListFromUser for (each item in itemsList) listItemPrice = get price for item totalOrder = totalOrder + listItemPrice
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Pseudocode

    Yeah, that's just an accumulating loop, it's pretty simple really. You don't have whitespace in the right places so the foreach loop doesn't look intuitive, but you should have no …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Telerik

    Thanks everybody, I am really a beginner in the world of "production programming", so I have very few experiences with other peoples software, and unfortunately the few experiences I do …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to pritaeas in Telerik

    Been using Telerik at various companies, so IMO it's widely used. My experiences are mixed. As long as you use their stuff in a straightforward way, everything is nice and …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to darkagn in Telerik

    I haven't used telerik specifically before but I wanted to mention that there is absolutely nothing wrong with using a third party to solve outstanding problems with a project. Sometimes …
  • Member Avatar for overwraith
    overwraith

    Gave Reputation to rproffitt in Telerik

    My experience is to keep it simple (KIS.) My longest living project didn't use a simple third party tool or add ons. It's my Duracall Rabbit of apps.
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Telerik

    That seems to be the way to go. Keep it simple stupid. Thanks for your answer, others feel free to answer too.
  • Member Avatar for overwraith
    overwraith

    Created Telerik

    Hey I have a question, how many people actually use telerik? Does anybody have experience with it, and what are your opinions on it? To me it is just another …
  • Member Avatar for overwraith
    overwraith

    Began Watching Telerik

    Hey I have a question, how many people actually use telerik? Does anybody have experience with it, and what are your opinions on it? To me it is just another …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming

    Suzie's suggestion of unregistered user traffic has merrit, however the unregistered users shouldn't be able to downvote, perhaps retain that as a member right. Suzie is also right about more …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming

    Perhaps there should be a feature where you can't downvote someone when your account is only n days/months old?
  • Member Avatar for overwraith
    overwraith

    Began Watching Array of object

    Hello there, In my program I have an object of a class with some values, and I am trying to create another object, populate it to array and add it …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Array of object

    Arrays don't overload tostring() as far as I am aware in any language. They probably should but they don't. You have to loop through the array in order to print …
  • Member Avatar for overwraith
    overwraith

    Began Watching Why daniweb attracts only newbies with no interest to stay in programming

    The full title: "Why daniweb attracts only newbies with no interest to stay in programming and what can be done to keep the others as well ? " Over few …
  • Member Avatar for overwraith
    overwraith

    Replied To a Post in Why daniweb attracts only newbies with no interest to stay in programming

    I have a few observations. From what I have heard the US population is probably shrinking a little bit due to the baby boomer thing. So most programmers these days …

The End.