-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* technologic * class0 and class1 * class1 * bu da mı gol değil be * rename_class1 * remove_zip * delete folder * deleted folder inside pseudoCode
- Loading branch information
1 parent
da417d3
commit 78e3aca
Showing
5 changed files
with
285 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<header> | ||
<title>About me</title> | ||
</header> | ||
<body> | ||
<h1>ABOUT ME</h1> | ||
|
||
<i>I love photography</i> | ||
|
||
<p>We have created a fictional "personal" website/blog, and our fictional character is a hobby photographer. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | ||
|
||
<p>Im really good at:</p> | ||
<ul> | ||
<li>Photography</li> | ||
<li>Web Design</li> | ||
<li>Photoshop</li> | ||
</ul> | ||
|
||
<h3>MY WORK</h3> | ||
<img src="https://www.w3schools.com/w3images/p2.jpg" alt="Image of my work"> | ||
|
||
<h2>Where I Work</h2> | ||
<b>Chicago, US</b> | ||
<b> Phone: +00 151515</b> | ||
<b> Email: [email protected]</b> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>About me</title> | ||
</head> | ||
<body> | ||
<!-- This looks like a header --> | ||
<h1>Who am I ?</h1> | ||
<!-- This looks like normal sentences --> | ||
<p>I am a software engineer.</p> | ||
<p>My favorites drinks are :</p> | ||
<!-- This looks like a list --> | ||
<ul> | ||
<li>Coffe</li> | ||
<li>Tea</li> | ||
<li>Pepsi</li> | ||
</ul> | ||
<!-- This looks like a list of instructions or events --> | ||
<p>My daily routin is:</p> | ||
<ol> | ||
<li>I wake up at 7:00 Am.</li> | ||
<li>I go to work at 8:00.</li> | ||
<li>I start working from 8:00 to 1:00 PM </li> | ||
<li>I take my breake for an hour.</li> | ||
<li>I go back at 2:00 to finish working, and I leave at 4:15.</li> | ||
<!-- This is like a sentence but opening the image in amother tap is annoying --> | ||
<p> I love motorcycle here is a picture of a cool pick </p> | ||
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Norton_Motorcycle.jpg/1024px-Norton_Motorcycle.jpg"> <br> | ||
<!-- Would ove to clikc on the work link and go to the page --> | ||
<a href="https://github.com/MuhannedNoman"> I also have a github account here is the link </a> | ||
<!-- This looks like a mess wish there was a wya to display this like a real code --> | ||
<p>The last code I wrote today was :</p> | ||
<pre><code>public void requestAccess(){ | ||
// Here, thisActivity is the current activity | ||
if (ContextCompat.checkSelfPermission(MainActivity.this, | ||
Manifest.permission.READ_EXTERNAL_STORAGE) | ||
!= PackageManager.PERMISSION_GRANTED) { | ||
| ||
ActivityCompat.requestPermissions(MainActivity.this, | ||
new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, | ||
1); | ||
| ||
// Permission is not granted | ||
} else { | ||
showFilePicker(); | ||
// Permission has already been granted | ||
} | ||
} </code></pre> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Hello World</title> | ||
</head> | ||
<body> | ||
|
||
<p><a href="#chapter20">Jump to Chapter 20</a></p> | ||
<p><a href="#chapter5">Jump to Chapter 5</a></p> | ||
|
||
--------------------------------------- | ||
|
||
<h2>Chapter 1</h2> | ||
<!-- This should start at 30 and increase by 10, while never going below zero --> | ||
<form> | ||
<label for="quantity">Quantity:</label> | ||
<input type="number"id="quantity" name="quantity" min="30" step="10" > | ||
</form> | ||
|
||
<h2>Chapter 2</h2> | ||
<p class="tooltip">This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 3</h2> | ||
<!-- The word explain should be small --> | ||
<p>This chapter <small>explains</small> ba bla bla</p> | ||
|
||
<h2>Chapter 4</h2> | ||
<!-- The word chapter should be deleted --> | ||
<p>This <del>chapter</del> explains ba bla bla</p> | ||
|
||
<h2 id="chapter5" >Chapter 5</h2> | ||
<!-- video should have it's full aspects width and height. starts at 5 second. allow fullscreen --> | ||
<iframe width="854" height="468" allowfullscreen="true" src="https://www.youtube.com/embed/D_VvcNBGy78?start=5&end=; allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"></iframe> | ||
|
||
<h2>Chapter 6</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 7</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 8</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 9</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 10</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 11</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 12</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 13</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 14</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 15</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 16</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 17</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 18</h2> | ||
<!-- Those two should br radiou buttons. with your gender selected --> | ||
<form> | ||
<input type="radio" id="male" name="gender" value="male"> <label for="male"> Male </label><br> | ||
<input type="radio" id="female" name="gender" value="female"><label for="female"> Female </label> <br> | ||
</form> | ||
|
||
<h2>Chapter 19</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
|
||
<h2 id="chapter20">Chapter 20</h2> | ||
<!-- When this is clicked an email prompet should be displayed --> | ||
<p> | ||
This is an email link: | ||
<a href="mailto:[email protected]" target="_self"> | ||
Send Mail</a> | ||
</p> | ||
|
||
<h2>Chapter 21</h2> | ||
<p>This chapter explains ba bla bla</p> | ||
|
||
<h2>Chapter 22</h2> | ||
<!-- This should be a date input --> | ||
<form> | ||
<label for="date">Birthday:</label> | ||
<input type="date"> | ||
</form> | ||
|
||
<h2>Chapter 23</h2> | ||
<!-- This should be a range --> | ||
<form> | ||
<label for="points">Points (between 0 to 100):</label> | ||
<input type="range" id="points" min="0" max="100"> | ||
</form> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<header> | ||
<title>About me</title> | ||
</header> | ||
<body> | ||
<h1>ABOUT ME</h1> | ||
|
||
<i>I love photography</i> | ||
|
||
<p>We have created a fictional "personal" website/blog, and our fictional character is a hobby photographer. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | ||
|
||
<p>Im really good at:</p> | ||
<ul> | ||
<li>Photography</li> | ||
<li>Web Design</li> | ||
<li>Photoshop</li> | ||
</ul> | ||
|
||
<h3>MY WORK</h3> | ||
<img src="https://www.w3schools.com/w3images/p2.jpg" alt="Image of my work"> | ||
|
||
<h2>Where I Work</h2> | ||
<b>Chicago, US</b> | ||
<b> Phone: +00 151515</b> | ||
<b> Email: [email protected]</b> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
Technologic | ||
Daft Punk | ||
|
||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Lock it, fill it, call it, find it, view it, code it, jam, unlock it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Lock it, fill it, call it, find it, view it, code it, jam, unlock it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Technologic | ||
Technologic | ||
Technologic | ||
Technologic | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Lock it, fill it, call it, find it, view it, code it, jam, unlock it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Touch it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Lock it, fill it, call it, find it, view it, code it, jam, unlock it | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Buy it, use it, break it, fix it, trash it, change it, mail, upgrade it | ||
Charge it, point it, zoom it, press it, snap it, work it, quick erase it | ||
Write it, cut it, paste it, save it, load it, check it, quick rewrite it | ||
Plug it, play it, burn it, rip it, drag it, drop it, zip - unzip it | ||
Lock it, fill it, call it, find it, view it, code it, jam, unlock it | ||
Surf it, scroll it, pause it, click it, cross it, crack it, switch, update it | ||
Name it, read it, tune it, print it, scan it, send it, fax, rename it | ||
Touch it, bring it, pay it, watch it, turn it, leave it, stop, format it | ||
Technologic | ||
Technologic | ||
Technologic | ||
Technologic | ||
Technologic | ||
Technologic | ||
Technologic | ||
Technologic |