├── _layouts ├── none.html ├── page_print.html ├── default_print.html ├── post.html ├── page.html └── default.html ├── _data ├── terms.yml ├── strings.yml ├── tags.yml ├── sidebars │ ├── other.yml │ ├── home_sidebar.yml │ ├── product1_sidebar.yml │ └── product2_sidebar.yml ├── glossary.yml ├── alerts.yml ├── definitions.yml ├── topnav.yml └── samplelist.yml ├── pdf-all.sh ├── pdf ├── mydoc.pdf ├── product1.pdf └── product2.pdf ├── run ├── images ├── Picture1.png ├── favicon.ico ├── 29question.png ├── 56question.png ├── 58question.png └── company_logo.svg ├── update.sh ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── _includes ├── inline_image.html ├── callout.html ├── note.html ├── tip.html ├── important.html ├── warning.html ├── commento.html ├── archive.html ├── image.html ├── custom │ ├── getting_started_series_next.html │ ├── usermap.html │ ├── getting_started_series.html │ ├── series_acme.html │ ├── series_acme_next.html │ └── usermapcomplex.html ├── google_analytics.html ├── feedback.html ├── toc.html ├── footer.html ├── taglogic.html ├── links.html ├── head_print.html ├── sidebar.html ├── head.html ├── initialize_shuffle.html └── topnav.html ├── css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── boxshadowproperties.css ├── modern-business.css ├── theme-blue.css ├── printstyles.css ├── theme-green.css └── syntax.css ├── _tooltips ├── soccer.html ├── football.html ├── baseball.html └── basketball.html ├── .gitignore ├── install_gem ├── .vscode └── settings.json ├── 404.md ├── docker-compose.yml ├── pages ├── tags │ ├── tag_news.md │ ├── tag_notes.md │ ├── tag_mobile.md │ ├── tag_resourse.md │ ├── tag_formatting.md │ ├── tag_navigation.md │ ├── tag_publishing.md │ ├── tag_collaboration.md │ ├── tag_content_types.md │ ├── tag_getting_started.md │ ├── tag_lib_framework.md │ ├── tag_single_sourcing.md │ ├── tag_troubleshooting.md │ └── tag_special_layouts.md ├── mydoc │ ├── numpy_advance.md │ ├── pandas_Panels.md │ ├── pandas_InputAnd_Output.md │ ├── pandas_datesAndTime.md │ ├── visualization_matplotlib_pyplot.md │ ├── drf_genericViews.md │ ├── drf_cbv.md │ ├── virtualization_Vargant.md │ ├── drf_viewsets.md │ ├── drf_mixins.md │ ├── joblib.md │ ├── drf_fbv.md │ ├── pacman.md │ ├── postgreSQL_cheetsheet.md │ └── pickel.md ├── news │ ├── news_archive.html │ └── news.html ├── pdf_book │ ├── react17.html │ ├── two-scope_Django3.html │ ├── django4API.html │ ├── py_regex │ ├── Py_interview_rock.html │ ├── django3.html │ ├── ds_ml_interview.html │ ├── cc.html │ ├── Interview_python.html │ ├── py_one-liners.html │ ├── 40-algo-py.html │ ├── CC_Python.html │ ├── sysDesign.html │ ├── Soft_eng_google.html │ ├── CC_JavaScript.html │ ├── ds_algo_py.html │ └── handsOn_ds_algo_py.html ├── product1 │ └── Comming.html └── product2 │ ├── p2_sample1.md │ └── p2_sample14.md ├── Dockerfile ├── run_update ├── var └── build.sh ├── tooltips.json ├── _posts ├── 2020-10-04-learn-by-kaggle.md ├── 2020-09-10-ml-Glossary.md ├── 2021-6-6-Bootstrap5_learning_kit.md ├── 2021-6-16-emojisence.md └── 2021-5-18-ESLint_workspace-setup-VSCODE.md ├── Gemfile ├── pdf-product1.sh ├── pdf-product2.sh ├── .gitlab-ci.yml ├── pdfconfigs ├── config_product1_pdf.yml ├── config_product2_pdf.yml ├── config_mydoc_pdf.yml ├── titlepage.html ├── tocpage.html └── prince-list.txt ├── sitemap.xml ├── pdf-mydoc.sh ├── js ├── jquery.ba-throttle-debounce.min.js ├── customscripts.js ├── toc.js ├── jquery.navgoco.min.js └── jekyll-search.js ├── search.json ├── licenses ├── LICENSE └── LICENSE-BSD-NAVGOCO.txt ├── createtag ├── feed.xml ├── tooltips.html └── _config.yml /_layouts/none.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {{content}} -------------------------------------------------------------------------------- /_data/terms.yml: -------------------------------------------------------------------------------- 1 | apple: "apple - the fruit of a disiduous tree." -------------------------------------------------------------------------------- /pdf-all.sh: -------------------------------------------------------------------------------- 1 | . pdf-mydoc.sh; . pdf-product1.sh; . pdf-product2.sh; -------------------------------------------------------------------------------- /pdf/mydoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/pdf/mydoc.pdf -------------------------------------------------------------------------------- /pdf/product1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/pdf/product1.pdf -------------------------------------------------------------------------------- /pdf/product2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/pdf/product2.pdf -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # bundle exec jekyll serve 4 | bundler exec jekyll serve 5 | -------------------------------------------------------------------------------- /images/Picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/images/Picture1.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | # git add . 2 | # git status 3 | # git commit -m "content update" 4 | # git push -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /images/29question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/images/29question.png -------------------------------------------------------------------------------- /images/56question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/images/56question.png -------------------------------------------------------------------------------- /images/58question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/images/58question.png -------------------------------------------------------------------------------- /_includes/inline_image.html: -------------------------------------------------------------------------------- 1 | {{include.alt}} 2 | -------------------------------------------------------------------------------- /css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /_tooltips/soccer.html: -------------------------------------------------------------------------------- 1 | --- 2 | doc_id: soccer 3 | product: mydoc 4 | --- 5 | 6 | {{site.data.definitions.soccer}} -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-metadata 4 | _pdf 5 | .DS_Store 6 | .idea 7 | vendor/ 8 | .bundle/ 9 | -------------------------------------------------------------------------------- /_tooltips/football.html: -------------------------------------------------------------------------------- 1 | --- 2 | doc_id: football 3 | product: mydoc 4 | --- 5 | 6 | {{site.data.definitions.football}} -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_includes/callout.html: -------------------------------------------------------------------------------- 1 |
{{include.content}}
2 | -------------------------------------------------------------------------------- /_tooltips/baseball.html: -------------------------------------------------------------------------------- 1 | --- 2 | doc_id: baseball 3 | product: mydoc 4 | --- 5 | 6 | {{site.data.definitions.baseball}} 7 | -------------------------------------------------------------------------------- /css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /_tooltips/basketball.html: -------------------------------------------------------------------------------- 1 | --- 2 | doc_id: basketball 3 | product: mydoc 4 | --- 5 | 6 | {{site.data.definitions.basketball}} 7 | -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /install_gem: -------------------------------------------------------------------------------- 1 | open terminal then run command 2 | sudo apt install ruby-full git 3 | 4 | afet run 5 | sudo gem install bundler -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonadWizard/blog-v2/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /_data/strings.yml: -------------------------------------------------------------------------------- 1 | 2 | 3 | # placed here for translation purposes 4 | search_placeholder_text: search... 5 | search_no_results_text: No results found. 6 | -------------------------------------------------------------------------------- /_includes/note.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/tip.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/important.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/warning.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.associations": { 4 | "*.html": "liquid" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" 3 | search: exclude 4 | --- 5 | 6 | Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct. 7 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '2' 2 | services: 3 | server: 4 | build: 5 | context: . 6 | dockerfile: Dockerfile 7 | image: result/latest 8 | ports: 9 | - "4000:4000" 10 | volumes: 11 | - ".:/src" -------------------------------------------------------------------------------- /_includes/commento.html: -------------------------------------------------------------------------------- 1 | {% unless page.comments == false %} 2 |
3 | 4 | 5 | {% endunless %} 6 | -------------------------------------------------------------------------------- /pages/tags/tag_news.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'News' 3 | tagName: news 4 | search: exclude 5 | permalink: tag_news.html 6 | sidebar: home_sidebar 7 | folder: tags 8 | --- 9 | 10 | {% include taglogic.html %} 11 | 12 | {% include links.html %} 13 | -------------------------------------------------------------------------------- /pages/tags/tag_notes.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Important Notes" 3 | tagName: notes 4 | search: exclude 5 | permalink: tag_notes.html 6 | sidebar: home_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_mobile.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mobile Pages" 3 | search: exclude 4 | tagName: mobile 5 | permalink: tag_mobile.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_resourse.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "প্রয়োজনীয় web link" 3 | tagName: resourse 4 | search: exclude 5 | permalink: tag_resourse.html 6 | sidebar: home_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /_includes/archive.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | type: archive 4 | --- 5 | 6 |
7 |

{{ page.title }}

8 |
9 |
10 | 11 | {{ content }} 12 |
13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /pages/tags/tag_formatting.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Formatting pages" 3 | tagName: formatting 4 | search: exclude 5 | permalink: tag_formatting.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_navigation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Navigation pages" 3 | tagName: navigation 4 | search: exclude 5 | permalink: tag_navigation.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_publishing.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Publishing pages" 3 | tagName: publishing 4 | search: exclude 5 | permalink: tag_publishing.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_collaboration.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Collaboration pages" 3 | tagName: collaboration 4 | search: exclude 5 | permalink: tag_collaboration.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_content_types.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Content types pages" 3 | tagName: content_types 4 | search: exclude 5 | permalink: tag_content_types.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM jekyll/builder 2 | 3 | WORKDIR /tmp 4 | ADD Gemfile /tmp/ 5 | ADD Gemfile.lock /tmp/ 6 | RUN bundle install 7 | 8 | FROM jekyll/jekyll 9 | 10 | VOLUME /src 11 | EXPOSE 4000 12 | 13 | WORKDIR /src 14 | ENTRYPOINT ["jekyll", "serve", "--livereload", "-H", "0.0.0.0"] 15 | -------------------------------------------------------------------------------- /pages/tags/tag_getting_started.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Getting started pages" 3 | tagName: getting_started 4 | search: exclude 5 | permalink: tag_getting_started.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_lib_framework.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: " কিছু Frame_work এবং Libraries " 3 | tagName: lib_framework 4 | search: exclude 5 | permalink: tag_lib_framework.html 6 | sidebar: home_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_single_sourcing.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Single sourcing pages" 3 | tagName: single_sourcing 4 | search: exclude 5 | permalink: tag_single_sourcing.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_troubleshooting.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Troubleshooting pages" 3 | tagName: troubleshooting 4 | search: exclude 5 | permalink: tag_troubleshooting.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | {% include taglogic.html %} 10 | 11 | {% include links.html %} 12 | -------------------------------------------------------------------------------- /pages/tags/tag_special_layouts.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Special layout pages" 3 | tagName: special_layouts 4 | search: exclude 5 | permalink: tag_special_layouts.html 6 | sidebar: mydoc_sidebar 7 | folder: tags 8 | --- 9 | 10 | {% include taglogic.html %} 11 | 12 | {% include links.html %} 13 | -------------------------------------------------------------------------------- /run_update: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # bundle update 4 | bundler update 5 | 6 | # need to add webrick to the Gemfile 7 | bundle add webrick 8 | 9 | # bundle exec jekyll serve 10 | bundler exec jekyll serve 11 | 12 | # PATH=$PATH:/home/monadwiz/.local/share/gem/ruby/3.0.0/bin 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /var/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | apt-get update && \ 3 | apt-get install -y libfontconfig zip npm git apt-transport-https ca-certificates curl openssl && \ 4 | npm i -g npm && \ 5 | npm cache clean -f && \ 6 | npm install -g n && \ 7 | n stable && \ 8 | node --version && \ 9 | npm --version && \ 10 | bundle install -------------------------------------------------------------------------------- /tooltips.json: -------------------------------------------------------------------------------- 1 | --- 2 | layout: null 3 | search: exclude 4 | --- 5 | 6 | { 7 | "entries": 8 | [ 9 | {% for page in site.tooltips %} 10 | { 11 | "doc_id": "{{ page.doc_id }}", 12 | "body": "{{ page.content | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}" 13 | } {% unless forloop.last %},{% endunless %} 14 | {% endfor %} 15 | ] 16 | } 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /_layouts/page_print.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default_print 3 | comments: true 4 | --- 5 |
6 |

{{ page.title }}

7 |
8 | 9 |
10 | 11 | {% if page.summary %} 12 |
{{page.summary}}
13 | {% endif %} 14 | {{ content }} 15 |
16 | -------------------------------------------------------------------------------- /_includes/image.html: -------------------------------------------------------------------------------- 1 |
{% if {{include.url}} %}{% endif %}{{include.alt}}{% if {{include.url}} %}{% endif %}{% if {{include.caption}} %}
{{include.caption}}
{% endif %}
2 | -------------------------------------------------------------------------------- /_posts/2020-10-04-learn-by-kaggle.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'learn ML by kaggle workflow' 3 | categories: jekyll update 4 | permalink: myupdate2.html 5 | tags: [resourse] 6 | --- 7 | 8 | **_kaggle.com_** থেকে নেওয়া এই course instruction follow করে আপনে অনেক সহজে python with ML এর way খুঁজে পাইবেন বলে আমার মনে হয়। 9 | 10 | [এই link এ প্রবেশ করুন](https://www.kaggle.com/learn/overview) 11 | 12 | {% include links.html %} 13 | -------------------------------------------------------------------------------- /pages/mydoc/numpy_advance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: numpy advance 3 | keywords: numpy Bangla Tutorials, bangla numpy, Bangla Python, Blog Bangla, Monad wizard 4 | last_updated: Aug 04 , 2020 5 | # tags: [getting_started] 6 | summary: "Here I try to complete all Advance Numpy Topic with short note. " 7 | sidebar: mydoc_sidebar 8 | permalink: numpy_advance.html 9 | folder: mydoc 10 | --- 11 | 12 | 13 | 14 | # Comming Soon numpy Part 2 15 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | # to publish on github page 4 | gem 'github-pages', group: :jekyll_plugins 5 | 6 | # to publich without github page 7 | #gem "jekyll" 8 | 9 | gem "jekyll", "~> 3.8" 10 | 11 | gem "webrick", "~> 1.7" 12 | 13 | gem "commonmarker", "~> 0.23.5" 14 | 15 | gem "eventmachine", "~> 1.2" 16 | 17 | gem "http_parser.rb", "~> 0.8.0" 18 | 19 | gem "ffi", "~> 1.15" 20 | 21 | gem "unf_ext", "~> 0.0.8" 22 | -------------------------------------------------------------------------------- /pdf-product1.sh: -------------------------------------------------------------------------------- 1 | echo 'Killing all Jekyll instances' 2 | kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}') 3 | clear 4 | 5 | echo "Building PDF-friendly HTML site for Product1 ..."; 6 | bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_product1_pdf.yml; 7 | echo "done"; 8 | 9 | echo "Building the PDF ..."; 10 | prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/product1.pdf; 11 | echo "done"; 12 | -------------------------------------------------------------------------------- /pdf-product2.sh: -------------------------------------------------------------------------------- 1 | echo 'Killing all Jekyll instances' 2 | kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}') 3 | clear 4 | 5 | echo "Building PDF-friendly HTML site for Product2 ..."; 6 | bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_product2_pdf.yml; 7 | echo "done"; 8 | 9 | echo "Building the PDF ..."; 10 | prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/product2.pdf; 11 | echo "done"; 12 | -------------------------------------------------------------------------------- /_includes/custom/getting_started_series_next.html: -------------------------------------------------------------------------------- 1 |

{% assign series_pages = site.tags.series_acme %} 2 | {% for p in pages %} 3 | {% if p.series == "Getting Started" %} 4 | {% assign nextTopic = page.weight | plus: "1" %} 5 | {% if p.weight == nextTopic %} 6 | 7 | {% endif %} 8 | {% endif %} 9 | {% endfor %} 10 |

-------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | image: ruby:2.3 2 | 3 | variables: 4 | JEKYLL_ENV: production 5 | 6 | test: 7 | stage: test 8 | script: 9 | - sh ./var/build.sh 10 | - bundle exec jekyll build -d test 11 | artifacts: 12 | paths: 13 | - test 14 | except: 15 | - master 16 | 17 | pages: 18 | stage: deploy 19 | script: 20 | - sh ./var/build.sh 21 | - bundle exec jekyll build -d public 22 | artifacts: 23 | paths: 24 | - public 25 | only: 26 | - master 27 | -------------------------------------------------------------------------------- /pdfconfigs/config_product1_pdf.yml: -------------------------------------------------------------------------------- 1 | destination: _site/ 2 | url: "http://127.0.0.1:4011" 3 | baseurl: "/product1-pdf" 4 | port: 4011 5 | output: pdf 6 | product: product1 7 | print_title: Product 1 documentation 8 | print_subtitle: version 1.0 9 | output: pdf 10 | defaults: 11 | - 12 | scope: 13 | path: "" 14 | type: "pages" 15 | values: 16 | layout: "page_print" 17 | comments: true 18 | search: true 19 | 20 | pdf_sidebar: product1_sidebar 21 | -------------------------------------------------------------------------------- /pdfconfigs/config_product2_pdf.yml: -------------------------------------------------------------------------------- 1 | destination: _site/ 2 | url: "http://127.0.0.1:4012" 3 | baseurl: "/product2-pdf" 4 | port: 4012 5 | output: pdf 6 | product: product2 7 | print_title: Product 2 documentation 8 | print_subtitle: version 1.0 9 | output: pdf 10 | defaults: 11 | - 12 | scope: 13 | path: "" 14 | type: "pages" 15 | values: 16 | layout: "page_print" 17 | comments: true 18 | search: true 19 | 20 | pdf_sidebar: product2_sidebar 21 | -------------------------------------------------------------------------------- /pdfconfigs/config_mydoc_pdf.yml: -------------------------------------------------------------------------------- 1 | destination: _site/ 2 | url: "http://127.0.0.1:4010" 3 | baseurl: "/mydoc-pdf" 4 | port: 4010 5 | output: pdf 6 | product: mydoc 7 | print_title: Jekyll theme for documentation — mydoc product 8 | print_subtitle: version 6.0 9 | output: pdf 10 | defaults: 11 | - 12 | scope: 13 | path: "" 14 | type: "pages" 15 | values: 16 | layout: "page_print" 17 | comments: true 18 | search: true 19 | 20 | pdf_sidebar: mydoc_sidebar 21 | -------------------------------------------------------------------------------- /_posts/2020-09-10-ml-Glossary.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Machine Learning Glossary' 3 | categories: jekyll update 4 | permalink: myupdate1.html 5 | tags: [resourse] 6 | --- 7 | 8 | **_developers.google.com_** থেকে নেওয়া এই শব্দকোষ এ আপনারা machine learning এবং tensorflow তে ব্যবহার করা হয়েছে এমন বিপুল শব্দ এর সঙ্ঘে পরিচিত হইতে পারবেন এবং সেই সব শব্দের meaning জানতে পারবেন। 9 | 10 | [এই link এ প্রবেশ করুন](https://developers.google.com/machine-learning/glossary/) 11 | 12 | {% include links.html %} 13 | -------------------------------------------------------------------------------- /_data/tags.yml: -------------------------------------------------------------------------------- 1 | # Note: 2 | # If you are using the createtag script, don't leave an blank line at the end of this file. 3 | # In other words, the last line must be the last tag in the allowed-tags list. 4 | allowed-tags: 5 | - getting_started 6 | - content_types 7 | - navigation 8 | - formatting 9 | - publishing 10 | - single_sourcing 11 | - special_layouts 12 | - collaboration 13 | - news 14 | - troubleshooting 15 | - mobile 16 | - notes 17 | - resourse 18 | - lib_framework 19 | -------------------------------------------------------------------------------- /pages/mydoc/pandas_Panels.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pandas Panels 3 | keywords: Pandas Bangla Tutorials, bangla Pandas, Bangla Python, Data Preprocessing Bangla, Monad wizard 4 | last_updated: July 20, 2020 5 | tags: [getting_started] 6 | summary: "I have used this theme for Bangla Python Library that I've worked on as a professional technical writer." 7 | sidebar: mydoc_sidebar 8 | permalink: pandas_Panels.html 9 | folder: mydoc 10 | --- 11 | 12 | # pandas pandas_Panels comming soon 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /_data/sidebars/other.yml: -------------------------------------------------------------------------------- 1 | 2 | # Follow the pattern here for the URLs -- no slash at the beginning, and include the .html. The link here is rendered exactly as is in the Markdown references. 3 | 4 | entries: 5 | - title: other 6 | folders: 7 | 8 | - title: Other Links 9 | folderitems: 10 | 11 | - title: Automated links bookmark 12 | url: /mydoc_hyperlinks.html#automatedlinks 13 | 14 | - title: Bookmark links 15 | url: /mydoc_hyperlinks.html#bookmarklinks 16 | 17 | - title: Some link bookmark 18 | url: /mydoc_pages.html#someIdTag 19 | -------------------------------------------------------------------------------- /_layouts/default_print.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {% include head_print.html %} 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | {{content}} 18 |
19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /_includes/google_analytics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% if site.google_analytics %} 4 | 5 | 6 | {% endif %} -------------------------------------------------------------------------------- /pages/mydoc/pandas_InputAnd_Output.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pandas Input And Output 3 | keywords: Pandas Bangla Tutorials, bangla Pandas, Bangla Python, Data Preprocessing Bangla, Monad wizard 4 | last_updated: July 20, 2020 5 | tags: [getting_started] 6 | summary: "I have used this theme for Bangla Python Library that I've worked on as a professional technical writer." 7 | sidebar: mydoc_sidebar 8 | permalink: pandas_InputAnd_Output.html 9 | folder: mydoc 10 | --- 11 | 12 | # pandas pandas_InputAnd_Output comming soon 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /pages/mydoc/pandas_datesAndTime.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pandas datesAndTime 3 | keywords: Pandas Bangla Tutorials, bangla Pandas, Bangla Python, Data Preprocessing Bangla, Monad wizard 4 | last_updated: July 20, 2020 5 | tags: [getting_started] 6 | summary: "python bangla blog post এর দ্বারা Pandas Library এর concatination, join, merge related method গুলো আলোচিত হয়েছে ।" 7 | sidebar: mydoc_sidebar 8 | permalink: pandas_datesAndTime.html 9 | folder: mydoc 10 | --- 11 | 12 | # pandas pandas_datesAndTime comming soon 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: none 3 | search: exclude 4 | --- 5 | 6 | 7 | 8 | {% for post in site.posts %} 9 | {% unless post.search == "exclude" %} 10 | 11 | {{site.url}}{{post.url}} 12 | 13 | {% endunless %} 14 | {% endfor %} 15 | 16 | 17 | {% for page in site.pages %} 18 | {% unless page.search == "exclude" %} 19 | 20 | {{site.url}}{{ page.url}} 21 | 22 | {% endunless %} 23 | {% endfor %} 24 | -------------------------------------------------------------------------------- /css/boxshadowproperties.css: -------------------------------------------------------------------------------- 1 | /* box-shadow fonts return errors with prince, so extracting here to put in web output only */ 2 | 3 | #search-demo-container ul#results-container { 4 | box-shadow: 2px 3px 2px #dedede; 5 | } 6 | 7 | 8 | hr.shaded { 9 | box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.5); 10 | } 11 | 12 | .videoThumbs img { 13 | box-shadow: 2px 2px 1px #f0f0f0; 14 | } 15 | 16 | .box { 17 | box-shadow: 2px 2px 4px #dedede; 18 | } 19 | 20 | @media (max-width: 1200px) { 21 | .navbar-collapse { 22 | box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /_data/glossary.yml: -------------------------------------------------------------------------------- 1 | jekyll_platform: "Jekyll is a static site generator that builds sites using most modern web technologies." 2 | 3 | fractious: "Like a little mischevious child, full of annoying and constant trouble." 4 | 5 | gratuitous: "Something that is unwarranted and uncouth, like the social equivalent of a flagrant foul." 6 | 7 | haughty: "Proud and flaunting it. Holding your head high up like a snooty, too-good-for-everything rich person." 8 | 9 | impertinent: "Someone acting rude and insensitive to others." 10 | 11 | intrepid: "Brave and courageous especially in a difficult, dangerous situation." -------------------------------------------------------------------------------- /pdf-mydoc.sh: -------------------------------------------------------------------------------- 1 | # Note that .sh scripts work only on Mac. If you're on Windows, install Git Bash and use that as your client. 2 | 3 | echo 'Kill all Jekyll instances' 4 | kill -9 $(ps aux | grep '[j]ekyll' | awk '{print $2}') 5 | clear 6 | 7 | echo "Building PDF-friendly HTML site for Mydoc ..."; 8 | bundle exec jekyll serve --detach --config _config.yml,pdfconfigs/config_mydoc_pdf.yml; 9 | echo "done"; 10 | 11 | echo "Building the PDF ..."; 12 | prince --javascript --input-list=_site/pdfconfigs/prince-list.txt -o pdf/mydoc.pdf; 13 | 14 | echo "Done. Look in the pdf directory to see if it printed successfully." 15 | -------------------------------------------------------------------------------- /_includes/feedback.html: -------------------------------------------------------------------------------- 1 |
  • 2 | {% if site.feedback_text %} 3 | {% assign feedback_text = site.feedback_text %} 4 | {% else %} 5 | {% assign feedback_text = "Feedback" %} 6 | {% endif %} 7 | 8 | {% if site.feedback_link %} 9 | {{feedback_text}} 10 | {% else %} 11 | {{feedback_text}} 12 | {% endif %} 13 |
  • 14 | -------------------------------------------------------------------------------- /pages/mydoc/visualization_matplotlib_pyplot.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: matplotlib essential charts 3 | keywords: matplotlib Bangla Tutorials, bangla matplotlib, Bangla Python, Blog Bangla, Monad wizard 4 | last_updated: Aug 04 , 2020 5 | # tags: [getting_started] 6 | summary: "Here I try to make familler to Basic Matplotlib Topic with short note. " 7 | sidebar: mydoc_sidebar 8 | permalink: visualization_matplotlib_pyplot.html 9 | folder: mydoc 10 | --- 11 | 12 | 13 | [official Doc example gallery ](https://matplotlib.org/3.3.1/gallery/index.html) 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /_includes/custom/usermap.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
    Connect to ADB
    4 |
    5 |
    Download and Build the Starter Kit
    6 |
    7 |
    Take a Tour
    8 |
    9 |
    Load Your Widgets
    10 |
    11 |
    Query for Something
    12 |
    13 | 14 |
    15 | -------------------------------------------------------------------------------- /js/jquery.ba-throttle-debounce.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery throttle / debounce - v1.1 - 3/7/2010 3 | * http://benalman.com/projects/jquery-throttle-debounce-plugin/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this); -------------------------------------------------------------------------------- /_includes/toc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 21 |
    22 | -------------------------------------------------------------------------------- /_includes/custom/getting_started_series.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 18 |
    19 |
    -------------------------------------------------------------------------------- /search.json: -------------------------------------------------------------------------------- 1 | --- 2 | title: search 3 | layout: none 4 | search: exclude 5 | --- 6 | 7 | [ 8 | {% for page in site.pages %} 9 | {% unless page.search == "exclude" %} 10 | { 11 | "title": "{{ page.title | escape }}", 12 | "tags": "{{ page.tags }}", 13 | "keywords": "{{page.keywords}}", 14 | "url": "{{ page.url | remove: "/"}}", 15 | "summary": "{{page.summary | strip }}" 16 | } 17 | {% unless forloop.last and site.posts.size < 1 %},{% endunless %} 18 | {% endunless %} 19 | {% endfor %} 20 | 21 | {% for post in site.posts %} 22 | 23 | { 24 | "title": "{{ post.title | escape }}", 25 | "tags": "{{ post.tags }}", 26 | "keywords": "{{post.keywords}}", 27 | "url": "{{ post.url | remove: "/" }}", 28 | "summary": "{{post.summary | strip }}" 29 | } 30 | {% unless forloop.last %},{% endunless %} 31 | {% endfor %} 32 | 33 | ] 34 | -------------------------------------------------------------------------------- /_includes/custom/series_acme.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 18 |
    19 |
    -------------------------------------------------------------------------------- /images/company_logo.svg: -------------------------------------------------------------------------------- 1 | MW_logo_in_San_Diego_State_colors2 2 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | 24 | 25 | -------------------------------------------------------------------------------- /_data/alerts.yml: -------------------------------------------------------------------------------- 1 | tip: '