Tuesday, December 15, 2015
Wednesday, September 9, 2015
Tech links
http://www.wired.com/2015/09/21-must-follow-feeds-world-business/
http://nextdraft.com/
https://news.ycombinator.com/
https://twitter.com/pmarca
https://modelviewculture.com/
http://www.coindesk.com/
http://ben-evans.com/
https://gimletmedia.com/show/startup/
http://www.kpcb.com/internet-trends
http://tinyletter.com/metafoundry
http://www.dailydot.com/
http://theorizingtheweb.tumblr.com/
https://twitter.com/mims
http://tinyletter.com/todayintab
http://exponent.fm/
https://twitter.com/susie_c
http://recode.net/author/kara-swisher/
https://www.theinformation.com/
http://recode.net/
http://thehustle.co/episodes
Sunday, February 1, 2015
To set up Android Studio on Windows
http://developer.android.com/sdk/installing/index.html?pkg=studio
To download Android Studio on Windows:
http://developer.android.com/sdk/index.html
To download Android Studio on Windows:
http://developer.android.com/sdk/index.html
To set up Android Studio on Windows:
- Launch the
.exe
file you just downloaded. - Follow the setup wizard to install Android Studio and any necessary SDK tools.On some Windows systems, the launcher script does not find where Java is installed. If you encounter this problem, you need to set an environment variable indicating the correct location.Select Start menu > Computer > System Properties > Advanced System Properties. Then open Advanced tab > Environment Variables and add a new system variable
JAVA_HOME
that points to your JDK folder, for exampleC:\Program Files\Java\jdk1.7.0_21
.
The individual tools and other SDK packages are saved outside the Android Studio application directory. If you need to access the tools directly, use a terminal to navigate to the location where they are installed. For example:
\Users\<user>\sdk\
Wednesday, January 21, 2015
Multi-Dimensional Arrays
int[ ][ ] aryNumbers = new int[6][5];
Wednesday, January 14, 2015
Arrays
Java Arrays
What is an Array?
So far, you have been working with variables that hold only one value. The integer variables you have set up have held only one number, and the string variables just one long string of text. An array is a way to hold more than one value at a time. It's like a list of items. Think of an array as the columns in a spreadsheet. You can have a spreadsheet with only one column, or lots of columns. The data held in a single-list array might look like this:To set up an array of number like that in the image above, you have to tell Java what kind of data is going in to your array (integers, strings, boolean values, etc). You then need to say how many positions the array has.
Friday, January 9, 2015
Tuesday, November 25, 2014
ASSIGNMENT #1
ASSIGNMENT #1
===========
The purpose of
this assignment is to familiarize you with Eclipse.
First you must
start Eclipse. Click on the Eclipse shortcut If there is
no such shortcut,
click on start, select Programs and then click on
Eclipse. Once in
Eclipse, go to the tool bar on top and click on File. A menu opens up and you
click on New Java Project.
Subscribe to:
Posts (Atom)