-
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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. -
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 … -
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. -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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-). -
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 … -
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 … -
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 … -
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 … -
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(); … -
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 … -
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 … -
Began Watching Memorable Quotations
Once harm has been done, even a fool understands it. -- Homer -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
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 -
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 … -
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 … -
-
-
-
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. -
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 … -
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 … -
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 … -
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? -
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 … -
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 … -
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 … -
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.