452 Posted Topics
Re: What do you have so far? | |
Re: Wow, looks AMAZING! wish I could attend one of those projects, good job @ mcGill | |
Re: Wow, Mike great explanation was about to mention that. Just a quick add-on. The problem with higher frequencies is the heat indeed but also the connection between the components in the chip. The nano technology has reached a limit where higher frequencies and the heat exposed would damage the few … | |
Not sure how to explain what is going on but after some time scene builder just won't display the fxml file that I am trying to modify further. It happened a couple of times so far and its really annoying because nothing can be changed. Yes, I do see scene … | |
Re: [I read this article as well](http://thehackernews.com/2014/07/attackers-compromise-tor-network-to-de.html) | |
Re: first do this `chmod +x scripName.sh` then run it using this `./scriptName.sh` | |
I am following [this](http://code.makery.ch/java/javafx-2-tutorial-part1/) tutorial to get into JavaFX using scene builder and so far I really like it as the person who made it explains things in deep detail. I finished the first part and tried executing the code so far, but it returns multiple errors. Here is more … | |
Re: I would go for sublime text(It's awesome!!) on small projects and as Taywin said Eclipse for medium/big ones especially if multiple people are involved | |
Re: You have to implement what happens if the grade is less than 0. Currently there is nothing and it just won't do anything about it | |
Re: I'd also say wait for the eye to show up .. avoid real life contacts! :p | |
Re: This is how you can locate the image in your class folder `private Icon icon = new ImageIcon( getClass().getResource( "ImageName.png" ));` Then you can use the image to create a new Jlabel of it such as `private JLabel jl = new JLabel(icon);` Afterwards you can use the Jlabel to attach … | |
Apparently JavaFX is getting really into the game now as far as I see and I think its time I start getting to know it .. Just read a couple of articles and a few questions came up in my mind: - Do I need to use IDE (eclipse) for … | |
Not sure if this is where I should post this but I found it pretty cool. Its basically all core linux commands for command prompt Note: You have to include the bin folder in your winows Path and it works like a charm | |
Re: Interesting reading .. I have a question though .. If its hard(rather than impossible) to brute force and find the key, would a MITM attack be able to collect what the private key is? I assume there is some hand shake where keys are exchanged? | |
Re: In general people are not educated about security, thus this can really damange them. Security of public wifis can lead to losing private details such as bank card(I don't understand why would u use it on public network even on an SSL connection) etc, but on the other hand insecurying … | |
Re: Pointers! :D I would say syntax. In c++ you also don't have garbige collection and with inheritance you have to play with the keyword virtual to satisfy the compiler.To me java is indeed much easier when with GUI's (at least to me) | |
Re: Are you asking how to sort by name? | |
Re: update takes an object of type BodyDef. Then you can set it using the setters just as in the object bdef | |
Re: e.printStackTrace() in the catch block | |
Re: * gets pop corn * also I'd never ever suggest this but if it won't let you even sleep, then pain killers at that time might be somewhat a good idea(Just not the BEAR dose ones cuz they are addictive as far as I've heard) | |
Re: You can boot in cmd and change the pw | |
Re: OSI model,packets travel/communication, encryption You might want to take a look at Computer Networking book for detailed explanation of the terms | |
Re: Connect to the router. Open cmd type in ipconfig. Find what it says at gateway (possible 192.168.1.1 or 192.168.0.1). Put that into a web browser and u'll get prompt to enter user and pw, I think it is admin and admin for both(At least was for mine if back to … | |
Me as one of the users in Dani web and a person who has interest in Java, I've tried to solve if not all, most of the begginers problems. I've even tried to solve some myself afterwards however, now I ran out of ideas. I would also like to move … | |
Re: Qurbani, your link points to this thread. Cascer, The trouble you are facing is because of windows 8.1 . It has security enabled so you won't be able to run another OS basically, however there is a way around. I had Kali Linux on my pc and installed Windows 8.1 … | |
Re: Um, if you want to install it on that hard drive, burn the iso image on a flash stick and then install from flash drive. When asked which drive to install windows 7 on select that drive.The HDD for windows should have NTFS file system. I can give you detailed … | |
I have Kali Linux and a week or 2 ago I made a new user which was a copy of root. Now I am getting message that new updates are available and when I click install it asks me for administrative password. When I enter the user's password I get … | |
Re: I think you can use Collections.sort(LinkedListObject) | |
I just installed windows 8.1 and wanted to have a performance widget on the side but noticed that I don't have any inbuilt .. just google and found [this](http://www.myfavoritegadgets.info/monitors/SystemMonitorII/systemmonitorII.html) . It seems incredable? Does any1 have any experience with it? | |
Re: cd/flash drive to install it on your computer and Internet(aka google) | |
Re: Try this `myPicture = ImageIO.read(getClass().getResource("Companylogo_FINAL.jpg"));` | |
So, basically I tried to do everything i found to fix this but nothing really worked .. (It works fine on my 32 bit pc using elementary os(Luna linux). However my laptop has Kali Linux 64 bit. I have chromium installed. Some of the things that I tried which worked … | |
Re: private static String JohnDoe = null; private static String name = JohnDoe; BankAccount account = new BankAccount(); String name = askName(); When you ask for the name here, it returns null because it hasn't been set. Also becareful you have name string object global and within main. You want to … | |
I installed Kali linux and while i was running as root I installed quite some programs and made graphical changes etc, even changed desktop environment .. then made a new user so I won't be using root and the new user has all the default stuff and no access to … | |
Re: You compare srtings with the method equals() in the String class sdr.equals(rds). Equals would check whether the objects are the same, while == checks their references | |
| |
Re: When you declare a method, if it throws an exception of some kind, you don't have to use the try/catch block, if its not decleared that it throws an exception then you use try/catch. I'd rather use try/catch in most cases as you can print the strack trace of the … | |
Re: is your question how to create a 2D array? `int [][] Array array = new Array[Size][Size];` | |
Re: Is that what you were looking for? | |
I asked a week ago a question about this, now I tried to google around and found this toHex method. It has an empty spot about the charset. For example I want to use UTF-8 but if I enter it returns an error and if I don't specify it, the … | |
Re: Your method is missing a return statement, a default one in case it never enters the if statements (Usually, the default return statement doesnt execute in applications that you always have one of the switch inputs, but is needed to satisfy the syntax) | |
Before I even attempt doing anything in this direction, is it possible to enter a string and get it represented in ascii? I am reading an article about XSS and SQL injections part of a course that I am taking now, and some of the tips are that people in … | |
Re: You are on the right place its just you expect the entire algorithm given at once, if you really want to learn how to do it, start by what you did and ask a specific question about the code where you are stucked, or why does your code not work/what … | |
Re: If they are -1 based, then -1 is first, 0 should be second? | |
Re: I don't see where you have defined handler, but in general yes .. I just used this in something similiar for (int i = 0; i<values.length; i++){ final JToggleButton tg = new JToggleButton(values[i]); tg.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e){} Then just define what you want to happen when action … | |
Re: First, you don't need 2 loops. Create an int i=0, out of the loop and then increment it inside while looping. in your case you don't want to have more than 2 7s and more than 2 8s. Create variables to take care of that(which could happen in the "if"statements … | |
Re: Scan doesn't seem to be even defined, charAt is a method in String class, so you have to call it from a string object `choice = charAt(0);` choice = STRING.charAt(Int); |
The End.