Sunday, May 22, 2011

Prom Gowns Under 65 Dollars

TP 1 "Vistas fundamentales"


Draw fundamental views of two volumes, one bounded and the other one measure of printing, file format A-4, 1.1 and 1.2 levels

Welcome Letters For Salon New Clients





Future Value Of The Ordinary Annuity Calculator






Thursday, May 19, 2011

Inteletron Bc900k Motion Detector

Desktop Recorder tool to record your desktop in Ubuntu

How about you all, seeing as many of you fought in the recording of their videos, I share this tool that has given me very good results.

Software Center First in Ubuntu type "Desktop recorder" and install it.




already installed we are going to Applications - Sound & Video - Desktop recorder
and will appear this:


Since the control panel can start recording by clicking "Record" but if you want to manipulate a little give click on Advance settings:






Opens the default direction in which we can manipulate videos saved to be saved on the desktop, we click on Save As and select the Desktop for example.


Other parameters we leave the default settings and you're ready to start recording! = D

If you finish recording the video does not appear on the Desktop, find it in your home folder in my case "jetsky0" there must be:]

The videos are saved in a ". Ogv" extension supported by youtube so no need to convert to another format to upload to youtube.

If instead I want to play from the hard drive, I can also recommend VLC player for me is the best player and that plays numerous audio and video formats including the most rare: P and worth having in its ranks = D
VLC is compatible with both Windows and Ubuntu so worth having both if you want to save the need to convert video formats to play them, VLC will save all that.

hope this helps you succeed in your materials! = D Greetings

Tuesday, May 10, 2011

Big White Cartoon Booty

Final Presentation (Workshop)

Entry for the final presentation of my project, describing what tools they used, what documentation got and of course as to implement all the functionality of the program. Deputy
the final presentation and a demonstration video.


Hello

Sims 3 How Do Youstay Out

Final Presentation (CLASS)

last entry in this course will present the final functionality of my software, the end result of what was implemented. Deputy
described the presentation of my software and a video demonstrating its final functionality testing.


South Park Yaoi Couples

Graphic Interfaces (Workshop)

In this post I will present the codes to represent the sketches of the interface than previous designs for the project.

(those who make the lines solely responsible for the construction of the interface to no great length.)

first interface from the Start Menu or Control Panel Home.

This interface is the menu Welcome to the user, this will access the system options.

We begin by stating the method that will contain objects that were commissioned to create the interface to its components. Private void

 initComponents () {

jLabel1 = new javax.swing.JLabel ();
jLabel2 = new javax.swing.JLabel ();
jLabel3 = new javax.swing.JLabel ();
jLabel4 = new javax.swing.JLabel ();
jLabel5 = new javax.swing.JLabel ();
jTextField1 = new javax.swing.JTextField ();
jButton1 = new javax.swing.JButton ();

now declare each component of the interface to their attributes.
 jLabel1.setBackground (new java.awt.Color (0, 0, 0));  
jLabel1.setFont(new java.awt.Font("Arial", 1, 18));
jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel1.setText("MENU PRINCIPAL");
jLabel1.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);

jLabel2.setFont(new java.awt.Font("Tahoma", 1, 14));
jLabel2.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel2.setText("1 -> Agregar Producto");

jLabel3.setFont(new java.awt.Font("Tahoma", 1, 14));
jLabel3.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel3.setText("2 -> View Product List ");

jLabel4.setFont (new java.awt.Font (" Tahoma ", 1, 14));
jLabel4.setHorizontalAlignment (javax.swing.SwingConstants.CENTER) jLabel4
. setText ("3 -> Exit the System");

jLabel5.setFont (new java.awt.Font ("Arial", 1, 14));
jLabel5.setHorizontalAlignment (javax.swing.SwingConstants.CENTER)
jLabel5.setText ("Enter option number:");

jTextField1.setHorizontalAlignment (javax.swing.JTextField.TRAILING)

jButton1.setFont (new java.awt.Font ("Tahoma", 1, 10) )
jButton1.setText ("ACCESS");

And finally, create the Panel and the Window of the interface, followed by accommodation that will have all the components before declared, to give beauty to the interface are declared sizes, positions and coordinates of each of these, one one.
 javax.swing.GroupLayout layout = new javax.swing.GroupLayout (getContentPane ()); 
getContentPane (). SetLayout (layout);
layout.setHorizontalGroup (
layout.createParallelGroup (javax.swing.GroupLayout.Alignment.LEADING )
. addgroup (layout.createSequentialGroup ()
. addGap (75, 75, 75)
. addComponent (jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 362, Short.MAX_VALUE)
.addGap(163, 163, 163))
.addGroup(layout.createSequentialGroup()
.addGap(90, 90, 90)
.addComponent(jLabel5)
.addGap(38, 38, 38)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 33, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(224, Short.MAX_VALUE))
.addGroup(layout.createSequentialGroup()
.addContainerGap(161, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel2)
.addComponent(jLabel3)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4)))
.addGap(220, 220, 220))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(12, 12, 12)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 37, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(4, 4, 4)
.addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE, false)
. addComponent (jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 28, javax.swing.GroupLayout.PREFERRED_SIZE)
. addComponent (jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax. swing.GroupLayout.PREFERRED_SIZE))
. addGap (41, 41, 41)
. addComponent (jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 34, javax.swing.GroupLayout.PREFERRED_SIZE)
. addGap (144, 144, 144 ))
)

pack ();}


Compilation Process / Enforcement:


Final Result:

Now for the panel interface Altas of Products.

Panel To High Product is practically the same as in the control panel only now are more JLabels and JTextFields.

This panel or interface is intended to fill a form in order to register a product in the system and save it. First the method

containing objects and attributes of the components of the GUI. Private void
 initComponents () {

jLabel1 = new javax.swing.JLabel ();
jLabel2 = new javax.swing.JLabel ();
jLabel3 = new javax.swing.JLabel ();
jLabel4 = new javax.swing.JLabel ();
jLabel5 = new javax.swing.JLabel ();
jTextField1 = new javax.swing.JTextField ();
jTextField2 = new javax.swing.JTextField ();
jTextField3 = new javax.swing.JTextField ();
jTextField4 = new javax.swing.JTextField ();
jButton1 = new javax.swing.JButton ();

jLabel1. setFont (new java.awt.Font ("Tahoma", 1, 18));
jLabel1.setHorizontalAlignment (javax.swing.SwingConstants.CENTER)
jLabel1.setText ("Product Data Entry);
jLabel1. setCursor (new java.awt.Cursor (java.awt.Cursor.CROSSHAIR_CURSOR));

jLabel2.setFont (new java.awt.Font ("Tahoma", 1, 14));
jLabel2.setText ("NAME");

jLabel3.setFont (new java.awt.Font ("Tahoma", 1, 14));
jLabel3.setText ("ID");

jLabel4.setFont (new java.awt.Font ("Tahoma", 1 , 14));
jLabel4.setText ("AVAILABLE AMOUNT");

jLabel5.setFont (new java.awt.Font ("Tahoma", 1, 14));
jLabel5.setText ("UNIT PRICE");

jButton1.setFont (new java.awt.Font ("Tahoma", 1, 14));
jButton1.setText ("ADD");

And then, the whole process of arranging and managing the interface components.

 javax.swing.GroupLayout layout = new javax.swing.GroupLayout (getContentPane ()); 
getContentPane (). SetLayout (layout);
layout.setHorizontalGroup (
layout.createParallelGroup (javax.swing.GroupLayout.Alignment. LEADING)
. addgroup (layout.createSequentialGroup ()
. addgroup (layout.createParallelGroup (javax.swing.GroupLayout.Alignment.LEADING)
. addgroup (layout.createSequentialGroup ()
. addGap (179, 179, 179)
. addComponent (jButton1))
.addGroup(layout.createSequentialGroup()
.addGap(70, 70, 70)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 44, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4)
.addComponent(jLabel5))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(32, 32, 32)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField4, javax.swing.GroupLayout.DEFAULT_SIZE, 136, Short.MAX_VALUE)
.addComponent(jTextField3, javax.swing.GroupLayout.DEFAULT_SIZE, 136, Short.MAX_VALUE)))
.addComponent(jTextField1, javax.swing.GroupLayout.DEFAULT_SIZE, 168, Short.MAX_VALUE)))
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField2, javax.swing.GroupLayout.DEFAULT_SIZE, 251, Short.MAX_VALUE)))))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 57, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(35, 35, 35)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4)
.addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
. addGap (29, 29, 29)
. addgroup (layout.createParallelGroup (javax.swing.GroupLayout.Alignment.BASELINE)
. addComponent (jLabel5)
. addComponent (jTextField4, javax . swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
. addGap (30, 30, 30)
. addComponent (jButton1)
. addContainerGap (javax.swing.GroupLayout. DEFAULT_SIZE, Short.MAX_VALUE))
)

pack ();}

Compilation Process / Enforcement:



Final Result:

And finally, the interface for the option of inventory query or view. successfully Adding a product keeping the program going in a table that can then be accessed from the Main Control Panel.

method where we start the components of this interface: private void

 initComponents () {

jLabel1 = new javax.swing.JLabel ();
javax.swing.JScrollPane jScrollPane1 = new ();
jTable1 = new javax . swing.JTable ();

setDefaultCloseOperation (javax.swing.WindowConstants.EXIT_ON_CLOSE)

In this case the proof is only in a "static" (even I am in the process of connecting all the interfaces of the system)

header shall declare the interface .

 jLabel1.setFont (new java.awt.Font ("Tahoma", 1, 14)); 
jLabel1.setText ("STOCK LIST OF");

assign static parameters for the time we to test and demonstrate the interface. As an extra element to add a KeyListener that when we walk the table we highlight the item you have selected (either with arrows keyboard or by clicking on a particular cell with the mouse pointer).

 jTable1.setBorder (javax.swing.BorderFactory.createLineBorder (new java.awt.Color (0, 0, 0))); 
jTable1.setModel (new javax.swing.table.DefaultTableModel (
new Object [] []
{{"001", "Broom", "40", "19.90"},
{null, null, null, null},
{null, null, null, null},
{null, null, null, null},
{null, null, null, null}}
,
new String [] {
"ID", "NAME" "CANTIDAD", "PRECIO UNITARIO"
}
));
jTable1.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyTyped(java.awt.event.KeyEvent evt) {
jTable1KeyTyped(evt);
}
});
jScrollPane1.setViewportView(jTable1);

Y ya por ultimo mero ordenamiento de lo que fue el encabezado y el Panel que contiene esta interfaz.

 javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); 
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 563, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(21, Short.MAX_VALUE))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap(152, Short.MAX_VALUE)
.addComponent(jLabel1)
.addGap(150, 150, 150))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
. Addgroup (layout.createSequentialGroup ()
. AddContainerGap ()
. AddComponent (jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 41, javax.swing.GroupLayout.PREFERRED_SIZE)
. AddGap (12, 12, 12)
. AddComponent (jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 92, javax.swing.GroupLayout.PREFERRED_SIZE)
. addContainerGap (56, Short.MAX_VALUE))
)

pack ();}


Compilation Process / Execution:


Bottom Line:

's it for this post, any questions comments or suggestions please comment, continue to add meat to this and will set out in the end exposures (:

Greetings!

Elegant Wrapping Paper

Graphic Interfaces (Class)

Good morning, this entry will show graphic design I have in mind to implement in my project.

First enclose some information about what we are and what they consist of graphical interfaces.

"The GUI , also known as GUI ( English graphical user interface) is a computer program that acts as user interface using a set of images and graphic objects to represent the information and actions available in the interface. Its main use is to provide a simple visual environment to allow communication with the operating system of a machine or computer. "

Since we know well the definition of what is a graphical user interface (GUI), I shall show the following Screenshots with hand sketch how I want to see my program interface (both the main menu as submenus, and lists of products).



Then show them the prototype interface designed with the help of Netbeans.

Main Menu:
High Product Menu:
Menu List Inventory:


Wednesday, May 4, 2011

No Host Invitation Wording

Distributed Systems (Workshop)

Top Shirts For Skinny Jeans

Distributed Systems (CLASS)


Distributed System is an unclear concept to define. Collection of items autonomic computing that are physically separated and do not share a common memory, communicate with each other by exchanging messages using a communication medium. Autonomous systems may have features not homogeneous.



Characteristics of Distributed Systems.
1.-Each computing element has its own memory and its own operating system.
2.-Control of local and remote resources.
3 .- Open Systems (Facilities for change and growth). 4.-Platform
not standard (Unix, NT, Intel, RISC, etc.).
5.-Means of communication (networks, protocols, devices, etc.). 6 .-
parallel processing capability.
7.-Dispersion and bias.

Model Construction.
* Client / Server Architecture:
An architecture is a set of rules, definitions, terms and models used to produce a product. The client / server architecture brings together elements that perform joint distributed processes and collaborative computing. Customer



set of software and hardware that relies on the services of one or more servers.
Server
set of hardware and software that meets the requirements of a client.

* Communication Network
is all that set of elements based on hardware and software that enables a link between clients and servers, are classified by their size LAN, MAN and WAN.

In java there are some tools and concepts to program distributed systems, we have what is the RMI.

" system Remote Method Invocation (RMI) Java allows an object running on a Virtual Machine Java (VM) to call methods of another object in another VM different. "
The stubs and skeletons are responsible for establishing a connection between a client and a remote object. Stubs run on the client and the server skel .

serializable objects:
"A serializable object is an object that can be converted into a sequence of bytes. For a serializable object must implement java.io.Serializable interface . This interface defines no method. just used to make those classes whose instances can be converted to sequences of bytes (and subsequently rebuilt). Objects as String common as , Vector or ArrayList implement Serializable , so that can be serialized and later reconstructed.
To serialize an object no more than declare the object as serializable:
 public class MyClass implements java.io.Serializable 
The Java runtime system is responsible for making the serialization automatically. "

Sockets .
"A socket (outlet), is a method for communication between a client program and a server program on a network. A socket is defined as the endpoint in a connection. Sockets are created and used a system of petitions or function calls sometimes called application programming interface to sockets API (application programming interface) "


Sources:
http://www.dcc.uchile.cl/ ~ lmateu/CC60H/CompServ/index.html
http://www.programacion.com/articulo/invocacion_remota_de_metodos_rmi_107
http://www. javahispano.org / content / en / serializacrion_en_java /