To remove parentheses from multiple files in windows, do the followings:
1. If you have many files like this:
conf (1).jpg
conf (2).jpg
conf (3).jpg
conf (4).jpg
conf (5).jpg
conf (6).jpg
2. Create a bat file. The code for bat file is:
All about Computer Science | Linux: OpenSUSE, Red Hat, CentOS, Fedora| RPM Package Manager (RPM) (Red Hat Package Manager)| Programming Concepts | Java | Python | Life Hacks | Microsoft Windows | Tutorials...
Tuesday, March 31, 2015
Monday, March 16, 2015
Start a New SVN in Linux
1. First go to your home directory
2. Open terminal
3. Create any folder that you want to make
for eg. mkdir Jupiter
4. go to that folder
example: cd Jupiter
5. Type
svn checkout svn://amon.cs.nmsu.edu/cs581sp2015/teamUSM1
Now it will load all the files from svn repository to your computer
2. Open terminal
3. Create any folder that you want to make
for eg. mkdir Jupiter
4. go to that folder
example: cd Jupiter
5. Type
svn checkout svn://amon.cs.nmsu.edu/cs581sp2015/teamUSM1
Now it will load all the files from svn repository to your computer
Friday, March 13, 2015
NMSU Payroll Direct Deposit Advice Password
If you receive the .pdf file from payroll advice and wondering what is the password, here you go!
The password is: first 4 digits of your family name + last 4 digits of your social security number.
The password is: first 4 digits of your family name + last 4 digits of your social security number.
Monday, March 2, 2015
How to Use SVN in Windows
1. First of all search the svn software for windows.
You can directly go to http://tortoisesvn.net/ and then downloads directory.
2. Install TortoiseSVN-(....).msi software on your PC
3. Create the folder where you want to have your project files. Then right click on it and select TortoiseSVN → Checkout
For example: Goto → My Documents
→ then right-click with the mouse on an empty spot
→ then click on SVN Checkout
You can directly go to http://tortoisesvn.net/ and then downloads directory.
2. Install TortoiseSVN-(....).msi software on your PC
3. Create the folder where you want to have your project files. Then right click on it and select TortoiseSVN → Checkout
For example: Goto → My Documents
→ then right-click with the mouse on an empty spot
→ then click on SVN Checkout
Thursday, February 26, 2015
Internal vs External Quality
External Quality Characteristics:
care u air
Correctness, Usability, Efficiency, Reliability, Integrity, Adaptability, Accuracy, and Robustness.
Internal Quality Characteristics:
mut r pr
Maintainability, Flexibility, Portability, Re-usability, Readability, Testability, and Understandability.
care u air
Correctness, Usability, Efficiency, Reliability, Integrity, Adaptability, Accuracy, and Robustness.
Internal Quality Characteristics:
mut r pr
Maintainability, Flexibility, Portability, Re-usability, Readability, Testability, and Understandability.
Tuesday, February 17, 2015
Java Applet Program to Draw Olympic Ring
import java.awt.*;
import javax.swing.*;
public class Olympic extends JApplet{
public void paint(Graphics g){
g.setColor(Color.blue);
g.drawOval(10,10,100,100);
import javax.swing.*;
public class Olympic extends JApplet{
public void paint(Graphics g){
g.setColor(Color.blue);
g.drawOval(10,10,100,100);
Basic Java Calculator using Methods
import java.util.Scanner;
public class calculator{
private static final Scanner STDIN = new Scanner(System.in);
public static void main(String[] args){
int inpOpr;
System.out.println("\n 1. Addition");
System.out.println("\n 2. Substraction");
System.out.println("\n 3. Multiplication");
System.out.println("\n 4. Division");
System.out.println("\n Enter your choice");
public class calculator{
private static final Scanner STDIN = new Scanner(System.in);
public static void main(String[] args){
int inpOpr;
System.out.println("\n 1. Addition");
System.out.println("\n 2. Substraction");
System.out.println("\n 3. Multiplication");
System.out.println("\n 4. Division");
System.out.println("\n Enter your choice");
Subscribe to:
Posts (Atom)