-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsome-fall-cleaning.html
More file actions
148 lines (114 loc) · 15.3 KB
/
Copy pathsome-fall-cleaning.html
File metadata and controls
148 lines (114 loc) · 15.3 KB
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
<!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="/theme/stylesheet/style.min.css">
<link rel="stylesheet" type="text/css" href="/theme/pygments/github.min.css">
<link rel="stylesheet" type="text/css" href="/theme/font-awesome/css/font-awesome.min.css">
<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="" />
<meta name="author" content="Kaan Divringi" />
<meta name="description" content="It's been awhile and I've been busy, if not necessarily on this blog. A quick rundown: Projects Simulation Notebook: You can see the video from my portfolio. This is something that is tremendously exciting to me but I am having trouble finding the time to develop it further or even market it. It's been a busy year! Krypto: Recently I've been brushing up on my Javascript (see the Books section) so I can be more confident in presenting dynamic content on the web. This is the first project that I've used some of the object oriented features of the language. The code is a bit disorganized but it was some good practice in building something new in a somewhat lesser known language for me. I hope to be more confident building interactivity into some webpages with what I've learned (see Bokeh section below). Kaggle: There is a Kaggle dataset that has taken my fancy of late: The SEPTA On Time Performance Dataset. Right now I have a very basic kernel and a forum post in which I confuse days for hours but more is coming! Books I'm a bit weird in that I like reading not just books but programming books for fun. A few notables from my plate: Fluent Python: Excellent book, just excellent. I know Python and have been working with it for some number of years. This book, however, opened my eyes to some of the inner workings and underlying design decisions that make Python such a pleasure to work with. Areas of the language that seemed obtuse to me before were presented with opinionated context and through the gradual buildup I understood concepts that I previously found confusing. Also, more importantly, I got valuable context on when 'not' to use advanced features, avoiding the "Everything looks like a nail" situation. Great intermediate Python book. Algorithms to Live By: Self-help with programming? Such an odd but delightful concept but it makes sense that we can apply all of the research done in computer algorithms to our day to day lives. The best organization system is a pile (LRU Cache). You can vastly improve your predictions of the future by first selecting one of three probability distributions. Being in a rut in life is just a local minima that can be overcome with an injection of randomness. I cannot overstate how much I liked this book. Eloquent Javascript: I got this in the humble programming bundle. Great supposedly introductory book that quickly ramps up in difficulty. I will go back and review certain of the chapters but I highly enjoyed it. Sublime Text Power User: I've had the paid version of SublimeText for some time now but I've never really put it through it's paces. I hope to fully come up to speed with this book + video lectures. Links Modern Pandas: Goes beyond the basics and presents how to use Pandas in a thoughtful, pandorable way. A nice intermediate tutorial Brandon Rhodes Tutorials: An excellent lecturer, clear explanations and good presentations. I found the Pandas and SQL tutorials quite nice for brushing up and becoming cleaner with tools that I already know. Bokeh: I find the architecture of this young project fascinating and powerful. Really looking forward to getting into it more. At my work, where programming is not a major focus, the static but interactive html documents it produces have been killer for me. I used to think that you needed a backend server to have most types of widgets/interactivity but it looks like you can also accomplish this by using more Javascript. A major motivator in my learning of Javascript more deeply. Linear Regression With Python: Nothing too earth shattering here but I highly appreciated the explanation of those other terms from a regression analysis in statsmodels :)" />
<meta name="keywords" content="">
<meta property="og:site_name" content="My Occasional Mind"/>
<meta property="og:title" content="Some Fall Cleaning"/>
<meta property="og:description" content="It's been awhile and I've been busy, if not necessarily on this blog. A quick rundown: Projects Simulation Notebook: You can see the video from my portfolio. This is something that is tremendously exciting to me but I am having trouble finding the time to develop it further or even market it. It's been a busy year! Krypto: Recently I've been brushing up on my Javascript (see the Books section) so I can be more confident in presenting dynamic content on the web. This is the first project that I've used some of the object oriented features of the language. The code is a bit disorganized but it was some good practice in building something new in a somewhat lesser known language for me. I hope to be more confident building interactivity into some webpages with what I've learned (see Bokeh section below). Kaggle: There is a Kaggle dataset that has taken my fancy of late: The SEPTA On Time Performance Dataset. Right now I have a very basic kernel and a forum post in which I confuse days for hours but more is coming! Books I'm a bit weird in that I like reading not just books but programming books for fun. A few notables from my plate: Fluent Python: Excellent book, just excellent. I know Python and have been working with it for some number of years. This book, however, opened my eyes to some of the inner workings and underlying design decisions that make Python such a pleasure to work with. Areas of the language that seemed obtuse to me before were presented with opinionated context and through the gradual buildup I understood concepts that I previously found confusing. Also, more importantly, I got valuable context on when 'not' to use advanced features, avoiding the "Everything looks like a nail" situation. Great intermediate Python book. Algorithms to Live By: Self-help with programming? Such an odd but delightful concept but it makes sense that we can apply all of the research done in computer algorithms to our day to day lives. The best organization system is a pile (LRU Cache). You can vastly improve your predictions of the future by first selecting one of three probability distributions. Being in a rut in life is just a local minima that can be overcome with an injection of randomness. I cannot overstate how much I liked this book. Eloquent Javascript: I got this in the humble programming bundle. Great supposedly introductory book that quickly ramps up in difficulty. I will go back and review certain of the chapters but I highly enjoyed it. Sublime Text Power User: I've had the paid version of SublimeText for some time now but I've never really put it through it's paces. I hope to fully come up to speed with this book + video lectures. Links Modern Pandas: Goes beyond the basics and presents how to use Pandas in a thoughtful, pandorable way. A nice intermediate tutorial Brandon Rhodes Tutorials: An excellent lecturer, clear explanations and good presentations. I found the Pandas and SQL tutorials quite nice for brushing up and becoming cleaner with tools that I already know. Bokeh: I find the architecture of this young project fascinating and powerful. Really looking forward to getting into it more. At my work, where programming is not a major focus, the static but interactive html documents it produces have been killer for me. I used to think that you needed a backend server to have most types of widgets/interactivity but it looks like you can also accomplish this by using more Javascript. A major motivator in my learning of Javascript more deeply. Linear Regression With Python: Nothing too earth shattering here but I highly appreciated the explanation of those other terms from a regression analysis in statsmodels :)"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:url" content="/some-fall-cleaning.html"/>
<meta property="og:type" content="article"/>
<meta property="article:published_time" content="2016-09-14 23:00:00-07:00"/>
<meta property="article:modified_time" content=""/>
<meta property="article:author" content="/author/kaan-divringi.html">
<meta property="article:section" content="misc"/>
<meta property="og:image" content="/images/me.jpg">
<title>My Occasional Mind – Some Fall Cleaning</title>
</head>
<body>
<aside>
<div>
<a href="">
<img src="/images/me.jpg" alt="" title="">
</a>
<h1><a href=""></a></h1>
<p>I have many curiousities and excitations</p>
<nav>
<ul class="list">
<li><a href="/pages/about-me.html#about-me">About Me</a></li>
<li><a href="/pages/my-portfolio.html#my-portfolio">My Portfolio</a></li>
<li><a href="/krypto/" target="_blank">Play Krypto!</a></li>
<li><a href="/d3-solar/" target="_blank">Explore Space!</a></li>
</ul>
</nav>
<ul class="social">
<li><a class="sc-Github" href="https://github.com/kdivringi" target="_blank"><i class="fa fa-Github"></i></a></li>
<li><a class="sc-LinkedIn" href="https://www.linkedin.com/in/kaandivringi" target="_blank"><i class="fa fa-LinkedIn"></i></a></li>
</ul>
</div>
</aside>
<main>
<article class="single">
<header>
<h1 id="some-fall-cleaning">Some Fall Cleaning</h1>
<p>
Posted on Wed 14 September 2016 in <a href="/category/misc.html">misc</a>
</p>
</header>
<div>
<p>It's been awhile and I've been busy, if not necessarily on this blog. A quick rundown:</p>
<h1>Projects</h1>
<ul>
<li>Simulation Notebook: You can see the <a href="https://www.youtube.com/watch?v=kXDiK9ojJvo">video</a> from my portfolio. This is something that is tremendously exciting to me but I am having trouble finding the time to develop it further or even market it. It's been a busy year!</li>
<li><a href="/krypto/">Krypto</a>: Recently I've been brushing up on my Javascript (see the Books section) so I can be more confident in presenting dynamic content on the web. This is the first project that I've used some of the object oriented features of the language. The code is a bit disorganized but it was some good practice in building something new in a somewhat lesser known language for me. I hope to be more confident building interactivity into some webpages with what I've learned (see Bokeh section below).</li>
<li>Kaggle: There is a Kaggle dataset that has taken my fancy of late: <a href="https://www.kaggle.com/septa/on-time-performance">The SEPTA On Time Performance Dataset</a>. Right now I have a very basic kernel and a forum post in which I confuse days for hours but more is coming!</li>
</ul>
<h1>Books</h1>
<p>I'm a bit weird in that I like reading not just books but programming books for fun. A few notables from my plate:</p>
<ul>
<li><a href="http://amzn.to/2cZI18W">Fluent Python</a>: <em>Excellent</em> book, just excellent. I know Python and have been working with it for some number of years. This book, however, opened my eyes to some of the inner workings and underlying design decisions that make Python such a pleasure to work with. Areas of the language that seemed obtuse to me before were presented with opinionated context and through the gradual buildup I understood concepts that I previously found confusing. Also, more importantly, I got valuable context on when 'not' to use advanced features, avoiding the "Everything looks like a nail" situation. Great intermediate Python book.</li>
<li><a href="http://amzn.to/2d1BwWi">Algorithms to Live By</a>: Self-help with programming? Such an odd but delightful concept but it makes sense that we can apply all of the research done in computer algorithms to our day to day lives. The best organization system is a pile (LRU Cache). You can vastly improve your predictions of the future by first selecting one of three probability distributions. Being in a rut in life is just a local minima that can be overcome with an injection of randomness. I cannot overstate how much I liked this book.</li>
<li><a href="http://amzn.to/2cZILed">Eloquent Javascript</a>: I got this in the humble programming bundle. Great supposedly introductory book that quickly ramps up in difficulty. I will go back and review certain of the chapters but I highly enjoyed it.</li>
<li><a href="https://sublimetextbook.com/">Sublime Text Power User</a>: I've had the paid version of SublimeText for some time now but I've never really put it through it's paces. I hope to fully come up to speed with this book + video lectures.</li>
</ul>
<h1>Links</h1>
<ul>
<li><a href="http://tomaugspurger.github.io/modern-1.html">Modern Pandas</a>: Goes beyond the basics and presents how to use Pandas in a thoughtful, <em>pandorable</em> way. A nice intermediate tutorial</li>
<li><a href="http://rhodesmill.org/brandon/">Brandon Rhodes Tutorials</a>: An excellent lecturer, clear explanations and good presentations. I found the Pandas and SQL tutorials quite nice for brushing up and becoming cleaner with tools that I already know.</li>
<li><a href="http://bokeh.pydata.org/en/latest/">Bokeh</a>: I find the architecture of this young project fascinating and powerful. Really looking forward to getting into it more. At my work, where programming is not a major focus, the static but interactive html documents it produces have been killer for me. I used to think that you needed a backend server to have most types of widgets/interactivity but <a href="https://www.kaggle.com/pjbutcher/d/berkeleyearth/climate-change-earth-surface-temperature-data/interactive-visualization-with-python?forumMessageId=131220#131220">it looks like you can also accomplish this by using more Javascript</a>. A major motivator in my learning of Javascript more deeply.</li>
<li><a href="http://connor-johnson.com/2014/02/18/linear-regression-with-python/">Linear Regression With Python</a>: Nothing too earth shattering here but I highly appreciated the explanation of those other terms from a regression analysis in statsmodels :)</li>
</ul>
</div>
<div class="tag-cloud">
<p>
</p>
</div>
</article>
<footer>
<p>© Kaan Divringi </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> </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-84301076-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Blog",
"name": " My Occasional Mind ",
"url" : "",
"image": "/images/me.jpg",
"description": ""
}
</script>
</body>
</html>