EGL _Assignment1 Mac OS

IT Unit 2 - Computer Systems





Countdown: http://www.interactiveclock.com/countdown-clock-and-word-jumble-resource.html
Creator: http://happysoft.org.uk/countdown/wordgame.php

















<< click me to visit (submitting assignments etc.)

Unit 2 Full Assignment - if you want to look at it!


Assignment 1

Unit 2 - Assignment One
Assignment 1.1 (P1)
Unit 2 - Assignment 1.1 Template 1 COMPLETE BY 20th September
Unit 2 - Assignment 1.1 Diagram TemplateCOMPLETE BY 20th September
Click on the book for the helpful reference pages for you for this assignment!

Assignment 1.2 (P2)
Unit 2 - Assignment 1.2 question sheetCOMPLETE BY 28th September.
What is an operating system?

Steve's operating system slides

Xerox Alto - ContrAlto video

Assignment 1.2 (M1) COMPLETE BY 30th September.

Assignment 2.1 - Recommending a computer system

A graphic designer needs a new computer for their business. They have a £2500 budget. Specify one option - Either a PC running Windows or an Apple Macintosh PC. The computer MUST be a desktop machine (not laptop) and it must have a large monitor. See the assignment sheet for details of what you need to include.
Assignment 2.1: Due Wednesday 12th October. READ ME
TEMPLATE HERE




Subpages (9):Assignment 3 resources - utilitiesAssignment 5 resources - practicalsIT_U2_week1IT_U2_week3Old U2 assignment stuffRecommending a computer system (Assignment Four)U2_ass1_impor_refUnit 2 assignment 2 resourcesUnit 2 assignment one resources (September to half term)
Home » Newcomers » Newcomers »

Mac OS X Support. Now you can install Rational Business Developer on Mac OS X. For more details on supported versions of Mac OS X, refer to Software Product Compatibility Reports. Most features of RBD are supported. MAC is added as a target system for Java™ generation and resource associations (seqws and remote vsam types are supported).

Egl assignment 1 mac os downloadSuper simple: Importing into eclipse on a mac(How to import into eclipse using a mac)EGL _Assignment1 Mac OS
Show:Today's Messages::Show Polls::Message Navigator
Super simple: Importing into eclipse on a mac[message #698597]Tue, 19 July 2011 19:04
erkmania33
Messages: 2
Registered: July 2011
Hey guys.
I'm completely new to Java (taking Stanford's CS106A programming methodology online), using Eclipse on a Mac to run some pre-made karel programs, and I'm having a problem importing the assignments into Eclipse. It would be great if anybody could lend a hand.
Here's what I do to import my assignment:
I click on File>Import>Existing Projects into Workspace. Then I browse to the Assignment1 folder (under Select root directory), but when I select the Assignment1 folder, no projects appear (even though there are lots of files in the Assignment1 folder), and it doesn't let me import anything at all.
So I'm not able to import any of the assignments, worlds, or background necessary to do the assignment. Any suggestions?
Thanks in advance!
  • Attachment:Screen shot 2011-07-19 at 1.31.29 PM.png
    (Size: 111.78KB, Downloaded 308 times)
Re: Super simple: Importing into eclipse on a mac[message #698636 is a reply to message #698597]Tue, 19 July 2011 20:39
Russell Bateman
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA

On 19-Jul-11 13:04, forums-noreply@eclipse.org wrote:
> Hey guys.
> I'm completely new to Java (taking Stanford's CS106A programmingmethodology online), using Eclipse on a Mac to run some pre-made karel programs, and I'm having a problem importing the assignments into Eclipse. It would be great if anybody could lend a hand.
>
> Here's what I do to import my assignment:
> I click on File>Import>Existing Projects into Workspace. Then I browse to the Assignment1 folder (under Select root directory), but when I select the Assignment1 folder, no projects appear (even though there are lots of files in the Assignment1 folder), and it doesn't let me import anything at all.
>
> So I'm not able to import any of the assignments, worlds, or background necessary to do the assignment. Any suggestions?
>
> Thanks in advance!
Those projects you think you have under Assignment 1 aren't Eclipse
projects. For this reason, you'll need to create a new project (Java
Project, Dynamic Web Project, etc.), then on the wizard's first page,
designate Assignment 1/project as the source for the project. Eclipse
will then create .project, .classpath, etc. in that project and it will
become an Eclipse project.
Hope this helps.
Re: Super simple: Importing into eclipse on a mac[message #698645 is a reply to message #698636]Tue, 19 July 2011 21:32
erkmania33
Messages: 2
Registered: July 2011
Thanks for the reply!
I tried to create a new project, but it wouldn't let me for some reason (the 'finish' tab is grayed out).
I took some screen shots of the steps that I took to start a new project--File>New>Project then General>Project>Next, then gave it a name (Assignment1), but it's not letting me finish.
Also here are the example files that live in the Assignment1 folder that I'm trying to put into Eclipse (they are .java, .jar., and .w)
Thanks again.
-e
  • Attachment:Screen shot 2011-07-19 at 4.23.35 PM.png
    (Size: 38.00KB, Downloaded 2076 times)
  • Attachment:Screen shot 2011-07-19 at 4.24.42 PM.png
    (Size: 44.95KB, Downloaded 2070 times)
  • Attachment:Screen shot 2011-07-19 at 4.25.22 PM.png
    (Size: 44.03KB, Downloaded 1994 times)
Re: Super simple: Importing into eclipse on a mac[message #698661 is a reply to message #698645]Tue, 19 July 2011 22:20
Russell Bateman
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA

On 19-Jul-11 15:32, forums-noreply@eclipse.org wrote:
> Thanks for the reply!
>
> I tried to create a new project, but it wouldn't let me for some reason (the 'finish' tab is grayed out).
> I took some screen shots of the steps that I took to start a new project--File>New>Project then General>Project>Next, then gave it a name (Assignment1), but it's not letting me finish.
> Also here are the example files that live in the Assignment1 folder that I'm trying to put into Eclipse (they are .java, .jar., and .w)
>
> Thanks again.
> -e
Choose a Java Project rather than a generic Project.
This said, under Assignment 1, you don't have any kind of Java project,
but just Java sources and a JAR. This wouldn't be legitimate even for
command-line javac.
In order to make an Eclipse Java Project, create a new Java Project,
with the name you want (maybe Assignment-1?), then create a package (or
packages) under the src subdirectory that corresponds to the package
directive inside your Java file(s). Right-click on a package, choose
New..., then Class and give it the name of one of your Java files. Copy
the contents of that file into the new one. (There are more
sophisticated ways to achieve this, but they're usually frustrating.)
Add a lib subdirectory to the root of your project and copy the JAR file
to it. Right-click on the project and choose Build Path -> Configure
Build Path -> Libraries -> Add JARs to add that JAR to your project
(you'll navigate to find it under that lib subdirectory you created).
Basically, I've told you here how to create a project from scratch
because your 'project' on disk aren't really projects at all.
Re: Super simple: Importing into eclipse on a mac[message #777701 is a reply to message #698661]Tue, 10 January 2012 22:46
Cameron McGregor
Messages: 2
Registered: January 2012
Hi Russell,
I'm trying to do the same thing as erkmania, but am running into a few problems. I have all the same files and the latest eclipse downloaded. Here's my problem(s):
1. When you say to create a package (or packages) under the src subdirectory that corresponds to the package directive inside your Java file(s). What exactly does this part mean? In the list here, which are my package directives?
I've clicked on my src subdirectory to create a new package, but I'm not sure if the package directive is the .class or .java files I've got contained. This is where I'm most confused.
2. When I go to >build path > configure build path > add JARS > my karel.jar isn't listed. I have to have to add my jar via > Add External JARS. Is there is a difference between the two? Will it matter?
Thanks much for your help and patience!
BM
Choose a Java Project rather than a generic Project.
'This said, under Assignment 1, you don't have any kind of Java project,
but just Java sources and a JAR. This wouldn't be legitimate even for
command-line javac.
In order to make an Eclipse Java Project, create a new Java Project,
with the name you want (maybe Assignment-1?), then create a package (or
packages) under the src subdirectory that corresponds to the package
directive inside your Java file(s). Right-click on a package, choose
New..., then Class and give it the name of one of your Java files. Copy
the contents of that file into the new one. (There are more
sophisticated ways to achieve this, but they're usually frustrating.)
Add a lib subdirectory to the root of your project and copy the JAR file
to it. Right-click on the project and choose Build Path -> Configure
Build Path -> Libraries -> Add JARs to add that JAR to your project
(you'll navigate to find it under that lib subdirectory you created).
Basically, I've told you here how to create a project from scratch
because your 'project' on disk aren't really projects at all.'
Re: Super simple: Importing into eclipse on a mac[message #777702 is a reply to message #698661]Tue, 10 January 2012 22:47
Cameron McGregor
Messages: 2
Registered: January 2012
Hi Russell,
I'm trying to do the same thing as erkmania, but am running into a few problems. I have all the same files and the latest eclipse downloaded. Here's my problem(s):
1. When you say to create a package (or packages) under the src subdirectory that corresponds to the package directive inside your Java file(s). What exactly does this part mean? In the list here, which are my package directives?
I've clicked on my src subdirectory to create a new package, but I'm not sure if the package directive is the .class or .java files I've got contained. This is where I'm most confused.
2. When I go to >build path > configure build path > add JARS > my karel.jar isn't listed. I have to have to add my jar via > Add External JARS. Is there is a difference between the two? Will it matter?
Thanks much for your help and patience!
BM
Choose a Java Project rather than a generic Project.
'This said, under Assignment 1, you don't have any kind of Java project,
but just Java sources and a JAR. This wouldn't be legitimate even for
command-line javac.
In order to make an Eclipse Java Project, create a new Java Project,
with the name you want (maybe Assignment-1?), then create a package (or
packages) under the src subdirectory that corresponds to the package
directive inside your Java file(s). Right-click on a package, choose
New..., then Class and give it the name of one of your Java files. Copy
the contents of that file into the new one. (There are more
sophisticated ways to achieve this, but they're usually frustrating.)
Add a lib subdirectory to the root of your project and copy the JAR file
to it. Right-click on the project and choose Build Path -> Configure
Build Path -> Libraries -> Add JARs to add that JAR to your project
(you'll navigate to find it under that lib subdirectory you created).
Basically, I've told you here how to create a project from scratch
because your 'project' on disk aren't really projects at all.'
  • Attachment:Eclipse help #1.jpg
    (Size: 224.23KB, Downloaded 231 times)
Re: Super simple: Importing into eclipse on a mac[message #777729 is a reply to message #777702]Tue, 10 January 2012 23:34
Russell Bateman
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA

On 10-Jan-12 15:47, Cameron McGregor wrote:
> Hi Russell,
>
> I'm trying to do the same thing as erkmania, but am running into a few problems. I have all the same files and the latest eclipse downloaded. Here's my problem(s):
>
> 1. When you say to create a package (or packages) under the src subdirectory that corresponds to the package directive inside your Java file(s). What exactly does this part mean? In the list here, which are my package directives?
> I've clicked on my src subdirectory to create a new package, but I'm not sure if the package directive is the .class or .java files I've got contained. This is where I'm most confused.
>
> 2. When I go to>build path> configure build path> add JARS> my karel.jar isn't listed. I have to have to add my jar via> Add External JARS. Is there is a difference between the two? Will it matter?
>
> Thanks much for your help and patience!
>
> BM
1. Think of packages as matching the folders or subdirectories between
src and your .java file. The package directive is:
package all.the.folders.above.my.javacode;
Take a look at
http://www.javahotchocolate.com/tutorials/use-eclipse.html to see if it
doesn't help with some of this. (It shows only one package, but you
could have more than one.)
2. Which of Add External JARs and Add JARs to use depends on whether the
JAR is in your project's filesystem or elsewhere. I think the
distinction is really whether a full filesystem path or a relative path
is generated for the .classpath file at the root of your projects. This
makes a big difference if you're sharing your project via Subversion or
another version-control system.
Re: Super simple: Importing into eclipse on a mac[message #786825 is a reply to message #777729]Mon, 30 January 2012 21:14
rene askham
Messages: 1
Registered: January 2012
Did you get this to work?
I have tried a lot now (total newbie just started the CS106A stanford online course) and I think I got something working:
I did like this:
1. download 'assignment 1' from the Stanford site.
2. As the zip file is automatically unzipped in the download folder (on mac OS Lion), I moved the folder to the desktop, right clicked the folder, selected 'compress assignment 1', then I had the zip file again.
3. In Eclipse (I use Indigo Service Release 1 - couldn't get the Stanford version to run on Lion) choose File --> Import --> General --> Existing Project into workspace --> select archive file --> browse --> assignment 1.zip (the one you compressed above) --> open.
After this I can write code and get it to work but only CollectNewspaperKarel.java! This I don't understand as assignment 1 has 4 smaller tasks, but no matter which of the 4 I write in and choose it runs CollectNewspaperKarel.java. Frustrating but for now I just write the code for each sub assignment in the collectnewspaperkarel and try it that way.
Any ideas of what I do wrong in this last part?
Previous Topic:Problem occouring with the compiler (eclipse with cygwin)
Next Topic:Opening a non-UTF-8 encoded text file?

Egl Assignment 1 Mac Os 11

  • Operating System. Qt supports – Win32 (.win.cpp files) – POSIX (.unix.cpp files). Exception: Some native calls instead of POSIX for optimization or deeper integration (for example on Symbian, Mac OS X) 17 18.
  • A port of the EGL API to Mac OS X (OpenGL) and iOS (OpenGL ES 1 & 2) - buffer8848/EGLmacios.

Egl Assignment 1 Mac Os Download

Goto Forum:
[ Syndicate this forum (XML) ] [ ]

Powered by FUDForum. Page generated in 0.03570 seconds