Skip to content

Commit 92a3e0d

Browse files
committed
removed Codenvy from README.md
1 parent fd173f7 commit 92a3e0d

File tree

3 files changed

+45
-8
lines changed

3 files changed

+45
-8
lines changed

LICENSE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,16 @@
201201
limitations under the License.
202202

203203
##Contributors:
204-
- Lynn Langit
205-
- Samantha Langit
204+
* Lynn Langit
205+
* Samantha Langit
206206
* James Counts
207207
* Genevieve L'Esperance
208208
* Jessica Ellis
209209
* Matt Ballin
210210
* Llewellyn Falco
211211
* Katrina Owen
212212
* June Clarke
213+
* Brick Ellis
213214
* David Coopersmith
214215
* Edgar Melendrez
215216
* Alex Puente

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@ This repository contains the TKP Java API source used to create and support the
1111

1212
We have a short document which describes our approach to courseware design. It is [on penflip](https://www.penflip.com/lynnlangit/tkp-lesson-plans/blob/master/course100.txt)
1313

14-
## Cloud IDE (Codenvy)
15-
16-
An easy way to contribute is to click the 'Open in IDE' button below. This will open our repo in a customized Codenvy factory (web-based IDE). It's designed to facilitate your suggested updates by allowing you to code, build, run and also to make a pull request all from within the Codenvy environment. NOTE: Your Codenvy user account has to have both a username and password for this scenario to succeed, i.e. blank Codenvy passwords won't work.
17-
18-
[![alt](https://codenvy.com/factory/resources/codenvy-contribute.svg)](https://codenvy.com/f?id=wvze4gb3kkwsvioa)
19-
2014
## Setup a local development environment
2115
First [create your own a repository fork](https://github.com/TeachingKidsProgramming/TeachingKidsProgramming.Source.Java#fork-destination-box). Then, follow the instructions below to get started on your preferred platform.
2216

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
package org.teachingkidsprogramming.recipes.completed.section00demos;
2+
3+
import org.teachingextensions.WindowUtils.ProgramWindow;
4+
import org.teachingextensions.logo.utils.ColorUtils.PenColors;
5+
import org.teachingextensions.logo.utils.EventUtils.MouseLeftClickListener;
6+
import org.teachingextensions.logo.utils.LineAndShapeUtils.Diamond;
7+
import org.teachingextensions.logo.utils.LineAndShapeUtils.Text;
8+
9+
public class GermanyDemo implements MouseLeftClickListener
10+
{
11+
private ProgramWindow programWindow;
12+
public GermanyDemo()
13+
{
14+
programWindow = new ProgramWindow("Guten Tag Berlin!");
15+
programWindow.setWindowVisible(true);
16+
programWindow.addMouseLeftClickListener(this);
17+
}
18+
@Override
19+
public void onLeftMouseClick(int x, int y)
20+
{
21+
programWindow.setBackground(PenColors.Grays.Silver);
22+
createFlag(x, y);
23+
}
24+
private void createFlag(int x, int y)
25+
{
26+
programWindow.clearWindow();
27+
Diamond diamond2 = new Diamond(200, PenColors.Reds.Crimson);
28+
diamond2.setCorners(x, y);
29+
Diamond diamond3 = new Diamond(200, PenColors.Yellows.Gold);
30+
diamond3.setCorners(x, y);
31+
diamond2.addTo(programWindow);
32+
diamond3.addTo(programWindow);
33+
Diamond diamond = new Diamond(200, PenColors.Grays.Black);
34+
diamond.setCorners(x, y);
35+
diamond.addTo(programWindow);
36+
new Text("Herzliche Grüße").setTopLeft(x, y).addTo(programWindow);
37+
}
38+
public static void main(String[] args)
39+
{
40+
new GermanyDemo();
41+
}
42+
}

0 commit comments

Comments
 (0)