Codeaddict's Posts
Nairaland Forum › Codeaddict's Profile › Codeaddict's Posts
1 2 3 4 5 6 7 8 9 10 (of 16 pages)
------ |
Errmn, Organisers, how exactly would you classify beginners? Or what yardstick could I use to tell if I'm a beginner? |
------ |
Location: Ogun Languages: Java, Python, SQL, | PHP | IDE: Eclipse |
*dhtml:Abi |
Don't make the software. You can try, but it'll just make the reverse-engineering process more difficult, not impossible. ![]() |
dsypha: @codeaddict, Kambo is right. U shud had used an instance of the thread class or better still an executor. Good work bro, U tried.Guys, cut me some slack. I only use cached thread pools when I'll be running more than one thread, or there's a risk that thread won't complete. |
You could also use Endow. It's an application that hides files behind files. So if an image or any other file is allowed. You could hide the executables or whatever else you intend to send, behind an image. The image could still be viewed with its original image content. And extraction could be done still with the same app. Here's a link to download - https://github.com/oduaht/Endow/releases/download/v1/Endow.jar |
Okay, what you need is to write a Coordinate class, with two Integer variabes - the xPoint, and the yPoint. Make them instance variables that'll be assigned in your constructor. Then write a CoordinateRow class, with a List<Coordinate> variable. You could use any other generic class that supports inserting and appending, such as ArrayLists. Include methods that perform the addition of coordinates. These methods will perform the same thing. However, while one adds to the front of the List, the other adds behind. These methods will take a String argument in the form (x,y). Tokenize the argument string based on ',' and then construct a Coordinate class with the integer values of each of the tokens(you could trim the tokens if white spaces might be present). Then depending on which position the method adds values to, you add appropriately to the List. Include a method (say AddCoordinates) in the CoordinateRow class that takes in a String parameter(rows), and an argument specifying position. The latter argument could be an integer, boolean or anything that tells you where it'll be added - in front or behind. This method would have to split the String parameter by spaces to get the string value of each coordinate point (in the form 5,4). Then for each token(coordinate), you call appropriate methods to add in front or behind. This method (AddCoordinates) could be called in your CoordinateRow constructor, with an argument to place it behind, thus effectively creating your initial row. |
What have you done so far? If we all behaved this way while learning, nobody would be able to solve this, then. Attempt something, no matter how small, it may seem. Then post it here, I'll correct, if it needs correction, and give you pointers. |
Have you added mysql connector/j to your build path? |
NFS: Rivals is out. |
One question, Can I work remotely? |
Chiscomax: all right... swing it is then. so mr code addict, what apps be u created so far? do you think it is possible to study comp sci in msc after doing mech engr in bEng?You don't really need to study computer science formally, if you're going into programming. You can find some of my stuff at github.com/oduaht |
Chiscomax: codeaddict, it is a software that predicts the answers to calculations even before you solve them and all predictions tested are correct so stop laughing at me....Why the euphemism? Prediction, calculation, solving, it all still translates to one thing - Your application performs addition calculations. Trust me, some of us have been where you are, done crazier sshit without building GUIs to |
IamRoboPhil: Look who's talking....... You did crazier shit when you were a newbie ![]() |
bigdot1759: pls what's yhe different btw Visual studio & C#, & can someone use python to develop such healthcare systemIt's possible with Python. |
Addition calculations? And you're already planning to create a GUI? ![]() Boy, aren't you ambitious? |
nebecj: I need a helpWhat have you done so far, then? |
dovercomer: Pls can you recommend a free hosting serverHost1Free. It's the best free stuff you're gonna get. |
You need help, or need soneone to do it for you? |
So, every night, before I sleep, I try to queue some downloads, cos light in my area's kinda stable at night. Anticipating the inevitability of the electricity supply going off, I created a special power plan that hibernates my pc at a specific percentage level. Two days ago, I queued some downloads, slept off, only to wake up to find my computer out of juice. Reason - I dozed off, while watching a movie, and forgot to switch power plans. Pissed off at this, and finding nothing better to do, I decided to write an app to solve my issues. Could be useful to somebody else.It's hosted on GitHub It's written in Java, so you'll need Java Runtime Environment. Optimal Graphics with JRE 7. Here's a direct link to the jar file, for those unable to get it from GitHub. How It works ============= There are two sorts of monitors available. One of the monitors listens for AC Power cable detachment or Power supply interruption. When this monitor is used, action is triggered only if power goes off, or power supply to the computer is interrupted. The second monitor triggers action, when the Battery percentage level is below the specified value. Thus it keeps checking the battery percentage, until battery percentage level is below the specified level, and acts only if it's lower than that which was specified. This monitor is ineffective when the AC Power Cable is plugged in. Cos, it's of no use, then, right? ;-) An interval could be set for when action is performed after requirement has been met. This means that you could choose to hibernate/shutdown your pc after a specific time has passed from when the action is triggered. For example, if I decide to specify an interval of 30 seconds, on the AC Power monitor, it means that when power supply is interrupted, the app will wait for 30 seconds before hibernating or shutting down my pc. The interval is placed to allow for a situation in which power supply is restored before the interval expires. Essentially, if power supply is interrupted, and ten seconds into the interval, it's restored back, action (hibernating/ shutting down) is deferred, until power is interrupted again, and then the process of monitoring begins all over. The selected monitor could be stopped at anytime. ---------------------------------------------------------------------------------- P.S: My repo's pretty boring, so no peeping. Get the monitor, and leave there! ![]()
|
Ajibel: @bigdot1759, have u downloaded python and installed it alreadiYou're joking, right? Or are you actually admitting to being female? ![]() |
A lot of things could cause that. One of the more prominent causes in your code is trying to find the root of a negative number |
boykelex: Thank you very much boss....can I have your facebook or twitter usernamePM |
jboy01: Yeah because I already have mysql installed for my vb.net, I also have jcreator( about 5.1 megabyte) installed. But it is still not workingGet the sql connector for java, preferably the zip archive. Whenever you need to connect to a database in Eclipse IDE, you'll need to include the mysql-connector jar file (could be found on the zip archive) in the Build path for your project. Or you could copy the jar file and paste on the lib/ext folder where you installed your jre. |
jboy01: Pls am using eclipse in coding a small application that involve connection to database, pls how will I instal jdbc mysql driver on my eclipse?Still need directions? |
Something that works: Replace with )
|
xtianh: how to assign values to a selected item. like if the items are A,B,C. when the user selects A, i want A = 5 * 2;Something similar to this:
Replace with DReplace with ) |
What exactly do you want answers to? How to assign values based on a selected item? Or how to append text to a JTextField? |

And did u attempt to get any pdf tutorial too