Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f460e83

Browse files
docs updating
1 parent 8c3c6b9 commit f460e83

File tree

17 files changed

+198
-48
lines changed

17 files changed

+198
-48
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
I"o{"source"=>"/home/codeperfectplus/Documents/PyContributors/AlgorithmsAndDataStructure/docs", "destination"=>"/home/codeperfectplus/Documents/PyContributors/AlgorithmsAndDataStructure/docs/_site", "collections_dir"=>"", "cache_dir"=>".jekyll-cache", "plugins_dir"=>"_plugins", "layouts_dir"=>"_layouts", "data_dir"=>"_data", "includes_dir"=>"_includes", "collections"=>{"posts"=>{"output"=>true, "permalink"=>"/:categories/:year/:month/:day/:title:output_ext"}}, "safe"=>false, "include"=>[".htaccess"], "exclude"=>[".sass-cache", ".jekyll-cache", "gemfiles", "Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"], "keep_files"=>[".git", ".svn"], "encoding"=>"utf-8", "markdown_ext"=>"markdown,mkdown,mkdn,mkd,md", "strict_front_matter"=>false, "show_drafts"=>nil, "limit_posts"=>0, "future"=>false, "unpublished"=>false, "whitelist"=>[], "plugins"=>[], "markdown"=>"kramdown", "highlighter"=>"rouge", "lsi"=>false, "excerpt_separator"=>"\n\n", "incremental"=>false, "detach"=>false, "port"=>"4000", "host"=>"127.0.0.1", "baseurl"=>nil, "show_dir_listing"=>false, "permalink"=>"date", "paginate_path"=>"/page:num", "timezone"=>nil, "quiet"=>false, "verbose"=>false, "defaults"=>[], "liquid"=>{"error_mode"=>"warn", "strict_filters"=>false, "strict_variables"=>false}, "kramdown"=>{"auto_ids"=>true, "toc_levels"=>[1, 2, 3, 4, 5, 6], "entity_output"=>"as_char", "smart_quotes"=>"lsquo,rsquo,ldquo,rdquo", "input"=>"GFM", "hard_wrap"=>false, "guess_lang"=>true, "footnote_nr"=>1, "show_warnings"=>false}, "livereload_port"=>35729, "serving"=>true, "watch"=>true, "url"=>"http://localhost:4000"}:ET
1+
I"�{"source"=>"/home/codeperfectplus/Documents/PyContributors/AlgorithmsAndDataStructure/docs", "destination"=>"/home/codeperfectplus/Documents/PyContributors/AlgorithmsAndDataStructure/docs/_site", "collections_dir"=>"", "cache_dir"=>".jekyll-cache", "plugins_dir"=>"_plugins", "layouts_dir"=>"_layouts", "data_dir"=>"_data", "includes_dir"=>"_includes", "collections"=>{"posts"=>{"output"=>true, "permalink"=>"/:categories/:year/:month/:day/:title:output_ext"}}, "safe"=>false, "include"=>[".htaccess"], "exclude"=>[".sass-cache", ".jekyll-cache", "gemfiles", "Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"], "keep_files"=>[".git", ".svn"], "encoding"=>"utf-8", "markdown_ext"=>"markdown,mkdown,mkdn,mkd,md", "strict_front_matter"=>false, "show_drafts"=>nil, "limit_posts"=>0, "future"=>false, "unpublished"=>false, "whitelist"=>[], "plugins"=>[], "markdown"=>"kramdown", "highlighter"=>"rouge", "lsi"=>false, "excerpt_separator"=>"\n\n", "incremental"=>false, "detach"=>false, "port"=>"4000", "host"=>"127.0.0.1", "baseurl"=>nil, "show_dir_listing"=>false, "permalink"=>"date", "paginate_path"=>"/page:num", "timezone"=>nil, "quiet"=>false, "verbose"=>false, "defaults"=>[], "liquid"=>{"error_mode"=>"warn", "strict_filters"=>false, "strict_variables"=>false}, "kramdown"=>{"auto_ids"=>true, "toc_levels"=>[1, 2, 3, 4, 5, 6], "entity_output"=>"as_char", "smart_quotes"=>"lsquo,rsquo,ldquo,rdquo", "input"=>"GFM", "hard_wrap"=>false, "guess_lang"=>true, "footnote_nr"=>1, "show_warnings"=>false}, "url"=>"http://localhost:4000", "site"=>"https://py-contributors.github.io", "livereload_port"=>35729, "serving"=>true, "watch"=>true}:ET

‎docs/_config.yml‎

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
1-
paginate : 5
2-
paginate_path : "/updates/page:num/"
31
url: "https://py-contributors.github.io" # the base hostname & protocol for your site
4-
plugins:
5-
- jekyll-sitemap
6-
- jekyll-paginate
7-
- jekyll-feed
82
site : https://py-contributors.github.io

‎docs/_data/algorithm.csv‎

Lines changed: 0 additions & 2 deletions
This file was deleted.

‎docs/_data/algorithm.json‎

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"algo_type": "Sorting Algorithm",
4+
"algo_link": "sortingalgorithm/",
5+
"algo_description" : "In computer science, a sorting algorithm is an algorithm that puts elements of a list in a certain order. The most frequently used orders are numerical order and lexicographical order. Efficient sorting is important for optimizing the efficiency of other algorithms (such as search and merge algorithms) that require input data to be in sorted lists. Sorting is also often useful for canonicalizing data and for producing human-readable output. More formally, the output of any sorting algorithm must satisfy two conditions:"
6+
},
7+
{
8+
"algo_type":"Searching Algorithm",
9+
"algo_link":"searchingalgorithm/",
10+
"algo_description":""
11+
},
12+
{
13+
"algo_type": "BackTracking Algorithm",
14+
"algo_link": "backtracking/",
15+
"algo_description" : ""
16+
},
17+
{
18+
"algo_type" : "Divide and Conquer",
19+
"algo_link" : "divideandconquer/",
20+
"algo_description" : ""
21+
},
22+
{
23+
"algo_type" : "Dynamic Programming",
24+
"algo_link" : "dynamicprogramming/",
25+
"algo_description" : ""
26+
},
27+
{
28+
"algo_type" : "Machine Learning",
29+
"algo_link" : "machinelearning/",
30+
"algo_description" : ""
31+
}
32+
]

‎docs/_data/datastructure.csv‎

Lines changed: 0 additions & 2 deletions
This file was deleted.

‎docs/_data/datastructure.json‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"ds_name" : "Array",
4+
"ds_link" : "",
5+
"ds_description": ""
6+
},
7+
{
8+
"ds_name": "Linked List",
9+
"ds_link" : "",
10+
"ds_description" : ""
11+
}
12+
]

‎docs/_data/sorting.json‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"algo_name": "Bubble Sort",
4+
"algo_link": "bubblesort.html",
5+
"algo_description" : ""
6+
}
7+
]

‎docs/_includes/_layouts/default.html‎

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<!-- Global site tag (gtag.js) - Google Analytics -->
8+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167457248-3"></script>
9+
<script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());gtag('config', 'UA-167457248-3');</script>
10+
<title>{{ page.title }}</title>
11+
<link rel="icon" href="/assets/img/logo/logo.png" type="image/gif" sizes="16x16">
12+
<!-- link to main stylesheet -->
13+
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
14+
<!-- Fontawesome -->
15+
<script src="https://kit.fontawesome.com/83ea256c90.js" crossorigin="anonymous"></script>
16+
<!-- Bootstrap CDN -->
17+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
18+
<!-- Google Fonts -->
19+
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&display=swap" rel="stylesheet">
20+
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700&display=swap" rel="stylesheet">
21+
<!-- Masonry -->
22+
<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
23+
<!-- Animate.css -->
24+
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
25+
<!-- Meta tags -->
26+
<meta name="title" content="{{ page.title }}">
27+
<meta name="description" content="{{page.description}}">
28+
<meta name="author" content="Deepak Raj">
29+
<!-- Open Graph / Facebook -->
30+
<meta property="og:type" content="website">
31+
<meta property="og:url" content="{{site.url}}{{page.url}}">
32+
<meta property="og:title" content="{{page.title}}">
33+
<meta property="og:description" content="{% if page.description %}{{page.description}} {% else %}A open Source community for Python, Machine Learning and Artificial intelligence. Open-source contributions are welcome.{% endif %}">
34+
<meta property="og:image" content="{% if page.image %}{{page.image}}{% else %}https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940{% endif %}">
35+
<!-- Twitter -->
36+
<meta property="twitter:card" content="summary_large_image">
37+
<meta property="twitter:url" content="{{site.url}}{{page.url}}">
38+
<meta property="twitter:title" content="{{page.title}}">
39+
<meta property="twitter:description" content="{{page.description}}">
40+
<meta property="twitter:image" content="{% if page.image %}{{page.image}}{% else %}https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940{% endif %}">
41+
</head>
42+
<body>
43+
{% include navbar.html %}
44+
<div class="container marginStyle bdrRadius">
45+
<!-- Page content here -->
46+
{{ content }}
47+
</div><!-- /.container -->
48+
{% include footer.html %}
49+
<!-- Bootstrap script-->
50+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
51+
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
52+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
53+
<!-- Scroll reveal -->
54+
<script src="https://unpkg.com/scrollreveal"></script>
55+
<!--custom js-->
56+
<script src="/assets/js/main.js"></script>
57+
<script>
58+
ScrollReveal().reveal('.blockquote', {
59+
interval: 100, mobile: true, viewFactor: 0.3, delay:100
60+
});
61+
</script>
62+
</body>
63+
</html>

‎docs/_includes/sidebar.html‎

Lines changed: 0 additions & 12 deletions
This file was deleted.

‎docs/_layouts/blog.html‎

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Required meta tags -->
5+
<meta charset="utf-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<!-- Global site tag (gtag.js) - Google Analytics -->
8+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167457248-3"></script>
9+
<script>
10+
window.dataLayer = window.dataLayer || [];
11+
function gtag(){dataLayer.push(arguments);}
12+
gtag('js', new Date());
13+
gtag('config', 'UA-167457248-3');
14+
</script>
15+
16+
<title>{{ page.title }}</title>
17+
<link rel="icon" href="/assets/img/logo/logo.png" type="image/gif" sizes="16x16">
18+
<script src="https://kit.fontawesome.com/83ea256c90.js" crossorigin="anonymous"></script>
19+
<!-- Bootstrap CDN -->
20+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
21+
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
22+
23+
<!-- Google Fonts -->
24+
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&display=swap" rel="stylesheet">
25+
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700&display=swap" rel="stylesheet">
26+
27+
<link rel="stylesheet" href="https://raw.githubusercontent.com/googlearchive/code-prettify/master/styles/sunburst.css">
28+
<!-- Meta tags -->
29+
<meta name="title" content="{{ page.title }}">
30+
<meta name="description" content="{{page.description}}">
31+
<meta name="author" content="Deepak Raj">
32+
<!-- Open Graph / Facebook -->
33+
<meta property="og:type" content="website">
34+
<meta property="og:url" content="{{site.url}}{{page.url}}">
35+
<meta property="og:title" content="{{page.title}}">
36+
<meta property="og:description" content="{% if page.description %}{{page.description}} {% else %}A open Source community for Python, Machine Learning and Artificial intelligence. Open-source contributions are welcome.{% endif %}">
37+
<meta property="og:image" content="{% if page.image %}{{page.image}}{% else %}https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940{% endif %}">
38+
<!-- Twitter -->
39+
<meta property="twitter:card" content="summary_large_image">
40+
<meta property="twitter:url" content="{{site.url}}{{page.url}}">
41+
<meta property="twitter:title" content="{{page.title}}">
42+
<meta property="twitter:description" content="{{page.description}}">
43+
<meta property="twitter:image" content="https://images.pexels.com/photos/3785927/pexels-photo-3785927.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
44+
</head>
45+
<body>
46+
{% include navbar.html %}
47+
<div class="container mt-3 bg-white py-3 pMd px-4 bdrRadius">
48+
<!-- Page content here -->
49+
{{ content }}
50+
</div><!-- /.container -->
51+
{% include footer.html %}
52+
<!-- Bootstrap script-->
53+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
55+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
56+
</body>
57+
</html>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /