SlideShare a Scribd company logo
1 of 30
In this project, you will learn to use some of the “team” features
of your preferred IDE (Eclipse or NetBeans). We will use the
“Git” source code control system to allow all members of the
class to work on the same project at the same time, and then to
merge in your changes. This is a “real-world” way of working
on code; few developers work on real projects by themselves.
(And even then, version control is often useful and used.)
The project is a very simple one. The source file SayHello.java
has a main method you need to edit. Add a statement to main to
greet the class by displaying a unique string (so your
contribution differs from other students'), which should include
your name. (You are free to add additional output if you desire,
such as a quote or joke.)
I have created a Git repository you can access from the
GitHub.com
. This repository contains the initial version of
SayHello.java
, a
README.md
file, a
.gitignore
file, and a bunch of other files needed for a Maven project.
(There are also some Eclipse IDE project files in there, to make
importing into Eclipse easier.) The initial version has a
greeting from the instructor you can use as a model for your
own additions. (While it is okay to be a little creative, say by
adding a joke or quote, just don't go overboard and add too
much!) The URL of the repo is shown below, in the step-by-
step directions for each IDE. You can also view the
project's website
(generated by Maven from the initial version).
Following the directions below, you will create a GitHub
account for yourself, and
clone
the current repo. (IDEs generally require a local repo to work
with as well.)
You use the Git repo just like any other Java project. When you
are done making a set of changes (for this project you only need
to add a single line to
main
), you must
commit
your changes. That updates the local repository from your
IDE's version. Next, you
Push
your changes to the class' GitHub repo. During this step you
may discover another student has committed some changes after
you had checked out the project. If so, you will need to
merge
your changes into the new version. You can also
update
your local copy of the project, over-writing your files with the
latest ones from the repository, and make your change again.
You can perform other Git related operations with Eclipse or
NetBeans. (Generally, I find the Git interface for NetBeans
more intuitive than Eclipse.) It is expected that students will
explore some of these operations. Eclipse assumes you may
have multiple projects per repo, and thus creates a project top-
level folder within the top (root) of the repo. NetBeans doesn't
do that by default, but it is perfectly happy either way, so I set
up the GitHub class repo using the Eclipse conventions.
Another issue is that Eclipse doesn't easily import non-Eclipse
projects with existing sources. It can be done, but it was easier
to create the default Eclipse project files and add them to the
repo. They should be ignored by NetBeans, and it shouldn't be
modifiable by Git; the repo was set to ignore changes to those
files.
You can read about using these features with your IDE using the
built in help system you have learned to use in a previous
project. For more information visit the
Git Home
, especially the
Git book online
, and the other resources found on our class web page.
Using either Eclipse or NetBeans (you don't have to use both,
although you can) complete the steps shown below for your IDE
to setup a Git project. Then edit the shared Java program, test
it, commit your change(s), and finally, push your changes back
to the central repository (merging if necessary).
The first step is to make sure your IDE includes the latest Git
plug-ins
. These almost certainly have been installed already, or you
may need to add one or more plug-ins for it. See your IDE's
documentation to see how to add plug-ins. (You can add some
others if you wish, but until you are comfortable with your
basic IDE features, I suggest you resist the temptation to install
much extra.) You should also check for IDE updates, and
install any found.
There are Windows GUI and command line tools for working
with Git and/or GitHub. They are not IDEs however; you view
your repos, create new ones, and with some tools, add files or
commit new versions of files. As the Git plug-ins for Eclipse
and NetBeans includes a full version of Git, you don't need any
other tool. (That is, this step is optional). Still, it is handy to
be able to run various Git commands outside of an IDE,
especially when trying to learn.
SayHello.java
// Git collaborative COP-2805C (Java II) project.
// $Id$
package mypkg;
/** Class used for COP-2805C git and GitHub project.
*/
public class SayHello
{
/** Displays greetings for all students.
* When done, displays a count of students who edited this file.
* @param args - Unused
*/
public static void main ( String [] args )
{
int counter = 0;
System.out.println( "Howdy! My name is Wayne Pollock." );
counter++;
// (1) Add your own output below these comments that
includes your name.
// (2) Place "counter++;" command after your contribution, to
keep count.
// (3) Keep the existing println statement at the very end.
System.out.println("Kevin Mock here, my code is a massive
upgrade to this program! LOL.");
counter++;
System.out.println( "Number of students who edited this file: "
+ counter );
}
}
README.md file
Notes:
All files are initially encoded as UTF-8. This isn't the
default for some IDEs, so you should change that in the
preferences.
Line endings of text files are Windows format (CR-LF). That
should be the default in any Windows IDE.
Gitignore file
.classpath
.project
bin
build
nbproject
build.xml
manifest.mf
target
*.class
*.jar
Settings
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/test/java=UTF-8
encoding/=UTF-8
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warn
ing
org.eclipse.jdt.core.compiler.source=1.5
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
SayHelloTest.java
package mypkg;
import static org.junit.Assert.*;
import org.junit.Test;
/**
* Empty test Suite for SayHello program.
*
* @author Wayne Pollock, Tampa Florida USA
*/
public class SayHelloTest {
/**
* Rigourous Test :-)
*/
@Test
public void testSayHello()
{
assertTrue( true );
}
}
.classpath
.project
COP-2805C-template.git
org.eclipse.jdt.core.javabuilder
org.eclipse.m2e.core.maven2Builder
org.eclipse.jdt.core.javanature
org.eclipse.m2e.core.maven2Nature
Pom.xml
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
4.0.0
mypkg
COP-2805C-template.git
jar
1.0-SNAPSHOT
gitproj
https://github.com/profwpollock/COP-2805C-2018
Initial version for the Git project, "SayHello".
2018
Apache 2
https://www.apache.org/licenses/LICENSE-2.0.txt
repo
A business-friendly FOSS license
COP-2805C - HCC
https://wpollock.com/
wpollock
Wayne Pollock
[email protected]
https://wpollock.com/
HCC
https://www.hccfl.edu/
developer
-5
https://wpollock.com/images/Wayne.jpg
UTF-8
1.9
1.9
junit
junit
4.12
test
org.apache.maven.plugins
maven-jar-plugin
2.4
mypkg.SayHello
org.codehaus.mojo
exec-maven-plugin
1.6.0
java
mypkg.SayHello
foo
org.apache.maven.plugins
maven-surefire-report-plugin
2.20.1
org.apache.maven.plugins
maven-jxr-plugin
2.5
org.apache.maven.plugins
maven-javadoc-plugin
3.0.0
In this project, you will learn to use some of the team” features o.docx

More Related Content

Similar to In this project, you will learn to use some of the team” features o.docx

Version control git day01
Version control   git day01Version control   git day01
Version control git day01Gourav Varma
 
Version control git day01
Version control   git day01Version control   git day01
Version control git day01Gourav Varma
 
Beginner Workshop for Student Developers - Tratech-presentation.pdf
Beginner Workshop for Student Developers - Tratech-presentation.pdfBeginner Workshop for Student Developers - Tratech-presentation.pdf
Beginner Workshop for Student Developers - Tratech-presentation.pdfGDSCKNUST
 
Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1Omar Fathy
 
Intro to Git for Drupal 7
Intro to Git for Drupal 7Intro to Git for Drupal 7
Intro to Git for Drupal 7Chris Caple
 
Git and Github.pptx
Git and Github.pptxGit and Github.pptx
Git and Github.pptxHitesh670643
 
Using Git to Organize Your Project
Using Git to Organize Your ProjectUsing Git to Organize Your Project
Using Git to Organize Your ProjectManish Suwal 'Enwil'
 
Git for developers
Git for developersGit for developers
Git for developersHacen Dadda
 
Git Tutorial A Comprehensive Guide for Beginners.pdf
Git Tutorial A Comprehensive Guide for Beginners.pdfGit Tutorial A Comprehensive Guide for Beginners.pdf
Git Tutorial A Comprehensive Guide for Beginners.pdfuzair
 
Github 101 An Adventurer's Guide To Open Source
Github 101   An Adventurer's Guide To Open SourceGithub 101   An Adventurer's Guide To Open Source
Github 101 An Adventurer's Guide To Open SourcePrachitibhukan
 
[2015/2016] Collaborative software development with Git
[2015/2016] Collaborative software development with Git[2015/2016] Collaborative software development with Git
[2015/2016] Collaborative software development with GitIvano Malavolta
 
Rails Rookies Bootcamp - Blogger
Rails Rookies Bootcamp - BloggerRails Rookies Bootcamp - Blogger
Rails Rookies Bootcamp - BloggerNathanial McConnell
 

Similar to In this project, you will learn to use some of the team” features o.docx (20)

Git
GitGit
Git
 
Git hub visualstudiocode
Git hub visualstudiocodeGit hub visualstudiocode
Git hub visualstudiocode
 
Version control git day01
Version control   git day01Version control   git day01
Version control git day01
 
Version control git day01
Version control   git day01Version control   git day01
Version control git day01
 
Beginner Workshop for Student Developers - Tratech-presentation.pdf
Beginner Workshop for Student Developers - Tratech-presentation.pdfBeginner Workshop for Student Developers - Tratech-presentation.pdf
Beginner Workshop for Student Developers - Tratech-presentation.pdf
 
Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1
 
Intro to Git for Drupal 7
Intro to Git for Drupal 7Intro to Git for Drupal 7
Intro to Git for Drupal 7
 
Introduction to GitHub (workshop)
Introduction to GitHub (workshop)Introduction to GitHub (workshop)
Introduction to GitHub (workshop)
 
Git and Github.pptx
Git and Github.pptxGit and Github.pptx
Git and Github.pptx
 
Using Git to Organize Your Project
Using Git to Organize Your ProjectUsing Git to Organize Your Project
Using Git to Organize Your Project
 
Git for developers
Git for developersGit for developers
Git for developers
 
Fewd week1 slides
Fewd week1 slidesFewd week1 slides
Fewd week1 slides
 
Get Git with It! A Developer's Workshop.pptx
Get Git with It! A Developer's Workshop.pptxGet Git with It! A Developer's Workshop.pptx
Get Git with It! A Developer's Workshop.pptx
 
setting up a repository using GIT
setting up a repository using GITsetting up a repository using GIT
setting up a repository using GIT
 
Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
 
database.pptx
database.pptxdatabase.pptx
database.pptx
 
Git Tutorial A Comprehensive Guide for Beginners.pdf
Git Tutorial A Comprehensive Guide for Beginners.pdfGit Tutorial A Comprehensive Guide for Beginners.pdf
Git Tutorial A Comprehensive Guide for Beginners.pdf
 
Github 101 An Adventurer's Guide To Open Source
Github 101   An Adventurer's Guide To Open SourceGithub 101   An Adventurer's Guide To Open Source
Github 101 An Adventurer's Guide To Open Source
 
[2015/2016] Collaborative software development with Git
[2015/2016] Collaborative software development with Git[2015/2016] Collaborative software development with Git
[2015/2016] Collaborative software development with Git
 
Rails Rookies Bootcamp - Blogger
Rails Rookies Bootcamp - BloggerRails Rookies Bootcamp - Blogger
Rails Rookies Bootcamp - Blogger
 

More from breaksdayle

Use up-to-date credible references1.Discuss the benefits and.docx
Use up-to-date credible references1.Discuss the benefits and.docxUse up-to-date credible references1.Discuss the benefits and.docx
Use up-to-date credible references1.Discuss the benefits and.docxbreaksdayle
 
Use your imagination to develop your own data visualization that dis.docx
Use your imagination to develop your own data visualization that dis.docxUse your imagination to develop your own data visualization that dis.docx
Use your imagination to develop your own data visualization that dis.docxbreaksdayle
 
Use your Library to research and explain the relationship between as.docx
Use your Library to research and explain the relationship between as.docxUse your Library to research and explain the relationship between as.docx
Use your Library to research and explain the relationship between as.docxbreaksdayle
 
Use your needs assessment results toDevelop three to five learnin.docx
Use your needs assessment results toDevelop three to five learnin.docxUse your needs assessment results toDevelop three to five learnin.docx
Use your needs assessment results toDevelop three to five learnin.docxbreaksdayle
 
Uses of Information TechnologyHow could a business use informa.docx
Uses of Information TechnologyHow could a business use informa.docxUses of Information TechnologyHow could a business use informa.docx
Uses of Information TechnologyHow could a business use informa.docxbreaksdayle
 
Using a minimum of 150 words, address the following What did fr.docx
Using a minimum of 150 words, address the following What did fr.docxUsing a minimum of 150 words, address the following What did fr.docx
Using a minimum of 150 words, address the following What did fr.docxbreaksdayle
 
Use thisdiscussion sampleas a guide when completing your own.docx
Use thisdiscussion sampleas a guide when completing your own.docxUse thisdiscussion sampleas a guide when completing your own.docx
Use thisdiscussion sampleas a guide when completing your own.docxbreaksdayle
 
Use your knowledge to develop the circumstances and details involved.docx
Use your knowledge to develop the circumstances and details involved.docxUse your knowledge to develop the circumstances and details involved.docx
Use your knowledge to develop the circumstances and details involved.docxbreaksdayle
 
Use this link to complete httpneave.complanetarium It is a v.docx
Use this link to complete httpneave.complanetarium It is a v.docxUse this link to complete httpneave.complanetarium It is a v.docx
Use this link to complete httpneave.complanetarium It is a v.docxbreaksdayle
 
Use the video Twelve Angry Men” as a case study and analyze how inf.docx
Use the video Twelve Angry Men” as a case study and analyze how inf.docxUse the video Twelve Angry Men” as a case study and analyze how inf.docx
Use the video Twelve Angry Men” as a case study and analyze how inf.docxbreaksdayle
 
USE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docx
USE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docxUSE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docx
USE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docxbreaksdayle
 
USE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docx
USE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docxUSE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docx
USE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docxbreaksdayle
 
Use the Internet  to research three trends in HR. Next, examine the .docx
Use the Internet  to research three trends in HR. Next, examine the .docxUse the Internet  to research three trends in HR. Next, examine the .docx
Use the Internet  to research three trends in HR. Next, examine the .docxbreaksdayle
 
Use the Internet to find the corruption perception index for various.docx
Use the Internet to find the corruption perception index for various.docxUse the Internet to find the corruption perception index for various.docx
Use the Internet to find the corruption perception index for various.docxbreaksdayle
 
Use the Internet to find a post of your interest regarding a social .docx
Use the Internet to find a post of your interest regarding a social .docxUse the Internet to find a post of your interest regarding a social .docx
Use the Internet to find a post of your interest regarding a social .docxbreaksdayle
 
Use the publicly-traded company you chose in M1 Assignment 3 and.docx
Use the publicly-traded company you chose in M1 Assignment 3 and.docxUse the publicly-traded company you chose in M1 Assignment 3 and.docx
Use the publicly-traded company you chose in M1 Assignment 3 and.docxbreaksdayle
 
Use the Internet to research a company in your local area that sells.docx
Use the Internet to research a company in your local area that sells.docxUse the Internet to research a company in your local area that sells.docx
Use the Internet to research a company in your local area that sells.docxbreaksdayle
 
Use the Hispanic as acultural group in creating a cultural a.docx
Use the Hispanic as acultural group in creating a cultural a.docxUse the Hispanic as acultural group in creating a cultural a.docx
Use the Hispanic as acultural group in creating a cultural a.docxbreaksdayle
 
Use SQL to Create a table with at least 4 attributes one of which is.docx
Use SQL to Create a table with at least 4 attributes one of which is.docxUse SQL to Create a table with at least 4 attributes one of which is.docx
Use SQL to Create a table with at least 4 attributes one of which is.docxbreaksdayle
 
Use the Behaviors and Consequences document to do the following.docx
Use the Behaviors and Consequences document to do the following.docxUse the Behaviors and Consequences document to do the following.docx
Use the Behaviors and Consequences document to do the following.docxbreaksdayle
 

More from breaksdayle (20)

Use up-to-date credible references1.Discuss the benefits and.docx
Use up-to-date credible references1.Discuss the benefits and.docxUse up-to-date credible references1.Discuss the benefits and.docx
Use up-to-date credible references1.Discuss the benefits and.docx
 
Use your imagination to develop your own data visualization that dis.docx
Use your imagination to develop your own data visualization that dis.docxUse your imagination to develop your own data visualization that dis.docx
Use your imagination to develop your own data visualization that dis.docx
 
Use your Library to research and explain the relationship between as.docx
Use your Library to research and explain the relationship between as.docxUse your Library to research and explain the relationship between as.docx
Use your Library to research and explain the relationship between as.docx
 
Use your needs assessment results toDevelop three to five learnin.docx
Use your needs assessment results toDevelop three to five learnin.docxUse your needs assessment results toDevelop three to five learnin.docx
Use your needs assessment results toDevelop three to five learnin.docx
 
Uses of Information TechnologyHow could a business use informa.docx
Uses of Information TechnologyHow could a business use informa.docxUses of Information TechnologyHow could a business use informa.docx
Uses of Information TechnologyHow could a business use informa.docx
 
Using a minimum of 150 words, address the following What did fr.docx
Using a minimum of 150 words, address the following What did fr.docxUsing a minimum of 150 words, address the following What did fr.docx
Using a minimum of 150 words, address the following What did fr.docx
 
Use thisdiscussion sampleas a guide when completing your own.docx
Use thisdiscussion sampleas a guide when completing your own.docxUse thisdiscussion sampleas a guide when completing your own.docx
Use thisdiscussion sampleas a guide when completing your own.docx
 
Use your knowledge to develop the circumstances and details involved.docx
Use your knowledge to develop the circumstances and details involved.docxUse your knowledge to develop the circumstances and details involved.docx
Use your knowledge to develop the circumstances and details involved.docx
 
Use this link to complete httpneave.complanetarium It is a v.docx
Use this link to complete httpneave.complanetarium It is a v.docxUse this link to complete httpneave.complanetarium It is a v.docx
Use this link to complete httpneave.complanetarium It is a v.docx
 
Use the video Twelve Angry Men” as a case study and analyze how inf.docx
Use the video Twelve Angry Men” as a case study and analyze how inf.docxUse the video Twelve Angry Men” as a case study and analyze how inf.docx
Use the video Twelve Angry Men” as a case study and analyze how inf.docx
 
USE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docx
USE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docxUSE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docx
USE THESE LINKS ANDOR BOOKhttpsplato.stanford.eduentriesp.docx
 
USE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docx
USE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docxUSE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docx
USE THE UPLOADED READING IN ORDER TO FINISH THIS ASSIGNMENT.Usin.docx
 
Use the Internet  to research three trends in HR. Next, examine the .docx
Use the Internet  to research three trends in HR. Next, examine the .docxUse the Internet  to research three trends in HR. Next, examine the .docx
Use the Internet  to research three trends in HR. Next, examine the .docx
 
Use the Internet to find the corruption perception index for various.docx
Use the Internet to find the corruption perception index for various.docxUse the Internet to find the corruption perception index for various.docx
Use the Internet to find the corruption perception index for various.docx
 
Use the Internet to find a post of your interest regarding a social .docx
Use the Internet to find a post of your interest regarding a social .docxUse the Internet to find a post of your interest regarding a social .docx
Use the Internet to find a post of your interest regarding a social .docx
 
Use the publicly-traded company you chose in M1 Assignment 3 and.docx
Use the publicly-traded company you chose in M1 Assignment 3 and.docxUse the publicly-traded company you chose in M1 Assignment 3 and.docx
Use the publicly-traded company you chose in M1 Assignment 3 and.docx
 
Use the Internet to research a company in your local area that sells.docx
Use the Internet to research a company in your local area that sells.docxUse the Internet to research a company in your local area that sells.docx
Use the Internet to research a company in your local area that sells.docx
 
Use the Hispanic as acultural group in creating a cultural a.docx
Use the Hispanic as acultural group in creating a cultural a.docxUse the Hispanic as acultural group in creating a cultural a.docx
Use the Hispanic as acultural group in creating a cultural a.docx
 
Use SQL to Create a table with at least 4 attributes one of which is.docx
Use SQL to Create a table with at least 4 attributes one of which is.docxUse SQL to Create a table with at least 4 attributes one of which is.docx
Use SQL to Create a table with at least 4 attributes one of which is.docx
 
Use the Behaviors and Consequences document to do the following.docx
Use the Behaviors and Consequences document to do the following.docxUse the Behaviors and Consequences document to do the following.docx
Use the Behaviors and Consequences document to do the following.docx
 

Recently uploaded

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 

Recently uploaded (20)

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 

In this project, you will learn to use some of the team” features o.docx