Skip to content

Update #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified module1/oop1.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion module1/presentation_homework.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ ___

## Zadanie 1

W klasie `Cargo` napisz operator porównania (`operator ==`), kóry będzie sprawdzał, czy towary są takie same.
W klasie `Cargo` napisz operator porównania (`operator==`), który będzie sprawdzał, czy towary są takie same.

___

Expand Down
136 changes: 136 additions & 0 deletions module2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

<title>Object Oriented Programming - Coders School</title>

<meta name="description" content="OOP">
<meta name="author" content="Mateusz Adamski & Łukasz Ziobroń">

<link rel="stylesheet" href="../../css/reset.css">
<link rel="stylesheet" href="../../css/reveal.css">
<link rel="stylesheet" href="../../css/theme/coders.css" id="theme">

<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="../../lib/css/monokai.css">

<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '../../css/print/pdf.css' : '../css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<section data-background="#111111">

<h1>OOP #2</h1>
<h2>Object-Oriented Programming #2</h2>
<a href="https://coders.school">
<img width="500" data-src="../coders_school_logo.png" alt="Coders School" class="plain">
</a>
<h3>Mateusz Adamski</h3>
<h3>Łukasz Ziobroń</h3>

</section>
<section data-markdown>
<textarea data-template>

## Agenda

operatory, dziedziczenie, wielodziedziczenie, polimorfizm, funkcje wirtualne

1. <!-- .element: class="fragment fade-in" --> Omówienie problemów, przykładowe rozwiązania.
2. <!-- .element: class="fragment fade-in" --> obiekty
3. <!-- .element: class="fragment fade-in" --> pola, właściwości
4. <!-- .element: class="fragment fade-in" --> metody, funkcje klasy
5. <!-- .element: class="fragment fade-in" --> modyfikatory dostępu - <code>public</code>, <code>private</code>
6. <!-- .element: class="fragment fade-in" --> konstruktory
7. <!-- .element: class="fragment fade-in" --> destruktory
8. <!-- .element: class="fragment fade-in" --> hermetyzacja
9. <!-- .element: class="fragment fade-in" --> gettery
10. <!-- .element: class="fragment fade-in" --> settery

</textarea>
</section>
<section data-markdown>
<textarea data-template>

## Zadania

Repo GH `coders-school/object-oriented-programming`

[https://github.com/coders-school/object-oriented-programming/tree/master/module2](https://github.com/coders-school/object-oriented-programming/tree/master/module2)

</textarea>
</section>
<section data-markdown>
<textarea data-template>

## Kilka pytań

* <!-- .element: class="fragment fade-in" --> Co zapamiętaliście z poprzednich zajęć?
* <!-- .element: class="fragment fade-in" --> Co sprawiło największą trudność?
* <!-- .element: class="fragment fade-in" --> Co najłatwiej było Wam zrozumieć?

</textarea>
</section>
</section>
<!--
Note that Windows uses `\r\n` instead of `\n` as its linefeed character.
For a regex that supports all operating systems, use `\r?\n` instead of `\n`.

Usage:
Install dependencies

$ npm install
Serve the presentation and monitor source files for changes

$ npm start
Open http://localhost:8000 to view your presentation

You can change the port by using npm start -- --port=8001.
-->
<section data-markdown="presentation.md"
data-separator-vertical="^___"
data-separator-notes="^Note:">
</section>
<section data-background="#111111">

<h1>Coders School</h1>
<img width="400" data-src="../logo.png" alt="Coders School" class="plain">

</section>
</div>
</div>

<script src="../../js/reveal.js"></script>

<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
width: 1200,
height: 750,
slideNumber: true,
hash: true,
pdfSeparateFragments: false,
dependencies: [
{ src: '../../plugin/externalcode/externalcode.js', condition: function() { return !!document.querySelector( '[data-code]' ); } },
{ src: '../../plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '../../plugin/markdown/marked.js' },
{ src: '../../plugin/markdown/markdown.js' },
{ src: '../../plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>
Loading