-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
337 lines (231 loc) · 12.3 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
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>blog.davsk.com</title>
<script src="http://blog.davsk.com//bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="http://blog.davsk.com//bower_components/iron-icons/iron-icons.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-drawer-panel/paper-drawer-panel.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-toolbar/paper-toolbar.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-scroll-header-panel/paper-scroll-header-panel.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-fab/paper-fab.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-item/paper-item.html">
<link rel="import" href="http://blog.davsk.com//bower_components/paper-menu/paper-menu.html">
<link rel="import" href="http://blog.davsk.com//bower_components/iron-image/iron-image.html">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/styles/default.min.css">
<style is="custom-style">
body {
font-family: 'Roboto', sans-serif;
}
.nav {
border-right: 1px solid #ccc;
}
paper-scroll-header-panel {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: var(--paper-grey-200, #eee);
--paper-scroll-header-panel-full-header: {
background-image: url(http://blog.davsk.com//images/cover.png);
};
--paper-scroll-header-panel-condensed-header: {
background-image: url(http://blog.davsk.com//images/cover.png);
};
}
paper-toolbar {
height: 256px;
background-color: transparent;
}
.profile{
width: 100%;
padding-bottom: 20px;
}
.photo{
margin: 20px;
display: inline-block;
height: 64px; width: 64px;
border-radius: 50%;
}
.article{
border: 1px solid #bebebe;
padding: 16px;
margin: 16px;
border-radius: 5px;
background-color: #fff;
}
.title{
font-size: 22px;
padding: 8px 0 16px;
}
.description{
font-size: 16px;
padding-bottom: 8px;
}
.author{
font-size: 16px;
padding-left: 20px;
color: white;
}
.design{
font-size: 14px;
}
.copyright{
font-size: 16px;
}
paper-menu a {
text-decoration: none;
color: #212121;
}
</style>
</head>
<body>
<paper-drawer-panel id="drawerPanel" responsive-width="1280px">
<div class="nav scroll" drawer>
<iron-image class="profile" sizing="cover" src="http://blog.davsk.com//images/profile.png">
<iron-image class="photo" sizing="cover" src="http://blog.davsk.com//images/David100x100.jpg"></iron-image>
<div class="author">David Lynn Skinner</div>
</iron-image>
<paper-menu>
<a href="http://blog.davsk.com/"><paper-item>
<iron-icon icon="home"></iron-icon> <div class="flex">Home</div>
<iron-icon icon="chevron-right"></iron-icon>
</paper-item></a>
<a href="http://blog.davsk.com//categories/"><paper-item>
<iron-icon icon="drafts"></iron-icon> <div class="flex">Categories</div>
<iron-icon icon="chevron-right"></iron-icon>
</paper-item></a>
<a href="http://blog.davsk.com//tags/"><paper-item>
<iron-icon icon="loyalty"></iron-icon> <div class="flex">Tags</div>
<iron-icon icon="chevron-right"></iron-icon>
</paper-item></a>
</paper-menu>
</div>
<paper-scroll-header-panel main condenses header-height="256" condensed-header-height="64">
<paper-toolbar>
<paper-icon-button icon="menu" paper-drawer-toggle></paper-icon-button>
<div class="bottom title">blog.davsk.com</div>
<div class="flex"></div>
<a href="https://www.facebook.com/david.lynn.skinner"><paper-icon-button src="http://blog.davsk.com//images/facebook-dreamstale25.png"></paper-icon-button></a>
<a href="https://twitter.com/SkinnerDavidL"><paper-icon-button src="http://blog.davsk.com//images/twitter-dreamstale71.png"></paper-icon-button></a>
<a href="https://google.com/+DavidSkinnerDavsk"><paper-icon-button src="http://blog.davsk.com//images/google+-dreamstale37.png"></paper-icon-button></a>
<a href="https://www.linkedin.com/in/david-skinner/46/736/793"><paper-icon-button src="http://blog.davsk.com//images/linkedin-dreamstale45.png"></paper-icon-button></a>
<a href="https://github.com/Comaldave"><paper-icon-button src="http://blog.davsk.com//images/github2-dreamstale35.png"></paper-icon-button></a>
<a href="http://blog.davsk.com//index.xml"><paper-icon-button src="http://blog.davsk.com//images/feed-dreamstale27.png"></paper-icon-button></a>
</paper-toolbar>
<div class="content">
<div class="article">
<div class="title"><a href="http://blog.davsk.com/post/first/">first</a></div>
<div class="description"></div>
<div class="tags">
10 Sep 2015
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/glbcompliance/">glbcompliance</a></div>
<div class="description"></div>
<div class="tags">
10 Sep 2015
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/legal/privacy/">privacy</a></div>
<div class="description"></div>
<div class="tags">
10 Sep 2015
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/legal/disclaimer/">disclaimer</a></div>
<div class="description"></div>
<div class="tags">
10 Sep 2015
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/forensic/warrantee/">warrantee</a></div>
<div class="categories">
<a href="http://blog.davsk.com//categories/forensic/">Forensic</a>
</div>
<div class="description">Use HD video camera to create compelling evidence A warrantee claim for a problem that is intermittent can be a difficult thing to prove. The solution was to use a video camera to document the intermittent problem. One look and the 60 seconds of video extracted from almost an hour was enough to get repairs</div>
<div class="tags">
10 Sep 2015
<a href="http://blog.davsk.com//tags/seeing-is-believing/">#Seeing is believing</a>
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/forensic/custody/">custody</a></div>
<div class="categories">
<a href="http://blog.davsk.com//categories/forensic/">Forensic</a>
</div>
<div class="description">Video editing to present key evidence easily. The custodial parent was watching an R rate movie in the presence of minor children. I was asked to work with the psychology expert to develop some evidentiary exhibits. I was able to take the rental version of the movie, rip it into a file that I could edit, splice excerpts of the selected scenes together into a 5 minute movie. I was also able to provide a half dozen screen shots on 8x10 photo paper.</div>
<div class="tags">
10 Sep 2015
<a href="http://blog.davsk.com//tags/two-hours-of-evidence-in-five-minutes/">#Two Hours of evidence in five minutes</a>
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/forensic/divorce/">divorce</a></div>
<div class="categories">
<a href="http://blog.davsk.com//categories/forensic/">Forensic</a>
</div>
<div class="description">Use the computer to do your job quicker, easier, and better. The discovery in this case was over 2000 pages of financial information. We set up a laptop computer and scanner in the library of the opposing counsel and a few hours later, all of the documents had been scanned into the computer. By the following morning, the documents had been OCRed, indexed, and place on CD. By the following Monday, the documents had been identified and a missing documents list had been prepared.</div>
<div class="tags">
10 Sep 2015
<a href="http://blog.davsk.com//tags/too-many-pages/">#Too many pages</a>
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/forensic/assault/">assault</a></div>
<div class="categories">
<a href="http://blog.davsk.com//categories/forensic/">Forensic</a>
</div>
<div class="description">Scaled computer modeling to set the scene A request was made for an illustrative exhibit, a jail house door complete with cuff port. I take a picture of the door and make some measurements. I prepared a drawing of the door using a CAD program listing all of the dimensions. I then built the lightweight wooden jailhouse door as a representational illustrative exhibit. The door was then delivered to the court house on the day of trial for use by the defense attorney.</div>
<div class="tags">
10 Sep 2015
<a href="http://blog.davsk.com//tags/show-the-jury/">#Show the Jury</a>
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/forensic/rape/">rape</a></div>
<div class="categories">
<a href="http://blog.davsk.com//categories/forensic/">Forensic</a>
</div>
<div class="description">Computer forensic tools cannot reveal what is not there and cannot conceal what is there. The evidence provided consisted of duplicates of two hard disk drives, one from a laptop and one from a desktop. The first step was to verify the digital signature of the discovery. Instead we determined that the evidence had been altered while in police custody. The next step was to recover and identify files on the hard disk drives.</div>
<div class="tags">
10 Sep 2015
<a href="http://blog.davsk.com//tags/computer-hard-disk-drives/">#Computer Hard Disk Drives</a>
</div>
</div>
<div class="article">
<div class="title"><a href="http://blog.davsk.com/forensic/murder/">murder</a></div>
<div class="categories">
<a href="http://blog.davsk.com//categories/forensic/">Forensic</a>
</div>
<div class="description">Using computer graphics to tell the story. The young drug addict had been accused of shooting his unlicensed pharmaceutical dealer in the back of the head with a .38 Special while testing his wares. He claimed it was an accident, must have been a ricochet when he tripped and fell with the pistol they had been target shooting with while drunk and stoned. My job was to convert the 5/16” in the coroner’s report to a decimal format and compare it with the .357” in the ballistics report.</div>
<div class="tags">
10 Sep 2015
<a href="http://blog.davsk.com//tags/conflicting-information/">#Conflicting information</a>
</div>
</div>
</div>
<paper-item>
<paper-fab disabled icon="chevron-left"></paper-fab>
<div class="flex"></div>
<a href="/page/2/"><paper-fab icon="chevron-right"></paper-fab></a>
</paper-item>
<paper-item>
<div class="copyright">2012 © davsk.com</div>
<div class="flex"></div>
<div class="design">Design <a href="http://pdevty.github.io/blog/">pdevty</a></div>
</paper-item>
</paper-scroll-header-panel>
</paper-drawer-panel>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>