From 1bfaa7213ba53b1477085587a30675bb99a27c3e Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 4 Jan 2020 14:33:16 +0530 Subject: Publish deploy 2020-01-04 14:33 --- AlphaTheme/styles.css | 166 +++++++++++++++++++++ feed.rss | 2 +- index.html | 2 +- posts/hello-world/index.html | 2 +- posts/index.html | 2 +- posts/splitting-zips/index.html | 2 +- sitemap.xml | 2 +- styles.css | 28 +++- tags/article/index.html | 2 +- tags/codesnippet/index.html | 2 +- tags/colab/index.html | 2 +- tags/helloworld/index.html | 2 +- tags/index.html | 2 +- tags/tutorial/index.html | 2 +- .../index.html | 2 +- tutorials/index.html | 2 +- 16 files changed, 201 insertions(+), 21 deletions(-) create mode 100644 AlphaTheme/styles.css diff --git a/AlphaTheme/styles.css b/AlphaTheme/styles.css new file mode 100644 index 0000000..7d131ff --- /dev/null +++ b/AlphaTheme/styles.css @@ -0,0 +1,166 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 04/01/20. +// + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + background: #fff; + color: #000; + font-family: Helvetica, Arial; + text-align: center; +} + +.wrapper { + max-width: 900px; + margin-left: auto; + margin-right: auto; + padding: 40px; + text-align: left; +} + +header { + background-color: #eee; +} + +/* +.header-background { + background-image: url(images/logo.png); + background-size: 100% 100%; + background-repeat: no-repeat; + background-size: cover; + background-position: center; + height: 200px; +} +*/ +header .wrapper { + padding: 0; + margin: 0; + max-width: none; + /* padding-top: 30px; + padding-bottom: 30px; */ + text-align: center; +} + +header a { + text-decoration: none; +} + +header .site-name { + font-size: 1.5em; + color: #000; + font-weight: bold; +} + +nav { + margin-top: 20px; +} + +nav li { + display: inline-block; +} + +h1 { + margin-bottom: 20px; + font-size: 2em; +} + +h2 { + margin: 20px 0; +} + +p { + margin-bottom: 10px; +} + +a { + color: inherit; +} + +.description { + margin-bottom: 40px; +} + +.item-list > li { + display: block; + padding: 20px; + border-radius: 20px; + background-color: #eee; +} + +.item-list h1 { + margin-bottom: 15px; + font-size: 1.3em; +} + +.item-list p { + margin-bottom: 0; +} + +.tag-list { + margin-bottom: 15px; +} + +.tag-list li, +.tag { + display: inline-block; + background-color: #000; + color: #ddd; + padding: 4px 6px; + border-radius: 5px; + margin-right: 5px; +} + +.tag-list a, +.tag a { + text-decoration: none; +} + +.item-page .tag-list { + display: inline-block; +} + +.content { + margin-bottom: 40px; +} + +.browse-all { + display: block; + margin-bottom: 30px; +} + +.all-tags li { + font-size: 1.4em; + margin-right: 10px; + padding: 6px 10px; +} + +footer { + color: #8a8a8a; +} + +@media (prefers-color-scheme: dark) { + body { + background-color: #222; + } + + body, + header .site-name { + color: #ddd; + } + + .item-list > li { + background-color: #333; + } + + header { + background-color: #000; + } +} diff --git a/feed.rss b/feed.rss index 85e322b..54e0f89 100644 --- a/feed.rss +++ b/feed.rss @@ -1,4 +1,4 @@ -Navan ChauhanI try to post tutorials, tips and tricks related to programming, designing and just some science stuffhttps://navanchauhan.github.io/SwiftWebsite/enWed, 1 Jan 2020 19:16:37 +0530Wed, 1 Jan 2020 19:16:37 +0530250https://navanchauhan.github.io/SwiftWebsite/posts/splitting-zipsSplitting ZIPs into Multiple PartsShort code snippet for splitting zips.https://navanchauhan.github.io/SwiftWebsite/posts/splitting-zipsSun, 8 Dec 2019 13:27:00 +0530Splitting ZIPs into Multiple Parts

Tested on macOS

Creating the archive:

zip -r -s 5 oodlesofnoodles.zip website/
+Navan ChauhanI try to post tutorials, tips and tricks related to programming, designing and just some science stuffhttps://navanchauhan.github.io/SwiftWebsite/enSat, 4 Jan 2020 14:28:26 +0530Sat, 4 Jan 2020 14:28:26 +0530250https://navanchauhan.github.io/SwiftWebsite/posts/splitting-zipsSplitting ZIPs into Multiple PartsShort code snippet for splitting zips.https://navanchauhan.github.io/SwiftWebsite/posts/splitting-zipsSun, 8 Dec 2019 13:27:00 +0530Splitting ZIPs into Multiple Parts

Tested on macOS

Creating the archive:

zip -r -s 5 oodlesofnoodles.zip website/
 

5 stands for each split files' size (in mb, kb and gb can also be specified)

For encrypting the zip:

zip -er -s 5 oodlesofnoodles.zip website
 

Extracting Files

First we need to collect all parts, then

zip -F oodlesofnoodles.zip --out merged.zip
 
]]>
https://navanchauhan.github.io/SwiftWebsite/tutorials/custom-image-classifier-keras-tensorflowCreating a Custom Image Classifier using Tensorflow 2.x and Keras for Detecting MalariaShort tutorial for creating a custom image classifier using TF 2.0https://navanchauhan.github.io/SwiftWebsite/tutorials/custom-image-classifier-keras-tensorflowSun, 8 Dec 2019 11:27:00 +0530Creating a Custom Image Classifier using Tensorflow 2.x and Keras for Detecting Malaria

Done during Google Code-In. Org: Tensorflow.

Imports

%tensorflow_version 2.x #This is for telling Colab that you want to use TF 2.0, ignore if running on local machine
diff --git a/index.html b/index.html
index 963c0b0..9246253 100644
--- a/index.html
+++ b/index.html
@@ -1 +1 @@
-Hi | Navan Chauhan

Hi

I try to post tutorials, tips and tricks related to programming, designing and just some science stuff

Latest content

\ No newline at end of file +Hi | Navan Chauhan

Hi

I try to post tutorials, tips and tricks related to programming, designing and just some science stuff

Latest content

\ No newline at end of file diff --git a/posts/hello-world/index.html b/posts/hello-world/index.html index 2b9572a..9854ae5 100644 --- a/posts/hello-world/index.html +++ b/posts/hello-world/index.html @@ -1 +1 @@ -Hello World | Navan Chauhan

Hello World

Why a Hello World post?

Just re-did the entire website using Publish (Publish by John Sundell). So, a new hello world post :)

Tagged with:
\ No newline at end of file +Hello World | Navan Chauhan

Hello World

Why a Hello World post?

Just re-did the entire website using Publish (Publish by John Sundell). So, a new hello world post :)

Tagged with:
\ No newline at end of file diff --git a/posts/index.html b/posts/index.html index bb82402..d27dcfe 100644 --- a/posts/index.html +++ b/posts/index.html @@ -1 +1 @@ -Posts | Navan Chauhan

Posts

\ No newline at end of file +Posts | Navan Chauhan

Posts

\ No newline at end of file diff --git a/posts/splitting-zips/index.html b/posts/splitting-zips/index.html index b65d420..8a434f5 100644 --- a/posts/splitting-zips/index.html +++ b/posts/splitting-zips/index.html @@ -1,4 +1,4 @@ Splitting ZIPs into Multiple Parts | Navan Chauhan

Splitting ZIPs into Multiple Parts

Tested on macOS

Creating the archive:

zip -r -s 5 oodlesofnoodles.zip website/
 

5 stands for each split files' size (in mb, kb and gb can also be specified)

For encrypting the zip:

zip -er -s 5 oodlesofnoodles.zip website
 

Extracting Files

First we need to collect all parts, then

zip -F oodlesofnoodles.zip --out merged.zip
-
Tagged with:
\ No newline at end of file +
Tagged with: \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index d1c8cbc..7693c89 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1 +1 @@ -https://navanchauhan.github.io/SwiftWebsite/postsdaily1.02020-01-01https://navanchauhan.github.io/SwiftWebsite/posts/splitting-zipsmonthly0.52020-01-01https://navanchauhan.github.io/SwiftWebsite/posts/hello-worldmonthly0.52020-01-01https://navanchauhan.github.io/SwiftWebsite/tutorialsdaily1.02020-01-01https://navanchauhan.github.io/SwiftWebsite/tutorials/custom-image-classifier-keras-tensorflowmonthly0.52020-01-01 \ No newline at end of file +https://navanchauhan.github.io/SwiftWebsite/postsdaily1.02020-01-01https://navanchauhan.github.io/SwiftWebsite/posts/splitting-zipsmonthly0.52020-01-02https://navanchauhan.github.io/SwiftWebsite/posts/hello-worldmonthly0.52020-01-02https://navanchauhan.github.io/SwiftWebsite/tutorialsdaily1.02020-01-01https://navanchauhan.github.io/SwiftWebsite/tutorials/custom-image-classifier-keras-tensorflowmonthly0.52020-01-01 \ No newline at end of file diff --git a/styles.css b/styles.css index 0422af4..7d131ff 100644 --- a/styles.css +++ b/styles.css @@ -1,8 +1,9 @@ -/** -* Publish Foundation theme -* Copyright (c) John Sundell 2019 -* MIT license, see LICENSE file for details -*/ +// +// File.swift +// +// +// Created by Navan Chauhan on 04/01/20. +// * { margin: 0; @@ -29,9 +30,22 @@ header { background-color: #eee; } +/* +.header-background { + background-image: url(images/logo.png); + background-size: 100% 100%; + background-repeat: no-repeat; + background-size: cover; + background-position: center; + height: 200px; +} +*/ header .wrapper { - padding-top: 30px; - padding-bottom: 30px; + padding: 0; + margin: 0; + max-width: none; + /* padding-top: 30px; + padding-bottom: 30px; */ text-align: center; } diff --git a/tags/article/index.html b/tags/article/index.html index 62b57ff..4127536 100644 --- a/tags/article/index.html +++ b/tags/article/index.html @@ -1 +1 @@ -Navan Chauhan

Tagged with article

Browse all tags
\ No newline at end of file +Navan Chauhan

Tagged with article

Browse all tags
\ No newline at end of file diff --git a/tags/codesnippet/index.html b/tags/codesnippet/index.html index 06af971..76fefc7 100644 --- a/tags/codesnippet/index.html +++ b/tags/codesnippet/index.html @@ -1 +1 @@ -Navan Chauhan

Tagged with code-snippet

Browse all tags
\ No newline at end of file +Navan Chauhan

Tagged with code-snippet

Browse all tags
\ No newline at end of file diff --git a/tags/colab/index.html b/tags/colab/index.html index 50170e8..3e63ad6 100644 --- a/tags/colab/index.html +++ b/tags/colab/index.html @@ -1 +1 @@ -Navan Chauhan

Tagged with colab

Browse all tags
\ No newline at end of file +Navan Chauhan

Tagged with colab

Browse all tags
\ No newline at end of file diff --git a/tags/helloworld/index.html b/tags/helloworld/index.html index add0b1f..187c2a3 100644 --- a/tags/helloworld/index.html +++ b/tags/helloworld/index.html @@ -1 +1 @@ -Navan Chauhan

Tagged with hello-world

Browse all tags
\ No newline at end of file +Navan Chauhan

Tagged with hello-world

Browse all tags
\ No newline at end of file diff --git a/tags/index.html b/tags/index.html index 92ab3f5..4e2e265 100644 --- a/tags/index.html +++ b/tags/index.html @@ -1 +1 @@ -Navan Chauhan
\ No newline at end of file +Navan Chauhan
\ No newline at end of file diff --git a/tags/tutorial/index.html b/tags/tutorial/index.html index aad1353..9bac7ed 100644 --- a/tags/tutorial/index.html +++ b/tags/tutorial/index.html @@ -1 +1 @@ -Navan Chauhan

Tagged with tutorial

Browse all tags
\ No newline at end of file +Navan Chauhan

Tagged with tutorial

Browse all tags
\ No newline at end of file diff --git a/tutorials/custom-image-classifier-keras-tensorflow/index.html b/tutorials/custom-image-classifier-keras-tensorflow/index.html index 6746e29..9ea32fe 100644 --- a/tutorials/custom-image-classifier-keras-tensorflow/index.html +++ b/tutorials/custom-image-classifier-keras-tensorflow/index.html @@ -98,4 +98,4 @@ print( Loss: 3.732407123270176 Validation Accuracy: 100.0 Validation Loss: 0.0 -

We have achieved 98% Accuracy!

Link to Colab Notebook

Tagged with: \ No newline at end of file +

We have achieved 98% Accuracy!

Link to Colab Notebook

Tagged with: \ No newline at end of file diff --git a/tutorials/index.html b/tutorials/index.html index dc7f9b4..a0cdf48 100644 --- a/tutorials/index.html +++ b/tutorials/index.html @@ -1 +1 @@ -Tutorials | Navan Chauhan

Tutorials

\ No newline at end of file +Tutorials | Navan Chauhan

Tutorials

\ No newline at end of file -- cgit v1.2.3