• Member Avatar for jwenting
    jwenting

    Replied To a Post in vbscript javascript help

    Mind that this has nothing to do with Java
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Java

    Way too broad. What level developer? Development is far more than just knowing the syntax of a language (or many languages, hardly anyone works exclusively in a single language). There's …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Administer the timings of the employees

    in other words some "student" is trying to plagiarise some system description he found online for some assignment and now tries to get others to implement it for him so …
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to Brandon_17 in Reading in a *.csv file and loading the data into an Array

    I am super new to java as well and still confused about the strings being immutable concept, doesn't this: fileName = br.readLine() in a loop create a lot of overhead?
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to Sulayman_1 in java Bank account

    I am a student struggeled in the following task I very appreciate if you can help, and send me an e-mail of solutiont ASAP please. The task is: Design and …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in adding objects to an arraylist

    by learning the language.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Why downloading speed is higher than upload speed ?

    And the reasoning behind setting it up like that includes the idea that your upload is somebody else's download, as most ISPs also are hosting providers. By limiting upload speeds, …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Belated alert

    yes, did that. And that 'bunch of times' ended up being well over a hundred...
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in advice/ suggetion for career guidelines

    And base your career not on "what is hot" but on what you enjoy doing. Nothing worse than going to the office every morning with a scowl on your face …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Graduation project idea

    One important part of your graduation project is coming up with an idea that's well researched and with proper arguments for its validity. If you can't come up with arguments …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Safely sending credentials from client to server

    Correct. If you're not already running on an HTTPS (or FTPS or SSH) connection where the encyption is handled for you, don't even bother trying to implement anything yourself because …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Safely sending credentials from client to server

    Correct. If you're not already running on an HTTPS (or FTPS or SSH) connection where the encyption is handled for you, don't even bother trying to implement anything yourself because …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Belated alert

    Same here, getting messages dating back 10+ years crashing over my screen all the time. Doubt that's the intent...
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Alexa toolbar no existed anymore currently?

    the day Alexa disappears with their spyware, malware, and other nasties is a day of joy for the entire internet.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Random Numbers

    if((number % 2) == 0) { // remainder function int even; } else { int odd; } makes no sense anyway... You probably want (number%2==0)?even++:odd++;
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Has Flvto Youtube Converter viruses?

    Not knowing what AV product you're using, I'd trust their software more than the "support" department of some piece of software I don't know. While virus scanners are known to …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Fastest Way to Find Prime

    Do NOT try to implement encryption algorithms yourself. You'll fail and your encryption will be dead easy to break by every script kiddie out there. You simply don't know enough …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Printing Invoices in Continous (roll paper ) in vb6 help needed

    Do NOT use VB6. It's dead, no longer supported, nobody uses it except idiot schoolkids who think using a 20 year old product is "kewl". Use something that actually has …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Get the xml parent node and child nodes

    1. Learn decent English 2. Use that knowledge to learn Java 3. Use that knowledge to learn about the Java XML parsing APIs this is all quite fundamental. You don't …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Retrive PDF Data

    whether you can decipher the information in a pdf in any way depends on how the pdf was created. One can create pdf files as documents with paragraphs and tables …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in java to native application

    gcj is a linux only tool that isn't Java at all. it recognises only a very small subset of the Java language and core APIs. Never use it, it's garbage. …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Detect if file is encrypted and what encryption used

    sure it should be possible to figure that out. Most if not all encryption techniques leave recognisable signatures in the content they encrypt. If you can manage to write some …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Blood Bank Management System please provide some headstart

    And you're going to need a lot of additional classes and enumerations. Things like blood types, resus types, health history??, employees of both the blood bank and hospital (no doubt …
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to April Jam in Java First-Fit & Best-Fit

    HI, I THINK THIS MIGHT HELP YOU. [Click Here](http://blog.creativeitp.com/posts-and-articles/java/first-fit-algorithm-in-java/)
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to Jeemoon in my vb needs a registration....pls help me!!!!!!!!!!!

    I join your organization
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to Jeemoon in my vb needs a registration....pls help me!!!!!!!!!!!

    I am new user
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in How to efficiently collect data on news site

    or, much better, ask the people maintaining those sites if they have something like an RSS feed you can get access to and get the data right there in text, …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Update database in java

    learn about JDBC, or better yet JPA. And do split your code into multiple classes, makes things so much easier to maintain and debug. Also, keep class fields and methods …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in counting words in a given text

    Best create a separate handler class per button (unless the buttons have very similar functionality). As to the counting, traditional mechanism would use a HashMap<String, Integer>
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in netbeans8.0.2

    and oh, 8.1 was released a few days ago :) https://netbeans.org/downloads/ select either the "Java EE" or "All" version.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in can someone clarify this for me

    your teacher should be the one to ask. While we can guess what he meant, we can't of course know for sure.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Installing OS (Linux/Ubuntu)

    I must say I prefer Debian myself, it's "cleaner" and tends to install less crud by default. Try different desktop environments too, there's a lot of difference between them. I …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Linux ubuntu ssh command

    sudo root is wrong. sudo allows you to enter a command with root privileges. To become root you issue the command su. Of course for that you need to know …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Vacation

    enjoy, have a great family time.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Histogram help.

    ok, that's not Java code. It's not even close to being Java code. Here's something to get you started though, you'll have to think of how to get it to …
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to Hassam_1 in Video chatting application in java

    And I have to do the same project within 2 weeks..
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to Deepak_31 in Installing an "Expired" AVG Anti-Virus Download

    change system date to few months back thn restart machine and try..
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in plugin for web development

    netbeans doesn't need plugins for web development, it's all built in...
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Using SSL cert only from specific pages

    any browser worth its name will throw a hissy fit if you have a page where some components are secured and others are not, which is inevitable if you decide …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Java: Basics

    my hourly rate is $150 with a minimum of 40 hours, payable in advance. After payment I'll get on it ASAP.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in pls i need help in creating a traffic control system

    what traffic? what control? What scope? A complete traffic management system for any real life scenario is a massively complex piece of software and hardware that requires dozens of people …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Installing OS (Linux/Ubuntu)

    There is no 'official linux'. Rather, as you've found out, there are hundreds of different variations, each of which is linux. Which of the platitude of options you choose would …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Win10 Start Menu and Cortana aren’t working

    I've upgraded 4 computers to Windows 10, 2 each from Win7 and Win8.1, no problems with any of them. The files on that disk aren't lost, they're still there. But …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post 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 jwenting
    jwenting

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

    I think the teachers of these coding classes tell their students "If you have any problems, just copy/paste your homework on Daniweb - the people there really dig that kind …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Trying to avoid AWT classes in Swing GUI

    Swing is built on top of AWT, not all AWT classes are overridden. In fact it's impossible to use Swing without using AWT as Swing relies on a lot of …
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Keyboard GUI

    What you have there looks like a perfect candidate for a GridLayout for the rows of keys, with each row being a FlowLayout.
  • Member Avatar for jwenting
    jwenting

    Gave Reputation to JacobBrown in window 10 is good or not?

    Donot upgrade, how I regretted having my computer upgraded to win 10. I have all my files gone from the disc.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Help with the pet store

    Yes, I'd never use it in public APIs. For those I'd make as much final or otherwise unoverridable as I can get away with to prevent tinkering.
  • Member Avatar for jwenting
    jwenting

    Replied To a Post in Opinion on web development platforms

    clicking together a website using a tool like that is not web development, it's clicking a website together...

The End.