Jump to content

Gofer01

Member
  • Posts

    69
  • Joined

  • Last visited

Everything posted by Gofer01

  1. you are absolutely correct. all good website programmers minify there codes. So we both win if we create something like pac man in JavaScript using one line of code Is this cheating? The answer is no. The didn't set any boundaries in this make believe contest. If my memory is right, I had a similar class assignment in College. I totally forgotten which class the assignment was for. So many classes, so the classes run together in my thought process.
  2. In this case I would use something like Google Chrome JavaScript console, or a GUI like Microsoft Visual Studio 2012 in debug mode. both tools will stop on the beginning of the error and will show you where they stop. VS 2012 will give you hints on why it stop running the javascript code.
  3. if you see *.js it's JavaScript. The screenshot clearly shows script.js. I never thought about creating a javascript paper, rock, and scissors game. Just add graphics and you good to go. I read the thread kind of fast. Don't know that you trying to do. I know that you will get the same results because line 1 to 9 is commented out. I use document.write("Some text"); over console.log because I'm a website developer & Designer by trade.
  4. That td selector code should work. How are you using the css? Inline, header, or external file? In VS 2012 Pro with intellisense automatic code writing, this code was generated The no space between the :5 shouldn't effect the code from running the right way. Might want to to look at the space between td{ td { border: 1px dotted blue; height: 50px;}
  5. It's all CSS. Use firefox go to a web page and then turn off css. In fact go to this web page with Firefox and then turn off CSS. No matter what language you use in a web application. The web server renders the app into html or JavaScript. and uses CSS for the colors, fonts, sizes and position of elements(content) within a web page Google is using 2 text box elements, 1 button element 1 image element and most likely several p and or div elements. The looks come from CSS
  6. I use VS 2012 Pro, Dreamweaver CC, Eclipse and a plugin to code PHP for VS 2012. I'm messing around with Adobe Edge Anamate right now. It's so cool using JavaScript instead of flash.
  7. Why work so hard. Haven't your employer got on to you yet for not producing your projects on time. Most IDE will tell you where a error in your code right away. In Notepad++ you have to hunt down the error. In notepad, it has colorful fonts and line numbers. I want a tool that assist me in writing productive code as fast as possible.
  8. Now let's get to the point. Did this really happen. The young lady only provided a screenshot of text. In the screenshot the lady didn't provide the EA logo or the url. The evidence is inconclusive. The screenshot already shows evidence of being tamper with. Furthermore the black out part looks like it was black out by hand. 99% of all editing software use block vector shapes to hide unwanted images or words This means that she printed the text black it out by hand and when scan the text back into the computer
  9. The filters work only if you put that hyperlink in the database before hand. I wonder if he received a copy of the chat by e-mail. It so simple to get around chat filters.
  10. Can I use registered DDR3 sticks (server RAM) on a non-server motherboard?
  11. Second post it says GDDR. G means graphic DDR means system RAM. So my original post stands. DDR5 is not stable enough for Desktops or Servers.. I think I quoting J.J. from ASUS on his blog. I read his post several month ago. I have no way in finding that hyperlink.
  12. lol you right. I never really look at the spelling of GDDR. I always thought it said DDR5
  13. I have no clue. and I'm not very worried about the price right now. When it come time to purchase the RAM then I will worry about the price. I just built two systems in the pass 7 months. I will not build another system for maybe 2 years even if the new DDR4 RAM will not work in my current builds.
  14. You are absolutely right. I never said or will be a gamer. I'm a graphic designer and and website developer as my trade, and going back to school to learn video production. hence I want a high powered workstation for video editing and processing. I link up with the gaming community because they were into the best CPU's, RAM, and Graphic Cards all the stuff that I wanted.
  15. DDR5 is already here. It't been here some time now. We use it in graphic cards. DDR5 is not stable enough for desktops and severs
  16. Naw it is coming out within 6 months or less from 01/01/2014. As soon as Intel gives permission. That is what the Crucial Rep said to Kyle at the IDF Confernce in San Francisco last week. Samsung and G'Skill was showing off the DDR4 engineering samples too. Linus or Paul wasn't at this conference but Newegg sent Kyle and Steve to the conference
  17. Luke, Why can't we upload a jpg file in our post. There is no security issues with gif, png, or jpg files unless you don't want us to post screen shots, or images. in the content of our post
  18. When DDR4 RAM planned release date for the first quarter of 2014 for Desktops. Will they upgrade the 8GB sticks to 16GB and/or 32GB like for the current server registered DDR3 RAM? Second question will DDR4 RAM sticks work in a DDR3 memory slot on a consumers level motherboard. (Home use / Game use) The IDF Conference 2013 in San Francisco that ended last week, had several RAM vendors advertising thee new DDR4 memory. Unfortunately I didn't go to this conference, I only saw short YouTube videos of this conference. http://www.tweaktown.com/news/23598/samsung_are_pushing_intel_to_launch_ddr4_ahead_of_its_2014_release_date/index.html http://www.xbitlabs.com/news/memory/display/20130912235007_G_Skill_Demonstrates_Its_First_DDR4_Memory_Modules.html
  19. Naw, a college student like myself get's nothing free from Adobe. We only get a discount on some of there products. Like Adobe Master Suite CS 6. $900.00 and Adobe subscription $19.95 plus tax for a year. After the year is up, the student pays the full price for the subscription witch is $49.95 plus tax
  20. dropbox spokemans said the company compile the document after it's been uploaded for faster reading when the author or a person with permission request to view there documents. So no big brother like NSA or a rep from dropbox is reading a dropbox consumer data
  21. Here is the full code // File Name SendEmail.javaimport java.util.*;import javax.mail.*;import javax.mail.internet.*;import javax.activation.*;public class SendEmail{ public static void main(String [] args) { // Recipient's email ID needs to be mentioned. String to = "abcd@gmail.com"; // Sender's email ID needs to be mentioned String from = "web@gmail.com"; // Assuming you are sending email from localhost String host = "localhost"; // Get system properties Properties properties = System.getProperties(); // Setup mail server properties.setProperty("mail.smtp.host", host); // Get the default Session object. Session session = Session.getDefaultInstance(properties); try{ // Create a default MimeMessage object. MimeMessage message = new MimeMessage(session); // Set From: header field of the header. message.setFrom(new InternetAddress(from)); // Set To: header field of the header. message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: header field message.setSubject("This is the Subject Line!"); // Now set the actual message message.setText("This is actual message"); // Send message Transport.send(message); System.out.println("Sent message successfully...."); }catch (MessagingException mex) { mex.printStackTrace(); } }}Compile and run this program to send a simple email:$ java SendEmailSent message successfully....If you want to send an email to multiple recipients then following methods would be used to specify multiple email IDs:void addRecipients(Message.RecipientType type, Address[] addresses)throws MessagingExceptionHere is the description of the parameters:type: This would be set to TO, CC or BCC. Here CC represents Carbon Copy and BCC represents Black Carbon Copy. Example Message.RecipientType.TOaddresses: This is the array of email ID. You would need to use InternetAddress() method while specifying email IDsSend an HTML Email:Here is an example to send an HTML email from your machine. Here it is assumed that your localhost is connected to the internet and capable enough to send an email.This example is very similar to previous one, except here we are using setContent() method to set content whose second argument is "text/html" to specify that the HTML content is included in the message.Using this example, you can send as big as HTML content you like.// File Name SendHTMLEmail.javaimport java.util.*;import javax.mail.*;import javax.mail.internet.*;import javax.activation.*;public class SendHTMLEmail{ public static void main(String [] args) { // Recipient's email ID needs to be mentioned. String to = "abcd@gmail.com"; // Sender's email ID needs to be mentioned String from = "web@gmail.com"; // Assuming you are sending email from localhost String host = "localhost"; // Get system properties Properties properties = System.getProperties(); // Setup mail server properties.setProperty("mail.smtp.host", host); // Get the default Session object. Session session = Session.getDefaultInstance(properties); try{ // Create a default MimeMessage object. MimeMessage message = new MimeMessage(session); // Set From: header field of the header. message.setFrom(new InternetAddress(from)); // Set To: header field of the header. message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: header field message.setSubject("This is the Subject Line!"); // Send the actual HTML message, as big as you like message.setContent("<h1>This is actual message</h1>", "text/html" ); // Send message Transport.send(message); System.out.println("Sent message successfully...."); }catch (MessagingException mex) { mex.printStackTrace(); } }}
  22. // File Name SendEmail.java import java.util.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendEmail { public static void main(String [] args) { String to = "abcd@gmail.com"; String from = "web@gmail.com"; String host = "localhost"; Properties properties = System.getProperties(); properties.setProperty("mail.smtp.host", host); Session session = Session.getDefaultInstance(properties); try{ MimeMessage message = new MimeMessage(session);. message.setFrom(new InternetAddress(from)); message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); message.setSubject("This is the Subject Line!"); message.setText("This is actual message"); Transport.send(message); System.out.println("Sent message successfully...."); }catch (MessagingException mex) { mex.printStackTrace(); } } } Had to strip all comments in the program. Didn't supply the html code to execute this program because 100 lines or less requirement
  23. If you want the stop watch for a website, you might want to use JavaScript over java http://www.codeproject.com/Articles/29330/JavaScript-Stopwatch AJAX JavaScript Stop Watch: http://www.webmasterworld.com/javascript/4062522.htm
  24. So where is the hyperlink to purchase the badges. Slick should create 4 donate HTML PayPal buttons and post the buttons in a prominent area to be easy found. Want to support the LinusTech group some how. Michael Summers
  25. What area do you want to focus on. Designing (Making the website look pretty) or a Developer (Making the website to do things that you want it to do.)? Even before you make up your mind if you want to be a Developer, or Designer, go out there and really learn HTML 5, and CSS 3.0. These two markup languages are the base platform for any website base code that you want to work with. Then move up to JavaScript. If you are a College Student, you will need tools in developing or designing a website. So go to Microsoft Dreamsparks and pick up Microsoft Visual Studio, Expression 4, SQL Server, and Windows 2012 Server for free. I highly suggest using part of your pell grant, or student loans in purchasing Adobe Master Suite for $800.00 from Amazon.com. That price is $1900.00 saving from the retailed price. If you not a student, go to your local community college and sign up for two online classes, like HTML and CSS classes. Apply for the $2,700.00 pell grant, and the $10,000.00 a year student loan. Then get your student ID and e-mail address. You will qualify for the funds if you take 6 credits or more, have a High School Diploma, or a GED, have a GPA 2.0 or better, have not default on pass student loans. Complete the two classes. You will keep the pell grant payment. In 6 month you will start paying the student loan of $3,500.00 over a 8 year period, or you can continue with your Community College Education. No matter what you chose, that student ID and e-mail address is good for a year. If used the right way can save you thousands of dollars a year.
×