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 --- feed.rss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'feed.rss') 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
-- 
cgit v1.2.3