I left a physics job to do software engineering. Was it worth it? What do software engineers actually do? Thank you to YouTube for sponsoring this video! http://yt.be/jobsforphysicsgirls If you liked this video check out these: My Path into Physics (at MIT) https://www.youtube.com/watch?v=n2RhC4JNS7M I Visited the First Gravitational Wave Detector! LIGO | STELLAR https://www.youtube.com/watch?v=jtp71NT0GNg Subscribe to physics girl: https://www.youtube.com/subscription_center?add_user=physicswoman Software engineers and programmers code everything from virtual reality to artificial intelligence to unique instruments like engineer Ben Bloomberg made for musician Jacob Collier. Are you considering new job or career? Me too. http://physicsgirl.org/ http://twitter.com/thephysicsgirl http://facebook.com/thephysicsgirl http://instagram.com/thephysicsgirl PO Box 9281 San Diego, CA 92169 Creator: Dianna Cowern Editing: Jabril Ashe Animations: Kyle Norby and Jabril Ashe Thanks to Ben Bloomberg and Kyle Kitzmiller!
Tag: student
Student Registration System in PHP/MySQL with Admin Panel in Urdu/Hindi 4/15
Java programming part 83 GUI : Copy Systems Clipboard
Java Programming tutorial, GUI, Graphical User Interface. this tutorial is teaching. How to Use the Systems Clipboard to copy text from the textArea by using the Menu Edit Copy. import java.awt.BorderLayout; import java.awt.Color; import java.awt.FlowLayout; import java.awt.datatransfer.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import javax.swing.*; public class UserFrame extends JFrame implements ActionListener{ public static String name = "charles"; public static JMenuItem print; public static JMenuItem print2; public static JMenuItem copy; public static JMenuItem paste; public static JMenuItem cut; Clipboard clip = getToolkit().getSystemClipboard(); public static JButton jb11; public static ImageIcon icon1; public static ImageIcon icon2; public static ImageIcon icon3; public static ImageIcon icon4; public static ImageIcon icon5; public static ImageIcon icon6; public static ImageIcon icon7; public static JCheckBox tbox; public static JRadioButton rbut; public static JTextArea area; public static
What is PHP? Personal Home Page or…………….?
Object Oriented Programming Tutorial PHP Class File Creation Learn OOP
Lesson Code: Learn Object Oriented Programming (OOP) in PHP. OOP is used to tap into class files that house your software logic in an organized, extensible, dynamic, reusable framework of sorts. You can use class files to create very robust custom frameworks in PHP. JavaScript and ActionScript 3.0 have similar flow to PHP so it also is easy to make external reusable modules for those languages as well. I also threw in a PHP bad word filter function, so you get a bit of string manipulation logic and array handling thrown in for free. source
JAVA – Student Information System Project In Java Using NetBeans With Source Code | Part 9
Student Information System Project Using Java And MySQL DataBase Part 10 : ------------- All My Programming Projects Here --- My Source Code Store --- Java Course -- ------------- visit our blog subscribe: C# And Java Programming Books Tutorials PlayList Coming soon. 1bestcsharp blog, 1bestcsharp, In this java project tutorials serie we will see how to create a basic student management system using java netbeans and mysql database before starting this serie you must : - learn first java core -download and install netbeans ide(you can use eclipse but i prefer netbeans) -have some knowledge in database -downoad and install XAMPP or WAMPP server and while creating this java project we will see how: - design and create a login form so the users can enter a password and a username , if the username
JAVA – Student Information System Project In Java Using NetBeans With Source Code | Part 6
Student Information System Project Using Java And MySQL DataBase Part 7 : ------------- All My Programming Projects Here --- My Source Code Store --- Java Course -- ------------- visit our blog subscribe: C# And Java Programming Books Tutorials PlayList Coming soon. 1bestcsharp blog, 1bestcsharp, In this java project tutorials serie we will see how to create a basic student management system using java netbeans and mysql database before starting this serie you must : - learn first java core -download and install netbeans ide(you can use eclipse but i prefer netbeans) -have some knowledge in database -downoad and install XAMPP or WAMPP server and while creating this java project we will see how: - design and create a login form so the users can enter a password and a username , if the username
Database Creation in PHP | PHP | VHNSNC (Autonomous)
[FOCUS AREA] Web Hosting | Chapter 7 | +2 Computer Application / Science in Malayalam
Java programming part 59 GUI : Adding Buttons with ActionListener and FlowLayout LayoutManager.
Java Programming tutorial, GUI, Graphical User Interface. this tutorial is teaching adding Buttons, using ActionListener and FlowLayout LayoutManager. import java.awt.Container; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; public class UserFrame extends JFrame implements ActionListener{ UserFrame(){ setTitle("UsersFrame"); setSize(200,200); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); } public static void main(String[] args){ UserFrame f = new UserFrame(); Container cp = f.getContentPane(); f.setLayout(new FlowLayout()); JButton jb1 = new JButton("first click"); jb1.addActionListener(f); JButton jb2 = new JButton("Second click"); jb2.addActionListener(new ActionListener(){ @Override public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub System.out.println(" SEe waht i mean we are all different!!"); } }); f.add(jb1); f.add(jb2); } @Override public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub System.out.println("The first button has been clickled"); } }