-
Notifications
You must be signed in to change notification settings - Fork 0
/
index19.html
307 lines (284 loc) · 18.1 KB
/
index19.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns# fb: https://www.facebook.com/2008/fbml">
<head>
<title>Grey Panther's Place</title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://www.grey-panther.net/favicon.ico" rel="icon">
<!--[if IE]><link rel="shortcut icon" href="https://www.grey-panther.net/favicon.ico"><![endif]-->
<link rel="canonical" href="https://www.grey-panther.net">
<meta name="author" content="Grey Panther" />
<!-- Open Graph tags -->
<meta property="og:site_name" content="Grey Panther's Place" />
<meta property="og:type" content="website"/>
<meta property="og:title" content="Grey Panther's Place"/>
<meta property="og:url" content="https://www.grey-panther.net"/>
<meta property="og:description" content="Grey Panther's Place"/>
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@cdman83">
<meta name="twitter:creator" content="@cdman83">
<meta name="twitter:domain" content="https://www.grey-panther.net">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://www.grey-panther.net/theme/css/bootstrap.superhero.min.css" type="text/css"/>
<link href="https://www.grey-panther.net/theme/css/font-awesome.min.css" rel="stylesheet">
<link href="https://www.grey-panther.net/theme/css/pygments/solarizeddark.css" rel="stylesheet">
<link href="https://www.grey-panther.net/theme/css/typogrify.css" rel="stylesheet">
<link rel="stylesheet" href="https://www.grey-panther.net/theme/css/style.css" type="text/css"/>
<link href="https://www.grey-panther.net/feeds/posts/default" type="application/atom+xml" rel="alternate"
title="Grey Panther's Place ATOM Feed"/>
<link href="https://www.grey-panther.net/feeds/rss" type="application/rss+xml" rel="alternate"
title="Grey Panther's Place RSS Feed"/>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="https://www.grey-panther.net/" class="navbar-brand">
Grey Panther's Place </a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="/">About</a></li>
<li><a href="/category/blog.html">Blog</a></li>
<li><a href="/pages/projects.html">Projects</a></li>
<li><a href="/pages/site-map.html">More</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://www.grey-panther.net/archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</div> <!-- /.navbar -->
<!-- Banner -->
<!-- End Banner -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-9">
<article>
<h2><a href="https://www.grey-panther.net/2009/10/using-tarinputstream-from-java.html">Using TarInputStream from Java</a></h2>
<div class="summary"><p><a href="http://lh4.ggpht.com/_hrvCBhtWhJ4/St85BWq7yJI/AAAAAAAAB9Y/ZNz-TVsKCxs/s1600-h/994941366_af693049f1_o%5B2%5D.png"><img alt="994941366_af693049f1_o" src="http://lh6.ggpht.com/_hrvCBhtWhJ4/St85BzIfuwI/AAAAAAAAB9c/K96xgYTo9uc/994941366_af693049f1_o_thumb.png?imgmax=800" title="994941366_af693049f1_o" /></a>
Recently I had to parse trough a bunch of logs, scattered in
subdirectories and different types of archives (tar, bz and gz). My
first thought was of course Perl (since it is <em>the</em> language for parsing
quasi-freeform text), however I didn’t have “streaming” implementation
for the archive modules, which ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/using-tarinputstream-from-java.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/avalonix-wireless-camera-review.html">Avalonix Wireless Camera review</a></h2>
<div class="summary"><p>A <a href="http://www.security-cameras-cctv.com">wireless security camera</a> is
quite an interesting piece of technical equipment, which – the
conventional wisdom holds – can deter people from breaking the rules
(whatever those might be) or help after the fact demonstrate “who done
it”. Their real value is however questionable. For one, they can become
a prime ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/avalonix-wireless-camera-review.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/grooveshark.html">Grooveshark</a></h2>
<div class="summary"><p><a href="http://lh4.ggpht.com/_hrvCBhtWhJ4/Ss9O19BBT0I/AAAAAAAAB9E/Ew6Dqs82Za4/s1600-h/2454524589_b86461507f_b%5B2%5D.jpg"><img alt="2454524589_b86461507f_b" src="http://lh4.ggpht.com/_hrvCBhtWhJ4/Ss9O2KdI41I/AAAAAAAAB9I/o_xoEq2ENF8/2454524589_b86461507f_b_thumb.jpg?imgmax=800" title="2454524589_b86461507f_b" /></a><em>Disclaimer:
I received no compensation for this review. All the opinions are my own.</em></p>
<p>There are a couple of actions you can do with music you have on your computer:</p>
<ul>
<li>You can listen to an arbitrary song from your library</li>
<li>You can jump in the song you are listening to ...</li></ul>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/grooveshark.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/sony-ericsson-satio.html">Sony Ericsson Satio</a></h2>
<div class="summary"><p>I admit: I didn’t jump on the “hip new phone with all kinds of bells and
whistles” bandwagon yet. I’m very content with my small, sturdy Nokia.
However one has to admit that there is a certain kind of wow effect when
one looks at phones like the ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/sony-ericsson-satio.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/landairsea-systems-gps-tracking.html">LandAirSea Systems - <span class="caps">GPS</span> Tracking</a></h2>
<div class="summary"><p><a href="http://www.landairsea.com"><img alt="landairsealogo" src="http://lh4.ggpht.com/_hrvCBhtWhJ4/Ss8wHmp6uzI/AAAAAAAAB88/c8qleQzPfwk/landairsealogo%5B4%5D.jpg?imgmax=800" title="landairsealogo" />
<span class="caps">GPS</span> Tracking</a> is a contentious issue, even
more when it is forced on the subject. There are however situations
where we can be legally obligated to subject ourselves to such tracking
(for example when we are using the car of the employer or if our legal
guardian wishes so). The ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/landairsea-systems-gps-tracking.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/fixing-cvs-annotate.html">Fixing <span class="caps">CVS</span> annotate</a></h2>
<div class="summary"><p><a href="http://lh4.ggpht.com/_hrvCBhtWhJ4/SsyjaNkjZgI/AAAAAAAAB80/3I4afc30z2g/s1600-h/3415325123_d6e1435b48_b2.jpg"><img alt="3415325123_d6e1435b48_b" src="http://lh6.ggpht.com/_hrvCBhtWhJ4/SsyjaeBg20I/AAAAAAAAB84/PKECSBB_7LA/3415325123_d6e1435b48_b_thumb.jpg?imgmax=800" title="3415325123_d6e1435b48_b" /></a>
Yes, some of us work on projects started almost a decade ago and as such
we use <span class="caps">CVS</span> (yes, <span class="caps">CVS</span> has many limitations and yes, git is better – for a
nice introduction see <a href="http://video.google.com/videoplay?docid=-3999952944619245780#">Randal Schwarz’s video about
git</a>),
but migrating is not directly justifiable (it would involve: training <span class="caps">IT ...</span></p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/fixing-cvs-annotate.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/cbt-planet-pr-newswire.html"><span class="caps">CBT</span> Planet - <span class="caps">PR</span> Newswire</a></h2>
<div class="summary"><p><a href="http://news.prnewswire.com/DisplayReleaseContent.aspx?ACCT=ind_focus.story&STORY=/www/story/09-08-2009/0005089259&EDATE=">cbt
planet</a>
recently announced their <span class="caps">MCITP</span> bootcamps for 2010. <span class="caps">MCITP</span> stands for
Microsoft Certified <span class="caps">IT</span> Professional, and in good Microsoft tradition, it
doesn’t stand for one certification, but rather a group of
certifications. So we have (list taken from <a href="http://www.microsoft.com/learning/en/us/certification/mcitp.aspx#tab2">the Microsoft
site</a>):</p>
<ul>
<li><span class="caps">MCITP</span>: Enterprise Desktop Administrator 7</li>
<li><span class="caps">MCITP</span>: Consumer ...</li></ul>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/cbt-planet-pr-newswire.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/cbt-planet.html">cbt planet</a></h2>
<div class="summary"><p>The issue of certifications is a contentious one in the field of <span class="caps">IT</span>. On
one hand there are the people who try to hire without having necessarily
the expertise to judge the candidate (ie. <span class="caps">HR</span>). On the other hand there
are the people who complain about the low quality of ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/cbt-planet.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/one-more-thing.html">One more thing…</a></h2>
<div class="summary"><p><a href="http://lh3.ggpht.com/_hrvCBhtWhJ4/SsxvETdNtFI/AAAAAAAAB8s/cWsnV2b0PLk/s1600-h/214291449_b0d7e78356_b%5B2%5D.jpg"><img alt="214291449_b0d7e78356_b" src="http://lh6.ggpht.com/_hrvCBhtWhJ4/SsxvE1I-64I/AAAAAAAAB8w/dkg9DBXIdYU/214291449_b0d7e78356_b_thumb.jpg?imgmax=800" title="214291449_b0d7e78356_b" /></a>
So, if I started ranting on Microsoft, here is one more thing: you
should <em>never ever</em> use Microsoft servers if you want to scale. The
reasons is simple: currently the best scaling method is horizontal (ie.
buy loads of cheap hardware and distribute the load between them). Using
Microsoft server ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/one-more-thing.html">more ...</a>
</div>
</article>
<hr/>
<article>
<h2><a href="https://www.grey-panther.net/2009/10/my-opinion-about-microsoft-software.html">My opinion about Microsoft, software piracy and everything</a></h2>
<div class="summary"><p>This post is a response to <a href="http://studentclub.ro/tudorg/archive/2009/09/30/despre-pirateria-software.aspx">a blogpost on tudor g’s blog about software
piracy issues in
Romania</a>,
and as such it might not be of interest to you, dear international
reader. If this is the case, feel free to skip this post.</p>
<p><a href="http://xkcd.com/386/"><img alt="" src="http://imgs.xkcd.com/comics/duty_calls.png" /></a></p>
<p>Disclaimer: arguments are very emotional things ...</p>
<a class="btn btn-default btn-xs" href="https://www.grey-panther.net/2009/10/my-opinion-about-microsoft-software.html">more ...</a>
</div>
</article>
<hr/>
<ul class="pagination">
<li class="prev"><a href="https://www.grey-panther.net/index18.html">«</a>
</li>
<li class=""><a
href="https://www.grey-panther.net/index.html">1</a></li>
<li class=""><a
href="https://www.grey-panther.net/index2.html">2</a></li>
<li class=""><a
href="https://www.grey-panther.net/index3.html">3</a></li>
<li class=""><a
href="https://www.grey-panther.net/index4.html">4</a></li>
<li class=""><a
href="https://www.grey-panther.net/index5.html">5</a></li>
<li class=""><a
href="https://www.grey-panther.net/index6.html">6</a></li>
<li class=""><a
href="https://www.grey-panther.net/index7.html">7</a></li>
<li class=""><a
href="https://www.grey-panther.net/index8.html">8</a></li>
<li class=""><a
href="https://www.grey-panther.net/index9.html">9</a></li>
<li class=""><a
href="https://www.grey-panther.net/index10.html">10</a></li>
<li class=""><a
href="https://www.grey-panther.net/index11.html">11</a></li>
<li class=""><a
href="https://www.grey-panther.net/index12.html">12</a></li>
<li class=""><a
href="https://www.grey-panther.net/index13.html">13</a></li>
<li class=""><a
href="https://www.grey-panther.net/index14.html">14</a></li>
<li class=""><a
href="https://www.grey-panther.net/index15.html">15</a></li>
<li class=""><a
href="https://www.grey-panther.net/index16.html">16</a></li>
<li class=""><a
href="https://www.grey-panther.net/index17.html">17</a></li>
<li class=""><a
href="https://www.grey-panther.net/index18.html">18</a></li>
<li class="active"><a
href="https://www.grey-panther.net/index19.html">19</a></li>
<li class=""><a
href="https://www.grey-panther.net/index20.html">20</a></li>
<li class=""><a
href="https://www.grey-panther.net/index21.html">21</a></li>
<li class="next"><a
href="https://www.grey-panther.net/index20.html">»</a></li>
</ul>
</div>
<div class="col-sm-3" id="sidebar">
<aside>
<div id="aboutme">
<p>
<img width="60%" class="img" src="/images/profile.png"/>
</p>
<p>
<strong>About Grey Panther</strong><br/>
<a href="/">father, husband, software craftsman</a>
</p>
</div>
<section class="well well-sm">
<ul class="list-group list-group-flush">
<li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Social</span></h4>
<ul class="list-group" id="social">
<li class="list-group-item"><a href="https://ro.linkedin.com/in/gpanther"><i class="fa fa-linkedin-square fa-lg"></i> linkedin</a></li>
<li class="list-group-item"><a href="http://stackoverflow.com/users/1265/grey-panther"><i class="fa fa-stack-overflow fa-lg"></i> stackoverflow</a></li>
<li class="list-group-item"><a href="https://github.com/gpanther/"><i class="fa fa-github-square fa-lg"></i> github</a></li>
</ul>
</li>
</ul>
</section>
</aside>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<hr>
<div class="row">
<div class="col-xs-10">© 2017 Grey Panther
· Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>,
<a href="http://docs.getpelican.com/" target="_blank">Pelican</a>,
<a href="http://getbootstrap.com" target="_blank">Bootstrap</a> <p><small> <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="//i.creativecommons.org/l/by/4.0/80x15.png" /></a>
Content
licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>, except where indicated otherwise.
</small></p>
</div>
<div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div>
</div>
</div>
</footer>
<script src="https://www.grey-panther.net/theme/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://www.grey-panther.net/theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="https://www.grey-panther.net/theme/js/respond.min.js"></script>
</body>
</html>