Browse Source

Gzip

master
Yigit Colakoglu 4 years ago
parent
commit
980cd119e6
69 changed files with 1864 additions and 570 deletions
  1. +6
    -1
      .drone.yml
  2. +21
    -0
      Makefile
  3. +160
    -90
      public/404.html
  4. BIN
      public/404.html.gz
  5. +21
    -0
      public/Makefile
  6. +210
    -0
      public/about/index.html
  7. BIN
      public/about/index.html.gz
  8. BIN
      public/assets/0fe15bb5eea5828156c892b0708bea40.woff
  9. BIN
      public/assets/910c4f69908ca1b54b0fed395a9ad573.woff
  10. +1
    -0
      public/assets/blue.css
  11. BIN
      public/assets/blue.css.gz
  12. +1
    -0
      public/assets/green.css
  13. BIN
      public/assets/green.css.gz
  14. +1
    -0
      public/assets/languageSelector.js
  15. BIN
      public/assets/languageSelector.js.gz
  16. +1
    -0
      public/assets/main.js
  17. BIN
      public/assets/main.js.gz
  18. +1
    -0
      public/assets/pink.css
  19. BIN
      public/assets/pink.css.gz
  20. +8
    -0
      public/assets/prism.js
  21. BIN
      public/assets/prism.js.gz
  22. +1
    -0
      public/assets/red.css
  23. BIN
      public/assets/red.css.gz
  24. +1
    -0
      public/assets/style.css
  25. BIN
      public/assets/style.css.gz
  26. +199
    -0
      public/awards/index.html
  27. BIN
      public/awards/index.html.gz
  28. +129
    -147
      public/categories/index.html
  29. BIN
      public/categories/index.html.gz
  30. +6
    -8
      public/categories/index.xml
  31. BIN
      public/categories/index.xml.gz
  32. BIN
      public/css/syntax.css.gz
  33. BIN
      public/images/logo-dark.svg.gz
  34. BIN
      public/images/pp.jpeg
  35. BIN
      public/images/pp_scale.png
  36. BIN
      public/img/favicon/blue.png
  37. BIN
      public/img/favicon/green.png
  38. BIN
      public/img/favicon/orange.png
  39. BIN
      public/img/favicon/pink.png
  40. BIN
      public/img/favicon/red.png
  41. +173
    -159
      public/index.html
  42. BIN
      public/index.html.gz
  43. +96
    -8
      public/index.xml
  44. BIN
      public/index.xml.gz
  45. BIN
      public/js/fuse.min.js.gz
  46. BIN
      public/js/lazysizes.min.js.gz
  47. BIN
      public/js/lodash.custom.min.js.gz
  48. BIN
      public/js/mark.min.js.gz
  49. BIN
      public/js/vue.min.js.gz
  50. +52
    -0
      public/misc/9D26FDA9E051205C4DC8422611D306C40EAEC301.asc
  51. BIN
      public/misc/9D26FDA9E051205C4DC8422611D306C40EAEC301.asc.gz
  52. BIN
      public/misc/resume.pdf
  53. BIN
      public/page/1/index.html.gz
  54. +212
    -0
      public/posts/index.html
  55. BIN
      public/posts/index.html.gz
  56. +22
    -0
      public/posts/index.xml
  57. BIN
      public/posts/index.xml.gz
  58. +1
    -0
      public/posts/page/1/index.html
  59. BIN
      public/posts/page/1/index.html.gz
  60. +197
    -0
      public/posts/test/index.html
  61. BIN
      public/posts/test/index.html.gz
  62. +194
    -0
      public/projects/index.html
  63. BIN
      public/projects/index.html.gz
  64. +15
    -2
      public/sitemap.xml
  65. BIN
      public/sitemap.xml.gz
  66. +129
    -147
      public/tags/index.html
  67. BIN
      public/tags/index.html.gz
  68. +6
    -8
      public/tags/index.xml
  69. BIN
      public/tags/index.xml.gz

+ 6
- 1
.drone.yml View File

@ -3,7 +3,12 @@ pipeline:
image: plugins/hugo
validate: false
url: https://fr1nge.xyz
compress:
image: alpine:latest
commands:
- apk --no-cache update
- apk add make
- make -C public/ -f ../Makefile
deploy:
image: drillster/drone-rsync
hosts: [ "192.168.1.5" ]


+ 21
- 0
Makefile View File

@ -0,0 +1,21 @@
.PHONY: default clean
TARGETS = $(shell find . -type f -name '*.html')
TARGETS += $(shell find . -type f -name '*.asc')
TARGETS += $(shell find . -type f -name '*.css')
TARGETS += $(shell find . -type f -name '*.js')
TARGETS += $(shell find . -type f -name '*.txt')
TARGETS += $(shell find . -type f -name '*.xml')
TARGETS += $(shell find . -type f -name '*.svg')
TARGETS_GZ = $(patsubst %, %.gz, $(TARGETS))
CC=gzip
CFLAGS=-k -f -9
default: $(TARGETS_GZ)
%.gz : %
$(CC) $(CFLAGS) $<
clean:
rm -f $(TARGETS_GZ)

+ 160
- 90
public/404.html
File diff suppressed because it is too large
View File


BIN
public/404.html.gz View File


+ 21
- 0
public/Makefile View File

@ -0,0 +1,21 @@
.PHONY: default clean
TARGETS = $(shell find . -type f -name '*.html')
TARGETS += $(shell find . -type f -name '*.asc')
TARGETS += $(shell find . -type f -name '*.css')
TARGETS += $(shell find . -type f -name '*.js')
TARGETS += $(shell find . -type f -name '*.txt')
TARGETS += $(shell find . -type f -name '*.xml')
TARGETS += $(shell find . -type f -name '*.svg')
TARGETS_GZ = $(patsubst %, %.gz, $(TARGETS))
CC=gzip
CFLAGS=-k -f -9
default: $(TARGETS_GZ)
%.gz : %
$(CC) $(CFLAGS) $<
clean:
rm -f $(TARGETS_GZ)

+ 210
- 0
public/about/index.html View File

@ -0,0 +1,210 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>$ whoami :: Fr1nge&#39;s Personal Blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Who is Yigit Colakoglu aka. Fr1nge? His interests and skill." />
<meta name="keywords" content="Tech, Linux, Programming, Security" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://fr1nge.xyz/about/" />
<link rel="stylesheet" href="http://fr1nge.xyz/assets/style.css">
<link rel="stylesheet" href="http://fr1nge.xyz/assets/blue.css">
<link rel="apple-touch-icon" href="http://fr1nge.xyz/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://fr1nge.xyz/img/favicon/blue.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="yigitcolakoglu.com" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="$ whoami">
<meta property="og:description" content="Who is Yigit Colakoglu aka. Fr1nge? His interests and skill." />
<meta property="og:url" content="http://fr1nge.xyz/about/" />
<meta property="og:site_name" content="Fr1nge&#39;s Personal Blog" />
<meta property="og:image" content="http://fr1nge.xyz/img/favicon/blue.png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
</head>
<body class="blue">
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/">
<div class="logo">
fr1nge.xyz
</div>
</a>
</div>
<div class="menu-trigger">menu</div>
</div>
<nav class="menu">
<ul class="menu__inner menu__inner--desktop">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
<ul class="menu__inner menu__inner--mobile">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
<a href="http://fr1nge.xyz/about/">$ whoami</a></h1>
<div class="post-meta">
</div>
<div class="post-content"><div>
<p>I am a senior student in Ted Ankara College Foundation High School. I dabble in
different areas of computer science every now and then and try to learn new stuff
along the way. I love creating software for my personal use and for people around
me.</p>
<ul>
<li><strong>Interests:</strong> Quantum Computing, Cybersecurity, Linux, Self-Hosting</li>
<li><strong>Skills:</strong> Spring Boot, Linux, VueJS</li>
<li><strong>Languages:</strong> Python, JavaScript, Java, C, Bash, LaTeX</li>
</ul>
<h4 id="follow-me">Follow Me<a href="#follow-me" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h4>
<ul>
<li><a href="https://github.com/theFr1nge"><strong>GitHub</strong></a></li>
<li><a href="https://twitter.com/theFr1nge"><strong>Twitter</strong></a></li>
<li><a href="https://www.linkedin.com/in/yigitcolakoglu/"><strong>LinkedIn</strong></a></li>
<li><a href="/index.xml"><strong>RSS</strong></a></li>
</ul>
<h4 id="contact-me">Contact Me<a href="#contact-me" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h4>
<ul>
<li><a href="https://t.me/thefr1nge"><strong>Telegram</strong></a></li>
<li><a href="https://discordapp.com/users/440823026523832322"><strong>Discord</strong></a></li>
<li><a href="mail:yigitcolakoglu@hotmail.com"><strong>Email</strong></a> <a href="/misc/9D26FDA9E051205C4DC8422611D306C40EAEC301.asc"><em>I also have a gpg key</em></a></li>
</ul>
<h4 id="want-to-learn-more">Want to learn more?<a href="#want-to-learn-more" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h4>
<p>You can find my resume <a href="/misc/resume.pdf"><em>right here</em></a>. Or you can
hit me up through social media, I am open to chat :)</p>
</div></div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright copyright--user">
<span>Yigit Colakoglu</span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://fr1nge.xyz/assets/main.js"></script>
<script src="http://fr1nge.xyz/assets/prism.js"></script>
</div>
</body>
</html>

BIN
public/about/index.html.gz View File


BIN
public/assets/0fe15bb5eea5828156c892b0708bea40.woff View File


BIN
public/assets/910c4f69908ca1b54b0fed395a9ad573.woff View File


+ 1
- 0
public/assets/blue.css
File diff suppressed because it is too large
View File


BIN
public/assets/blue.css.gz View File


+ 1
- 0
public/assets/green.css
File diff suppressed because it is too large
View File


BIN
public/assets/green.css.gz View File


+ 1
- 0
public/assets/languageSelector.js View File

@ -0,0 +1 @@
!function(){function t(){return window.matchMedia(e).matches}var e=getComputedStyle(document.body).getPropertyValue("--phoneWidth"),n=document.querySelector(".language-selector-current"),o=document.querySelector(".language-selector__more");document.body.addEventListener("click",function(){t()||!o||o.classList.contains("hidden")||o.classList.add("hidden")}),n&&n.addEventListener("click",function(e){t()||(e.stopPropagation(),o.classList.toggle("hidden"))})}();

BIN
public/assets/languageSelector.js.gz View File


+ 1
- 0
public/assets/main.js View File

@ -0,0 +1 @@
!function(){function e(){return window.matchMedia(s).matches}function t(){o&&o.classList.toggle("hidden",!e()),i&&i.classList.toggle("hidden",e()),c&&c.classList.toggle("hidden",!e())}var n=document.querySelector(".container"),i=document.querySelector(".menu"),o=document.querySelector(".menu-trigger"),d=(document.querySelector(".menu__inner--desktop"),document.querySelector(".menu__sub-inner-more-trigger")),c=document.querySelector(".menu__sub-inner-more"),s=getComputedStyle(document.body).getPropertyValue("--phoneWidth");i&&i.addEventListener("click",function(e){return e.stopPropagation()}),c&&c.addEventListener("click",function(e){return e.stopPropagation()}),t(),document.body.addEventListener("click",function(){e()||!c||c.classList.contains("hidden")?e()&&!i.classList.contains("hidden")&&i.classList.add("hidden"):c.classList.add("hidden")}),window.addEventListener("resize",t),o&&o.addEventListener("click",function(e){e.stopPropagation(),i&&i.classList.toggle("hidden")}),d&&d.addEventListener("click",function(e){e.stopPropagation(),c&&c.classList.toggle("hidden"),c.getBoundingClientRect().right>n.getBoundingClientRect().right&&(c.style.left="auto",c.style.right=0)})}();

BIN
public/assets/main.js.gz View File


+ 1
- 0
public/assets/pink.css
File diff suppressed because it is too large
View File


BIN
public/assets/pink.css.gz View File


+ 8
- 0
public/assets/prism.js
File diff suppressed because it is too large
View File


BIN
public/assets/prism.js.gz View File


+ 1
- 0
public/assets/red.css
File diff suppressed because it is too large
View File


BIN
public/assets/red.css.gz View File


+ 1
- 0
public/assets/style.css
File diff suppressed because it is too large
View File


BIN
public/assets/style.css.gz View File


+ 199
- 0
public/awards/index.html View File

@ -0,0 +1,199 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>$ ls awards/ certificates/ :: Fr1nge&#39;s Personal Blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A list of awards and certificated that Yigit Colakoglu has" />
<meta name="keywords" content="Tech, Linux, Programming, Security" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://fr1nge.xyz/awards/" />
<link rel="stylesheet" href="http://fr1nge.xyz/assets/style.css">
<link rel="stylesheet" href="http://fr1nge.xyz/assets/blue.css">
<link rel="apple-touch-icon" href="http://fr1nge.xyz/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://fr1nge.xyz/img/favicon/blue.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="yigitcolakoglu.com" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="$ ls awards/ certificates/">
<meta property="og:description" content="A list of awards and certificated that Yigit Colakoglu has" />
<meta property="og:url" content="http://fr1nge.xyz/awards/" />
<meta property="og:site_name" content="Fr1nge&#39;s Personal Blog" />
<meta property="og:image" content="http://fr1nge.xyz/img/favicon/blue.png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
</head>
<body class="blue">
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/">
<div class="logo">
fr1nge.xyz
</div>
</a>
</div>
<div class="menu-trigger">menu</div>
</div>
<nav class="menu">
<ul class="menu__inner menu__inner--desktop">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
<ul class="menu__inner menu__inner--mobile">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
<a href="http://fr1nge.xyz/awards/">$ ls awards/ certificates/</a></h1>
<div class="post-meta">
</div>
<div class="post-content"><div>
<h3 id="awards">Awards<a href="#awards" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h3>
<ul>
<li>TUBITAK Regionals Second Place (2020)</li>
<li><a href="https://www.tedankara.k12.tr/index.php/kampuste-yasam/haberler/item/2807-wro-dunya-robot-olimpiyatlari-nda-dunya-1-ligini-ulkemize-kazandirdik">WRO International Tournament (2017)</a></li>
<li><a href="https://tedankara.k12.tr/index.php/kampuste-yasam/haberler/item/2329-first-lego-league-de-en-iyi-programlama-ve-yenilikci-cozum-odulleri-ted-ankara-koleji-nin">First Lego League Best Programmer Award (2017-2018)</a></li>
<li><a href="https://www.tedankara.k12.tr/index.php/kampuste-yasam/haberler/item/2718-dunya-robot-olimpiyatlari-nda-turkiye-yi-temsil-edecegiz">National WRO Tournament 2nd place (2018)</a></li>
</ul>
<h3 id="certificates">Certificates<a href="#certificates" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h3>
<ul>
<li><a href="https://cs50.harvard.edu/certificates/6a424e94-390b-453f-b802-2cbba0cd22fe">Introduction to Artificial Intelligence with Python (HarvardX)</a></li>
<li><a href="https://courses.edx.org/certificates/7c99af73bf444a67a70eb1853e06092f">Introduction to Computer Science and Programming Using Python (MITx)</a></li>
<li><a href="https://courses.edx.org/certificates/25eaaab3a06440999b3af955b67b217e">Data Structures and Software Design (PennX)</a></li>
<li><a href="https://courses.edx.org/certificates/fc89b8f716314d37937bcc3f27ef3205">Statistical Thinking for Data Science and Analytics (ColumbiaX)</a></li>
</ul>
</div></div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright copyright--user">
<span>Yigit Colakoglu</span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://fr1nge.xyz/assets/main.js"></script>
<script src="http://fr1nge.xyz/assets/prism.js"></script>
</div>
</body>
</html>

BIN
public/awards/index.html.gz View File


+ 129
- 147
public/categories/index.html
File diff suppressed because it is too large
View File


BIN
public/categories/index.html.gz View File


+ 6
- 8
public/categories/index.xml View File

@ -1,13 +1,11 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<docs>https://blogs.law.harvard.edu/tech/rss</docs>
<title>Categories on Fr1nge&#39;s Personal Site</title>
<title>Categories on Fr1nge&#39;s Personal Blog</title>
<link>http://fr1nge.xyz/categories/</link>
<description>Recent content in Categories on Fr1nge&#39;s Personal Site</description>
<ttl>1440</ttl>
<generator>Hugo 0.82.0</generator>
<description>Recent content in Categories on Fr1nge&#39;s Personal Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 13 Apr 2021 15:55:04 UT</lastBuildDate>
<atom:link href="http://fr1nge.xyz/categories/index.xml" rel="self" type="application/rss+xml" />
<copyright>Yigit Colakoglu</copyright><atom:link href="http://fr1nge.xyz/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

BIN
public/categories/index.xml.gz View File


BIN
public/css/syntax.css.gz View File


BIN
public/images/logo-dark.svg.gz View File


BIN
public/images/pp.jpeg View File

Before After
Width: 640  |  Height: 640  |  Size: 42 KiB

BIN
public/images/pp_scale.png View File

Before After
Width: 72  |  Height: 72  |  Size: 9.6 KiB

BIN
public/img/favicon/blue.png View File

Before After
Width: 50  |  Height: 50  |  Size: 189 B

BIN
public/img/favicon/green.png View File

Before After
Width: 50  |  Height: 50  |  Size: 190 B

BIN
public/img/favicon/orange.png View File

Before After
Width: 50  |  Height: 50  |  Size: 190 B

BIN
public/img/favicon/pink.png View File

Before After
Width: 50  |  Height: 50  |  Size: 190 B

BIN
public/img/favicon/red.png View File

Before After
Width: 50  |  Height: 50  |  Size: 189 B

+ 173
- 159
public/index.html
File diff suppressed because it is too large
View File


BIN
public/index.html.gz View File


+ 96
- 8
public/index.xml View File

@ -1,13 +1,101 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<docs>https://blogs.law.harvard.edu/tech/rss</docs>
<title>Fr1nge&#39;s Personal Site</title>
<title>Fr1nge&#39;s Personal Blog</title>
<link>http://fr1nge.xyz/</link>
<description>Recent content on Fr1nge&#39;s Personal Site</description>
<ttl>1440</ttl>
<generator>Hugo 0.82.0</generator>
<description>Recent content on Fr1nge&#39;s Personal Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 13 Apr 2021 15:55:04 UT</lastBuildDate>
<atom:link href="http://fr1nge.xyz/index.xml" rel="self" type="application/rss+xml" />
<copyright>Yigit Colakoglu</copyright>
<lastBuildDate>Tue, 13 Apr 2021 23:26:07 +0300</lastBuildDate><atom:link href="http://fr1nge.xyz/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Test</title>
<link>http://fr1nge.xyz/posts/test/</link>
<pubDate>Tue, 13 Apr 2021 23:26:07 +0300</pubDate>
<guid>http://fr1nge.xyz/posts/test/</guid>
<description></description>
<content></content>
</item>
<item>
<title>$ ls awards/ certificates/</title>
<link>http://fr1nge.xyz/awards/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://fr1nge.xyz/awards/</guid>
<description>Awards TUBITAK Regionals Second Place (2020) WRO International Tournament (2017) First Lego League Best Programmer Award (2017-2018) National WRO Tournament 2nd place (2018) Certificates Introduction to Artificial Intelligence with Python (HarvardX) Introduction to Computer Science and Programming Using Python (MITx) Data Structures and Software Design (PennX) Statistical Thinking for Data Science and Analytics (ColumbiaX) </description>
<content>&lt;h3 id=&#34;awards&#34;&gt;Awards&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;TUBITAK Regionals Second Place (2020)&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.tedankara.k12.tr/index.php/kampuste-yasam/haberler/item/2807-wro-dunya-robot-olimpiyatlari-nda-dunya-1-ligini-ulkemize-kazandirdik&#34;&gt;WRO International Tournament (2017)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://tedankara.k12.tr/index.php/kampuste-yasam/haberler/item/2329-first-lego-league-de-en-iyi-programlama-ve-yenilikci-cozum-odulleri-ted-ankara-koleji-nin&#34;&gt;First Lego League Best Programmer Award (2017-2018)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.tedankara.k12.tr/index.php/kampuste-yasam/haberler/item/2718-dunya-robot-olimpiyatlari-nda-turkiye-yi-temsil-edecegiz&#34;&gt;National WRO Tournament 2nd place (2018)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;certificates&#34;&gt;Certificates&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://cs50.harvard.edu/certificates/6a424e94-390b-453f-b802-2cbba0cd22fe&#34;&gt;Introduction to Artificial Intelligence with Python (HarvardX)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://courses.edx.org/certificates/7c99af73bf444a67a70eb1853e06092f&#34;&gt;Introduction to Computer Science and Programming Using Python (MITx)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://courses.edx.org/certificates/25eaaab3a06440999b3af955b67b217e&#34;&gt;Data Structures and Software Design (PennX)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://courses.edx.org/certificates/fc89b8f716314d37937bcc3f27ef3205&#34;&gt;Statistical Thinking for Data Science and Analytics (ColumbiaX)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
</item>
<item>
<title>$ ls projects/</title>
<link>http://fr1nge.xyz/projects/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://fr1nge.xyz/projects/</guid>
<description>Metis: Metis is a web application that allows medical clinic owners to easily manage their appointments and their patients. It is primarily designed for use in Turkey, with several specific features. It is developed on the Spring Boot framework and uses MySQL and Redis as its data and session storage. Hermes: Hermes is an open source E-Mail tracking solution that is written in Go. KulYutmaz: A project developed for the regional TUBITAK competition&amp;rsquo;s programming field thart aims to create a more advanced phishing e-mail detection algorithm using website content checking and a neural network that we have trained.</description>
<content>&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge/Metis/&#34;&gt;Metis&lt;/a&gt;: Metis is a web application that allows medical clinic owners to easily manage their appointments and their patients. It is primarily designed for use in Turkey, with several specific features. It is developed on the Spring Boot framework and uses MySQL and Redis as its data and session storage.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge/Hermes/&#34;&gt;Hermes&lt;/a&gt;: Hermes is an open source E-Mail tracking solution that is written in Go.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge/KulYutmaz/&#34;&gt;KulYutmaz&lt;/a&gt;: A project developed for the regional TUBITAK competition&amp;rsquo;s programming field thart aims to create a more advanced phishing e-mail detection algorithm using website content checking and a neural network that we have trained.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge/MyCity/&#34;&gt;Citizen View&lt;/a&gt;: A system that we developed for the WRO Friendship Tournament 2019 that detects defects on the road and does live traffic management.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge/WRO_QR&#34;&gt;Food Cloud&lt;/a&gt;: A project that we developed for the WRO Tournament 2018 that came in first place. It is a system that ensures food safety.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge/dotfiles/&#34;&gt;Dotfiles&lt;/a&gt;: I released my dotfiles due to heavy request from my friends. Hope you have a great time using them :D&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://siberogretmen.com&#34;&gt;Siber Ogretmen&lt;/a&gt;: An SSH based game that teaches linux commands &amp;amp; an online blog that aims to teach basics about Linux and Cyber Security.&lt;/li&gt;
&lt;/ul&gt;
</content>
</item>
<item>
<title>$ whoami</title>
<link>http://fr1nge.xyz/about/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://fr1nge.xyz/about/</guid>
<description>I am a senior student in Ted Ankara College Foundation High School. I dabble in different areas of computer science every now and then and try to learn new stuff along the way. I love creating software for my personal use and for people around me.
Interests: Quantum Computing, Cybersecurity, Linux, Self-Hosting Skills: Spring Boot, Linux, VueJS Languages: Python, JavaScript, Java, C, Bash, LaTeX Follow Me GitHub Twitter LinkedIn RSS Contact Me Telegram Discord Email I also have a gpg key Want to learn more?</description>
<content>&lt;p&gt;I am a senior student in Ted Ankara College Foundation High School. I dabble in
different areas of computer science every now and then and try to learn new stuff
along the way. I love creating software for my personal use and for people around
me.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Interests:&lt;/strong&gt; Quantum Computing, Cybersecurity, Linux, Self-Hosting&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Skills:&lt;/strong&gt; Spring Boot, Linux, VueJS&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Languages:&lt;/strong&gt; Python, JavaScript, Java, C, Bash, LaTeX&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;follow-me&#34;&gt;Follow Me&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/theFr1nge&#34;&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://twitter.com/theFr1nge&#34;&gt;&lt;strong&gt;Twitter&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.linkedin.com/in/yigitcolakoglu/&#34;&gt;&lt;strong&gt;LinkedIn&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://fr1nge.xyz/index.xml&#34;&gt;&lt;strong&gt;RSS&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;contact-me&#34;&gt;Contact Me&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://t.me/thefr1nge&#34;&gt;&lt;strong&gt;Telegram&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://discordapp.com/users/440823026523832322&#34;&gt;&lt;strong&gt;Discord&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;mail:yigitcolakoglu@hotmail.com&#34;&gt;&lt;strong&gt;Email&lt;/strong&gt;&lt;/a&gt; &lt;a href=&#34;http://fr1nge.xyz/misc/9D26FDA9E051205C4DC8422611D306C40EAEC301.asc&#34;&gt;&lt;em&gt;I also have a gpg key&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;want-to-learn-more&#34;&gt;Want to learn more?&lt;/h4&gt;
&lt;p&gt;You can find my resume &lt;a href=&#34;http://fr1nge.xyz/misc/resume.pdf&#34;&gt;&lt;em&gt;right here&lt;/em&gt;&lt;/a&gt;. Or you can
hit me up through social media, I am open to chat :)&lt;/p&gt;
</content>
</item>
</channel>
</rss>

BIN
public/index.xml.gz View File


BIN
public/js/fuse.min.js.gz View File


BIN
public/js/lazysizes.min.js.gz View File


BIN
public/js/lodash.custom.min.js.gz View File


BIN
public/js/mark.min.js.gz View File


BIN
public/js/vue.min.js.gz View File


+ 52
- 0
public/misc/9D26FDA9E051205C4DC8422611D306C40EAEC301.asc View File

@ -0,0 +1,52 @@
-----BEGIN PGP PUBLIC KEY BLOCK-----
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
wL8saAUwk/AP3K2jvLK7Orns
=RoFw
-----END PGP PUBLIC KEY BLOCK-----

BIN
public/misc/9D26FDA9E051205C4DC8422611D306C40EAEC301.asc.gz View File


BIN
public/misc/resume.pdf View File


BIN
public/page/1/index.html.gz View File


+ 212
- 0
public/posts/index.html View File

@ -0,0 +1,212 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Posts :: Fr1nge&#39;s Personal Blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="Tech, Linux, Programming, Security" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://fr1nge.xyz/posts/" />
<link rel="stylesheet" href="http://fr1nge.xyz/assets/style.css">
<link rel="stylesheet" href="http://fr1nge.xyz/assets/blue.css">
<link rel="apple-touch-icon" href="http://fr1nge.xyz/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://fr1nge.xyz/img/favicon/blue.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="yigitcolakoglu.com" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Posts">
<meta property="og:description" content="" />
<meta property="og:url" content="http://fr1nge.xyz/posts/" />
<meta property="og:site_name" content="Fr1nge&#39;s Personal Blog" />
<meta property="og:image" content="http://fr1nge.xyz/img/favicon/blue.png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<link href="/posts/index.xml" rel="alternate" type="application/rss+xml" title="Fr1nge&#39;s Personal Blog" />
</head>
<body class="blue">
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/">
<div class="logo">
fr1nge.xyz
</div>
</a>
</div>
<div class="menu-trigger">menu</div>
</div>
<nav class="menu">
<ul class="menu__inner menu__inner--desktop">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
<ul class="menu__inner menu__inner--mobile">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="posts">
<div class="post on-list">
<h1 class="post-title">
<a href="http://fr1nge.xyz/posts/test/">Test</a>
</h1>
<div class="post-meta">
<span class="post-date">
2021-04-13
</span>
</div>
<span class="post-tags">
#<a href="http://fr1nge.xyz/tags/"></a>&nbsp;
#<a href="http://fr1nge.xyz/tags/"></a>&nbsp;
</span>
<div class="post-content">
</div>
<div>
<a class="read-more button"
href="/posts/test/">Read more →</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright copyright--user">
<span>Yigit Colakoglu</span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://fr1nge.xyz/assets/main.js"></script>
<script src="http://fr1nge.xyz/assets/prism.js"></script>
</div>
</body>
</html>

BIN
public/posts/index.html.gz View File


+ 22
- 0
public/posts/index.xml View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on Fr1nge&#39;s Personal Blog</title>
<link>http://fr1nge.xyz/posts/</link>
<description>Recent content in Posts on Fr1nge&#39;s Personal Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<copyright>Yigit Colakoglu</copyright>
<lastBuildDate>Tue, 13 Apr 2021 23:26:07 +0300</lastBuildDate><atom:link href="http://fr1nge.xyz/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Test</title>
<link>http://fr1nge.xyz/posts/test/</link>
<pubDate>Tue, 13 Apr 2021 23:26:07 +0300</pubDate>
<guid>http://fr1nge.xyz/posts/test/</guid>
<description></description>
<content></content>
</item>
</channel>
</rss>

BIN
public/posts/index.xml.gz View File


+ 1
- 0
public/posts/page/1/index.html View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>http://fr1nge.xyz/posts/</title><link rel="canonical" href="http://fr1nge.xyz/posts/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=http://fr1nge.xyz/posts/" /></head></html>

BIN
public/posts/page/1/index.html.gz View File


+ 197
- 0
public/posts/test/index.html View File

@ -0,0 +1,197 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Test :: Fr1nge&#39;s Personal Blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content=", " />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://fr1nge.xyz/posts/test/" />
<link rel="stylesheet" href="http://fr1nge.xyz/assets/style.css">
<link rel="stylesheet" href="http://fr1nge.xyz/assets/blue.css">
<link rel="apple-touch-icon" href="http://fr1nge.xyz/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://fr1nge.xyz/img/favicon/blue.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="yigitcolakoglu.com" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Test">
<meta property="og:description" content="" />
<meta property="og:url" content="http://fr1nge.xyz/posts/test/" />
<meta property="og:site_name" content="Fr1nge&#39;s Personal Blog" />
<meta property="og:image" content="http://fr1nge.xyz/">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<meta property="article:published_time" content="2021-04-13 23:26:07 &#43;0300 &#43;03" />
</head>
<body class="blue">
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/">
<div class="logo">
fr1nge.xyz
</div>
</a>
</div>
<div class="menu-trigger">menu</div>
</div>
<nav class="menu">
<ul class="menu__inner menu__inner--desktop">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
<ul class="menu__inner menu__inner--mobile">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
<a href="http://fr1nge.xyz/posts/test/">Test</a></h1>
<div class="post-meta">
<span class="post-date">
2021-04-13 [Updated: 2021-04-13]
</span>
</div>
<span class="post-tags">
#<a href="http://fr1nge.xyz/tags/"></a>&nbsp;
#<a href="http://fr1nge.xyz/tags/"></a>&nbsp;
</span>
<div class="post-content"></div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright copyright--user">
<span>Yigit Colakoglu</span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://fr1nge.xyz/assets/main.js"></script>
<script src="http://fr1nge.xyz/assets/prism.js"></script>
</div>
</body>
</html>

BIN
public/posts/test/index.html.gz View File


+ 194
- 0
public/projects/index.html View File

@ -0,0 +1,194 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>$ ls projects/ :: Fr1nge&#39;s Personal Blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A list of projects made by Yigit Colakoglu" />
<meta name="keywords" content="Tech, Linux, Programming, Security" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://fr1nge.xyz/projects/" />
<link rel="stylesheet" href="http://fr1nge.xyz/assets/style.css">
<link rel="stylesheet" href="http://fr1nge.xyz/assets/blue.css">
<link rel="apple-touch-icon" href="http://fr1nge.xyz/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://fr1nge.xyz/img/favicon/blue.png">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="yigitcolakoglu.com" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="$ ls projects/">
<meta property="og:description" content="A list of projects made by Yigit Colakoglu" />
<meta property="og:url" content="http://fr1nge.xyz/projects/" />
<meta property="og:site_name" content="Fr1nge&#39;s Personal Blog" />
<meta property="og:image" content="http://fr1nge.xyz/img/favicon/blue.png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
</head>
<body class="blue">
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/">
<div class="logo">
fr1nge.xyz
</div>
</a>
</div>
<div class="menu-trigger">menu</div>
</div>
<nav class="menu">
<ul class="menu__inner menu__inner--desktop">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
<ul class="menu__inner menu__inner--mobile">
<li><a href="/about">About</a></li>
<li><a href="/awards">Awards &amp; Certificates</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
</nav>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
<a href="http://fr1nge.xyz/projects/">$ ls projects/</a></h1>
<div class="post-meta">
</div>
<div class="post-content"><div>
<ul>
<li><a href="https://github.com/theFr1nge/Metis/">Metis</a>: Metis is a web application that allows medical clinic owners to easily manage their appointments and their patients. It is primarily designed for use in Turkey, with several specific features. It is developed on the Spring Boot framework and uses MySQL and Redis as its data and session storage.</li>
<li><a href="https://github.com/theFr1nge/Hermes/">Hermes</a>: Hermes is an open source E-Mail tracking solution that is written in Go.</li>
<li><a href="https://github.com/theFr1nge/KulYutmaz/">KulYutmaz</a>: A project developed for the regional TUBITAK competition&rsquo;s programming field thart aims to create a more advanced phishing e-mail detection algorithm using website content checking and a neural network that we have trained.</li>
<li><a href="https://github.com/theFr1nge/MyCity/">Citizen View</a>: A system that we developed for the WRO Friendship Tournament 2019 that detects defects on the road and does live traffic management.</li>
<li><a href="https://github.com/theFr1nge/WRO_QR">Food Cloud</a>: A project that we developed for the WRO Tournament 2018 that came in first place. It is a system that ensures food safety.</li>
<li><a href="https://github.com/theFr1nge/dotfiles/">Dotfiles</a>: I released my dotfiles due to heavy request from my friends. Hope you have a great time using them :D</li>
<li><a href="https://siberogretmen.com">Siber Ogretmen</a>: An SSH based game that teaches linux commands &amp; an online blog that aims to teach basics about Linux and Cyber Security.</li>
</ul>
</div></div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright copyright--user">
<span>Yigit Colakoglu</span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://fr1nge.xyz/assets/main.js"></script>
<script src="http://fr1nge.xyz/assets/prism.js"></script>
</div>
</body>
</html>

BIN
public/projects/index.html.gz View File


+ 15
- 2
public/sitemap.xml View File

@ -2,9 +2,22 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://fr1nge.xyz/categories/</loc>
</url><url>
<loc>http://fr1nge.xyz/</loc>
<lastmod>2021-04-13T23:26:07+03:00</lastmod>
</url><url>
<loc>http://fr1nge.xyz/posts/</loc>
<lastmod>2021-04-13T23:26:07+03:00</lastmod>
</url><url>
<loc>http://fr1nge.xyz/posts/test/</loc>
<lastmod>2021-04-13T23:26:07+03:00</lastmod>
</url><url>
<loc>http://fr1nge.xyz/awards/</loc>
</url><url>
<loc>http://fr1nge.xyz/projects/</loc>
</url><url>
<loc>http://fr1nge.xyz/about/</loc>
</url><url>
<loc>http://fr1nge.xyz/categories/</loc>
</url><url>
<loc>http://fr1nge.xyz/tags/</loc>
</url>


BIN
public/sitemap.xml.gz View File


+ 129
- 147
public/tags/index.html
File diff suppressed because it is too large
View File


BIN
public/tags/index.html.gz View File


+ 6
- 8
public/tags/index.xml View File

@ -1,13 +1,11 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<docs>https://blogs.law.harvard.edu/tech/rss</docs>
<title>Tags on Fr1nge&#39;s Personal Site</title>
<title>Tags on Fr1nge&#39;s Personal Blog</title>
<link>http://fr1nge.xyz/tags/</link>
<description>Recent content in Tags on Fr1nge&#39;s Personal Site</description>
<ttl>1440</ttl>
<generator>Hugo 0.82.0</generator>
<description>Recent content in Tags on Fr1nge&#39;s Personal Blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 13 Apr 2021 15:55:04 UT</lastBuildDate>
<atom:link href="http://fr1nge.xyz/tags/index.xml" rel="self" type="application/rss+xml" />
<copyright>Yigit Colakoglu</copyright><atom:link href="http://fr1nge.xyz/tags/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

BIN
public/tags/index.xml.gz View File


Loading…
Cancel
Save