Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 07042c0

Browse files
committed
Rename repository
1 parent e6c6ad5 commit 07042c0

File tree

37 files changed

+52
-52
lines changed

37 files changed

+52
-52
lines changed

‎.github/workflows/projectActions.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
uses: srggrs/assign-one-project-github-action@1.2.1
1818
if: github.event.action == 'opened' || contains(github.event.issue.labels.*.name, 'java-fundamentals')
1919
with:
20-
project: 'https://github.com/bobocode-projects/java-fundamentals-course/projects/4'
20+
project: 'https://github.com/bobocode-projects/java-fundamentals-exercises/projects/4'

‎0-0-intro/README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ _(we know it's silly, but we wanted to give you a simple example 😀)_
1919
* [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
2020

2121
## How to start ❓
22-
* [clone](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository) this [repository](https://github.com/bobocode-projects/java-fundamentals-course) to your computer
22+
* [clone](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository) this [repository](https://github.com/bobocode-projects/java-fundamentals-exercises) to your computer
2323
* **open** the project via IDE
2424

2525
## Have questions? 🧐
2626
* take a look at **README** of the exercise
2727
* switch to branch `completed` and **see the correct implementation** of the exercise
28-
* [join the discussion](https://github.com/bobocode-projects/java-fundamentals-course/discussions) on the GitHub
28+
* [join the discussion](https://github.com/bobocode-projects/java-fundamentals-exercises/discussions) on the GitHub
2929
* contact us via info@bobocode.com

‎0-0-intro/pom.xml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<parent>
88
<groupId>com.bobocode</groupId>
9-
<artifactId>java-fundamentals-course</artifactId>
9+
<artifactId>java-fundamentals-exercises</artifactId>
1010
<version>1.0-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>0-0-intro</artifactId>

‎1-0-java-basics/1-3-0-hello-generics/README.MD‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ types we need some form of type parametrization. Of course, we can use `Object`
2323
it is not safe. Using `Object` requires runtime casting which can cause runtime exceptions.
2424

2525
---
26-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
26+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
2727
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/Q5aEmF8E86fbZ4rXA)
2828

2929
##

‎1-0-java-basics/1-3-1-crazy-generics/README.MD‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runtime to compile time and makes type parametrization safer.**
2525
[![Linked List](https://yt-embed.herokuapp.com/embed?v=EaL5KsSlEQM)](https://youtu.be/EaL5KsSlEQM)
2626

2727
---
28-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
28+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
2929
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/u6kHcecFuzxV232LA)
3030

3131
##

‎1-0-java-basics/1-5-0-hello-annotations/README.MD‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Learn annotations basics to better understand how the frameworks use them 💪
1111
* **use custom annotation** on a class ✅
1212

1313
---
14-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
14+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
1515
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/UADe1YKHiFVXQJLF8)
1616

1717
### Exercise overview 🇺🇦

‎1-0-java-basics/pom.xml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<parent>
1414
<groupId>com.bobocode</groupId>
15-
<artifactId>java-fundamentals-course</artifactId>
15+
<artifactId>java-fundamentals-exercises</artifactId>
1616
<version>1.0-SNAPSHOT</version>
1717
</parent>
1818
<artifactId>1-0-java-basics</artifactId>

‎2-0-data-structures-and-algorithms/2-2-1-node/README.MD‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You're supposed to be familiar **Java classes** and **generics**
1616
[![Linked List](https://yt-embed.herokuapp.com/embed?v=Ot5ma8NXcS0)](https://youtu.be/Ot5ma8NXcS0)
1717

1818
---
19-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
19+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
2020
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/JGTFw5nfwR89tmSbA)
2121

2222
##

‎2-0-data-structures-and-algorithms/2-2-2-stack/README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ stored to the stack.**
2121
* maintain stack **size**
2222

2323
---
24-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
24+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
2525
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/VgcSYEgm68pzYp6E8)
2626

2727
##

‎2-0-data-structures-and-algorithms/2-2-3-linked-queue/README.MD‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You're supposed to be familiar [Queue](https://en.wikipedia.org/wiki/Queue_(abst
1111
* maintain queue **size**
1212

1313
---
14-
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-course/tree/main/0-0-intro#introduction)
14+
#### 🆕 First time here? – [See Introduction](https://github.com/bobocode-projects/java-fundamentals-exercises/tree/main/0-0-intro#introduction)
1515
#### ➡️ Have any feedback? – [Please fill the form ](https://forms.gle/ps9feaVAUsUT1gA29)
1616

1717
##

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /