-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (138 loc) · 6.75 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="http://saurabhsharma.io/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="http://saurabhsharma.io/theme/pygments/monokai.min.css">
<link rel="stylesheet" type="text/css" href="http://saurabhsharma.io/theme/font-awesome/css/font-awesome.min.css">
<link href="http://saurabhsharma.io/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Saurabh Sharma's Blog Atom">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow" />
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#333">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="author" content="Saurabh Sharma" />
<meta name="description" content="My thoughts and writings on things I care about." />
<meta property="og:site_name" content="Saurabh Sharma's Blog"/>
<meta property="og:type" content="blog"/>
<meta property="og:title" content="Saurabh Sharma's Blog"/>
<meta property="og:description" content="My thoughts and writings on things I care about."/>
<meta property="og:locale" content="en_US"/>
<meta property="og:url" content="http://saurabhsharma.io"/>
<meta property="og:image" content="https://s3.ap-south-1.amazonaws.com/saurabhsharma.io/images/me.jpg">
<title>Saurabh Sharma's Blog</title>
</head>
<body>
<aside>
<div>
<a href="http://saurabhsharma.io">
<img src="https://s3.ap-south-1.amazonaws.com/saurabhsharma.io/images/me.jpg" alt="Saurabh Sharma" title="Saurabh Sharma">
</a>
<h1><a href="http://saurabhsharma.io">Saurabh Sharma</a></h1>
<p>Software Developer</p>
<nav>
<ul class="list">
<li><a href="http://saurabhsharma.io/pages/about-me/#about-me">About Me</a></li>
<li><a href="http://saurabhsharma.io/pages/contact/#contact">Contact</a></li>
</ul>
</nav>
<ul class="social">
<li><a class="sc-github" href="https://github.com/d3prof3t" target="_blank"><i class="fa fa-github"></i></a></li>
<li><a class="sc-twitter-square" href="https://twitter.com/saurabhpysharma" target="_blank"><i class="fa fa-twitter-square"></i></a></li>
<li><a class="sc-linkedin" href="https://linkedin.com/in/saurabhpysharma" target="_blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</aside>
<main>
<nav>
<a href="http://saurabhsharma.io"> Home
</a>
<a href="/archives.html">Archives</a>
<a href="/categories.html">Categories</a>
<a href="/tags.html">Tags</a>
<a href="http://saurabhsharma.io/feeds/all.atom.xml"> Atom
</a>
</nav>
<article>
<header>
<h2><a href="http://saurabhsharma.io/posts/2017/05/iterable-streams-using-python-generators#iterable-streams-using-python-generators">Using Iterable Streams for Efficient Data Processing via Python Generators</a></h2>
<p>
Posted on 2017-05-27 in <a href="http://saurabhsharma.io/category/python-data-processing.html">Python, Data Processing</a>
• Tagged with
<a href="http://saurabhsharma.io/tag/iterable-streams.html">iterable-streams</a>, <a href="http://saurabhsharma.io/tag/iterators-generators.html">iterators-generators</a>, <a href="http://saurabhsharma.io/tag/efficient-data-processing.html">efficient-data-processing</a>
</p>
</header>
<div>
<p>A brief on how to treat huge datasets as streams for efficient processing</p>
<br>
<a class="btn" href="http://saurabhsharma.io/posts/2017/05/iterable-streams-using-python-generators#iterable-streams-using-python-generators"> Continue reading
</a>
</div>
<hr />
</article>
<article>
<header>
<h2><a href="http://saurabhsharma.io/posts/2017/03/pass-by-value-or-pass-by-reference#pass-by-value-or-pass-by-reference">Why Isn't Python Pass-By-Value or Pass-By-Reference?</a></h2>
<p>
Posted on 2017-03-28 in <a href="http://saurabhsharma.io/category/python-functional-programming.html">Python, Functional Programming</a>
• Tagged with
<a href="http://saurabhsharma.io/tag/python-functions.html">python-functions</a>
</p>
</header>
<div>
<p>A brief on how Python evaluates function calling strategies.</p>
<br>
<a class="btn" href="http://saurabhsharma.io/posts/2017/03/pass-by-value-or-pass-by-reference#pass-by-value-or-pass-by-reference"> Continue reading
</a>
</div>
</article>
<div class="pagination">
</div>
<footer>
<p>
© Saurabh Sharma 2017 - This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>
</p>
<p> Powered by <a href="http://getpelican.com" target="_blank">Pelican</a> - <a href="https://github.com/alexandrevicenzi/flex" target="_blank">Flex</a> theme by <a href="http://alexandrevicenzi.com" target="_blank">Alexandre Vicenzi</a>
</p><p>
<a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/"
target="_blank">
<img alt="Creative Commons License"
title="Creative Commons License"
style="border-width:0"
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png"
width="80"
height="15"/>
</a>
</p> </footer>
</main>
<!-- Google Analytics -->
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-96532127-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-58d7bd0f1d7e3461" async="async"></script>
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Blog",
"name": " Saurabh Sharma's Blog ",
"url" : "http://saurabhsharma.io",
"image": "https://s3.ap-south-1.amazonaws.com/saurabhsharma.io/images/me.jpg",
"description": "My thoughts and writings on things I care about."
}
</script>
</body>
</html>