Computer Soft Trials
Its a page all about Technology.
28/01/2016
The world lost the "father of artificial intelligence" over
the weekend. Vale Marvin Minsky, a pioneering
mathematician and computer scientist.
via - Science Alert
One can hesitate to buy a fixed battery laptop as because they can't remove it when laptop gets hanged..for ur kind information if you wait for sometime its back to normal...there is a chance of electric shocks that can damage your battery...so if its fixed no one can think of removeing it...
One can hesitate to buy a fixed battery laptop as because they can't remove it when laptop gets hanged..for ur kind information if you wait for sometime its back to normal...there is a chance of electric shocks that can damage your battery...so if its fixed no one can think of remove it...
30/06/2013
Interesting PC tip.
new way to open a link in a new tab.
1)Bring the mouse pointer over the link.
2)Click on the middle button i.e,Scroller..
is it working...???
I think so....
have a good day... http://s.sociopal.com/127jH6y
27/06/2013
Do you wanna create your own Application Software for hacking an IP address of a particular PC connected to the internet??
just do the following...
1)Copy the following code
package iptracker;
import java.net.*;
class IPtracker
{
public static void main(String args[])throws UnknownHostException
{
InetAddress Address=InetAddress.getLocalHost();
System.out.println(Address);
Address=InetAddress.getByName("projuktizone.wordpress.com");
System.out.println(Address);
InetAddress WS[]=InetAddress.getAllByName("softtalkzone.blogspot.in");
for(int i=0;i
24/06/2013
Definitely worth reading. - HTC Reportedly Pulls The Plug On A 12-Inch Windows RT Tablet, But A...
HTC Reportedly Pulls The Plug On A 12-Inch Windows RT Tablet, But A Smaller Tab Lives On |... HTC is currently sailing through a patch of rough seas, and it seems as though the company is starting to rethink its tablet strategy. According to a recent report from Bloomberg, HTC was planning to put together a 12-inch Windows RT tablet for release later this year before scrapping it due to co..
23/06/2013
Stay up to date with this informative article. - পিসি হেল্পলাইন বিডি (বাংলাদেশ)
পিসি হেল্পলাইন বিডি (বাংলাদেশ) নিজে জানুন, অন্যকে জানান
23/06/2013
Lets try a trick to check out whether your antivirus is working or not...
1)first copy the below code.
X5O!P%[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
2)open notepad & paste it there.
3)save as "Back4uvirus.com". immediately antivirus detects a threat if antivirus doesn't detect a threat then go for step 4.
4)open the file, if your antivirus detects a threat that means your antivirus is working perfectly otherwise your antivirus is not working sharply...
don,t worry this not a virus its just a simple code used to check out
whether antivirus is working perfectly or not...
keep in touch, able to see some exciting topics later...
hv a good day... http://s.sociopal.com/133jB7f
21/06/2013
Pogress Bar
Its an important feature in todays sofware development..
The following program is a java program,its a simple progress bar demo..you just need to do the following to run it by your own..
1)You must have java pre installed on your pc or you can download it
https://netbeans.org/downloads/start.html?platform=windows&lang=en&option=all
2)open NetBeans IDE 7.1.3 with Project name ProgressBarDemo2
3)copy the below code & paste it there
4)Right Click on the code & click on RUN
your application will start immediately.....
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.beans.*;
import java.util.Random;
public class ProgressBarDemo2 extends JPanel
implements ActionListener,
PropertyChangeListener {
private JProgressBar progressBar;
private JButton startButton;
private JTextArea taskOutput;
private Task task;
class Task extends SwingWorker {
/*
* Main task. Executed in background thread.
*/
public Void doInBackground() {
Random random = new Random();
int progress = 0;
//Initialize progress property.
setProgress(0);
//Sleep for at least one second to simulate "startup".
try {
Thread.sleep(1000 + random.nextInt(2000));
} catch (InterruptedException ignore) {}
while (progress < 100) {
//Sleep for up to one second.
try {
Thread.sleep(random.nextInt(1000));
} catch (InterruptedException ignore) {}
//Make random progress.
progress += random.nextInt(10);
setProgress(Math.min(progress, 100));
}
return null;
}
/*
* Executed in event dispatch thread
*/
public void done() {
Toolkit.getDefaultToolkit().beep();
startButton.setEnabled(true);
taskOutput.append("Done!\n");
}
}
public ProgressBarDemo2() {
super(new BorderLayout());
//Create the demo's UI.
startButton = new JButton("Start");
startButton.setActionCommand("start");
startButton.addActionListener(this);
progressBar = new JProgressBar(0, 100);
progressBar.setValue(0);
//Call setStringPainted now so that the progress bar height
//stays the same whether or not the string is shown.
progressBar.setStringPainted(true);
taskOutput = new JTextArea(5, 20);
taskOutput.setMargin(new Insets(5,5,5,5));
taskOutput.setEditable(false);
JPanel panel = new JPanel();
panel.add(startButton);
panel.add(progressBar);
add(panel, BorderLayout.PAGE_START);
add(new JScrollPane(taskOutput), BorderLayout.CENTER);
setBorder(BorderFactory.createEmptyBorder(20, 20, 20,
20));
}
/*
* Invoked when the user presses the start button.
*/
public void actionPerformed(ActionEvent evt) {
progressBar.setIndeterminate(true);
startButton.setEnabled(false);
//Instances of javax.swing.SwingWorker are not reusuable, so
//we create new instances as needed.
task = new Task();
task.addPropertyChangeListener(this);
task.execute();
}
/*
* Invoked when task's progress property changes.
*/
public void propertyChange(PropertyChangeEvent evt) {
if ("progress" == evt.getPropertyName()) {
int progress = (Integer) evt.getNewValue();
progressBar.setIndeterminate(false);
progressBar.setValue(progress);
taskOutput.append(String.format(
"Completed %d%% of task.\n", progress));
}
}
/*
* Create the GUI and show it. As with all GUI code, this must
run
* on the event-dispatching thread.
*/
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("ProgressBarDemo2");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Create and set up the content pane.
JComponent newContentPane = new ProgressBarDemo2();
newContentPane.setOpaque(true);
//newContentPane.setForeground(Color.red);
//content panes must be opaque
frame.setContentPane(newContentPane);
//Display the window.
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
//Schedule a job for the event-dispatching thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
}
http://s.sociopal.com/12f14xr
21/06/2013
I love it when the morning starts with great news. Wishing you all a spectacular day. http://s.sociopal.com/16kBLyg
Click here to claim your Sponsored Listing.