]> pere.pagekite.me Git - homepage.git/blob - blog/archive/2017/10/index.html
Generated.
[homepage.git] / blog / archive / 2017 / 10 / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
6 <title>Petter Reinholdtsen: entries from October 2017</title>
7 <link rel="stylesheet" type="text/css" media="screen" href="http://people.skolelinux.org/pere/blog/style.css" />
8 <link rel="stylesheet" type="text/css" media="screen" href="http://people.skolelinux.org/pere/blog/vim.css" />
9 <link rel="alternate" title="RSS Feed" href="10.rss" type="application/rss+xml" />
10 </head>
11 <body>
12 <!-- XML FEED -->
13 <div class="title">
14 <h1>
15 <a href="http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen</a>
16
17 </h1>
18
19 </div>
20
21
22 <h3>Entries from October 2017.</h3>
23
24 <div class="entry">
25 <div class="title">
26 <a href="http://people.skolelinux.org/pere/blog/Locating_IMDB_IDs_of_movies_in_the_Internet_Archive_using_Wikidata.html">Locating IMDB IDs of movies in the Internet Archive using Wikidata</a>
27 </div>
28 <div class="date">
29 25th October 2017
30 </div>
31 <div class="body">
32 <p>Recently, I needed to automatically check the copyright status of a
33 set of <a href="http://www.imdb.com/">The Internet Movie database
34 (IMDB)</a> entries, to figure out which one of the movies they refer
35 to can be freely distributed on the Internet. This proved to be
36 harder than it sounds. IMDB for sure list movies without any
37 copyright protection, where the copyright protection has expired or
38 where the movie is lisenced using a permissive license like one from
39 Creative Commons. These are mixed with copyright protected movies,
40 and there seem to be no way to separate these classes of movies using
41 the information in IMDB.</p>
42
43 <p>First I tried to look up entries manually in IMDB,
44 <a href="https://www.wikipedia.org/">Wikipedia</a> and
45 <a href="https://www.archive.org/">The Internet Archive</a>, to get a
46 feel how to do this. It is hard to know for sure using these sources,
47 but it should be possible to be reasonable confident a movie is "out
48 of copyright" with a few hours work per movie. As I needed to check
49 almost 20,000 entries, this approach was not sustainable. I simply
50 can not work around the clock for about 6 years to check this data
51 set.</p>
52
53 <p>I asked the people behind The Internet Archive if they could
54 introduce a new metadata field in their metadata XML for IMDB ID, but
55 was told that they leave it completely to the uploaders to update the
56 metadata. Some of the metadata entries had IMDB links in the
57 description, but I found no way to download all metadata files in bulk
58 to locate those ones and put that approach aside.</p>
59
60 <p>In the process I noticed several Wikipedia articles about movies
61 had links to both IMDB and The Internet Archive, and it occured to me
62 that I could use the Wikipedia RDF data set to locate entries with
63 both, to at least get a lower bound on the number of movies on The
64 Internet Archive with a IMDB ID. This is useful based on the
65 assumption that movies distributed by The Internet Archive can be
66 legally distributed on the Internet. With some help from the RDF
67 community (thank you DanC), I was able to come up with this query to
68 pass to <a href="https://query.wikidata.org/">the SPARQL interface on
69 Wikidata</a>:
70
71 <p><pre>
72 SELECT ?work ?imdb ?ia ?when ?label
73 WHERE
74 {
75 ?work wdt:P31/wdt:P279* wd:Q11424.
76 ?work wdt:P345 ?imdb.
77 ?work wdt:P724 ?ia.
78 OPTIONAL {
79 ?work wdt:P577 ?when.
80 ?work rdfs:label ?label.
81 FILTER(LANG(?label) = "en").
82 }
83 }
84 </pre></p>
85
86 <p>If I understand the query right, for every film entry anywhere in
87 Wikpedia, it will return the IMDB ID and The Internet Archive ID, and
88 when the movie was released and its English title, if either or both
89 of the latter two are available. At the moment the result set contain
90 2338 entries. Of course, it depend on volunteers including both
91 correct IMDB and The Internet Archive IDs in the wikipedia articles
92 for the movie. It should be noted that the result will include
93 duplicates if the movie have entries in several languages. There are
94 some bogus entries, either because The Internet Archive ID contain a
95 typo or because the movie is not available from The Internet Archive.
96 I did not verify the IMDB IDs, as I am unsure how to do that
97 automatically.</p>
98
99 <p>I wrote a small python script to extract the data set from Wikidata
100 and check if the XML metadata for the movie is available from The
101 Internet Archive, and after around 1.5 hour it produced a list of 2097
102 free movies and their IMDB ID. In total, 171 entries in Wikidata lack
103 the refered Internet Archive entry. I assume the 60 "disappearing"
104 entries (ie 2338-2097-171) are duplicate entries.</p>
105
106 <p>This is not too bad, given that The Internet Archive report to
107 contain <a href="https://archive.org/details/feature_films">5331
108 feature films</a> at the moment, but it also mean more than 3000
109 movies are missing on Wikipedia or are missing the pair of references
110 on Wikipedia.</p>
111
112 <p>I was curious about the distribution by release year, and made a
113 little graph to show how the amount of free movies is spread over the
114 years:<p>
115
116 <p><img src="http://people.skolelinux.org/pere/blog/images/2017-10-25-verk-i-det-fri-filmer.png"></p>
117
118 <p>I expect the relative distribution of the remaining 3000 movies to
119 be similar.</p>
120
121 <p>If you want to help, and want to ensure Wikipedia can be used to
122 cross reference The Internet Archive and The Internet Movie Database,
123 please make sure entries like this are listed under the "External
124 links" heading on the Wikipedia article for the movie:</p>
125
126 <p><pre>
127 * {{Internet Archive film|id=FightingLady}}
128 * {{IMDb title|id=0036823|title=The Fighting Lady}}
129 </pre></p>
130
131 <p>Please verify the links on the final page, to make sure you did not
132 introduce a typo.</p>
133
134 <p>Here is the complete list, if you want to correct the 171
135 identified Wikipedia entries with broken links to The Internet
136 Archive: <a href="http://www.wikidata.org/entity/Q1140317">Q1140317</a>,
137 <a href="http://www.wikidata.org/entity/Q458656">Q458656</a>,
138 <a href="http://www.wikidata.org/entity/Q458656">Q458656</a>,
139 <a href="http://www.wikidata.org/entity/Q470560">Q470560</a>,
140 <a href="http://www.wikidata.org/entity/Q743340">Q743340</a>,
141 <a href="http://www.wikidata.org/entity/Q822580">Q822580</a>,
142 <a href="http://www.wikidata.org/entity/Q480696">Q480696</a>,
143 <a href="http://www.wikidata.org/entity/Q128761">Q128761</a>,
144 <a href="http://www.wikidata.org/entity/Q1307059">Q1307059</a>,
145 <a href="http://www.wikidata.org/entity/Q1335091">Q1335091</a>,
146 <a href="http://www.wikidata.org/entity/Q1537166">Q1537166</a>,
147 <a href="http://www.wikidata.org/entity/Q1438334">Q1438334</a>,
148 <a href="http://www.wikidata.org/entity/Q1479751">Q1479751</a>,
149 <a href="http://www.wikidata.org/entity/Q1497200">Q1497200</a>,
150 <a href="http://www.wikidata.org/entity/Q1498122">Q1498122</a>,
151 <a href="http://www.wikidata.org/entity/Q865973">Q865973</a>,
152 <a href="http://www.wikidata.org/entity/Q834269">Q834269</a>,
153 <a href="http://www.wikidata.org/entity/Q841781">Q841781</a>,
154 <a href="http://www.wikidata.org/entity/Q841781">Q841781</a>,
155 <a href="http://www.wikidata.org/entity/Q1548193">Q1548193</a>,
156 <a href="http://www.wikidata.org/entity/Q499031">Q499031</a>,
157 <a href="http://www.wikidata.org/entity/Q1564769">Q1564769</a>,
158 <a href="http://www.wikidata.org/entity/Q1585239">Q1585239</a>,
159 <a href="http://www.wikidata.org/entity/Q1585569">Q1585569</a>,
160 <a href="http://www.wikidata.org/entity/Q1624236">Q1624236</a>,
161 <a href="http://www.wikidata.org/entity/Q4796595">Q4796595</a>,
162 <a href="http://www.wikidata.org/entity/Q4853469">Q4853469</a>,
163 <a href="http://www.wikidata.org/entity/Q4873046">Q4873046</a>,
164 <a href="http://www.wikidata.org/entity/Q915016">Q915016</a>,
165 <a href="http://www.wikidata.org/entity/Q4660396">Q4660396</a>,
166 <a href="http://www.wikidata.org/entity/Q4677708">Q4677708</a>,
167 <a href="http://www.wikidata.org/entity/Q4738449">Q4738449</a>,
168 <a href="http://www.wikidata.org/entity/Q4756096">Q4756096</a>,
169 <a href="http://www.wikidata.org/entity/Q4766785">Q4766785</a>,
170 <a href="http://www.wikidata.org/entity/Q880357">Q880357</a>,
171 <a href="http://www.wikidata.org/entity/Q882066">Q882066</a>,
172 <a href="http://www.wikidata.org/entity/Q882066">Q882066</a>,
173 <a href="http://www.wikidata.org/entity/Q204191">Q204191</a>,
174 <a href="http://www.wikidata.org/entity/Q204191">Q204191</a>,
175 <a href="http://www.wikidata.org/entity/Q1194170">Q1194170</a>,
176 <a href="http://www.wikidata.org/entity/Q940014">Q940014</a>,
177 <a href="http://www.wikidata.org/entity/Q946863">Q946863</a>,
178 <a href="http://www.wikidata.org/entity/Q172837">Q172837</a>,
179 <a href="http://www.wikidata.org/entity/Q573077">Q573077</a>,
180 <a href="http://www.wikidata.org/entity/Q1219005">Q1219005</a>,
181 <a href="http://www.wikidata.org/entity/Q1219599">Q1219599</a>,
182 <a href="http://www.wikidata.org/entity/Q1643798">Q1643798</a>,
183 <a href="http://www.wikidata.org/entity/Q1656352">Q1656352</a>,
184 <a href="http://www.wikidata.org/entity/Q1659549">Q1659549</a>,
185 <a href="http://www.wikidata.org/entity/Q1660007">Q1660007</a>,
186 <a href="http://www.wikidata.org/entity/Q1698154">Q1698154</a>,
187 <a href="http://www.wikidata.org/entity/Q1737980">Q1737980</a>,
188 <a href="http://www.wikidata.org/entity/Q1877284">Q1877284</a>,
189 <a href="http://www.wikidata.org/entity/Q1199354">Q1199354</a>,
190 <a href="http://www.wikidata.org/entity/Q1199354">Q1199354</a>,
191 <a href="http://www.wikidata.org/entity/Q1199451">Q1199451</a>,
192 <a href="http://www.wikidata.org/entity/Q1211871">Q1211871</a>,
193 <a href="http://www.wikidata.org/entity/Q1212179">Q1212179</a>,
194 <a href="http://www.wikidata.org/entity/Q1238382">Q1238382</a>,
195 <a href="http://www.wikidata.org/entity/Q4906454">Q4906454</a>,
196 <a href="http://www.wikidata.org/entity/Q320219">Q320219</a>,
197 <a href="http://www.wikidata.org/entity/Q1148649">Q1148649</a>,
198 <a href="http://www.wikidata.org/entity/Q645094">Q645094</a>,
199 <a href="http://www.wikidata.org/entity/Q5050350">Q5050350</a>,
200 <a href="http://www.wikidata.org/entity/Q5166548">Q5166548</a>,
201 <a href="http://www.wikidata.org/entity/Q2677926">Q2677926</a>,
202 <a href="http://www.wikidata.org/entity/Q2698139">Q2698139</a>,
203 <a href="http://www.wikidata.org/entity/Q2707305">Q2707305</a>,
204 <a href="http://www.wikidata.org/entity/Q2740725">Q2740725</a>,
205 <a href="http://www.wikidata.org/entity/Q2024780">Q2024780</a>,
206 <a href="http://www.wikidata.org/entity/Q2117418">Q2117418</a>,
207 <a href="http://www.wikidata.org/entity/Q2138984">Q2138984</a>,
208 <a href="http://www.wikidata.org/entity/Q1127992">Q1127992</a>,
209 <a href="http://www.wikidata.org/entity/Q1058087">Q1058087</a>,
210 <a href="http://www.wikidata.org/entity/Q1070484">Q1070484</a>,
211 <a href="http://www.wikidata.org/entity/Q1080080">Q1080080</a>,
212 <a href="http://www.wikidata.org/entity/Q1090813">Q1090813</a>,
213 <a href="http://www.wikidata.org/entity/Q1251918">Q1251918</a>,
214 <a href="http://www.wikidata.org/entity/Q1254110">Q1254110</a>,
215 <a href="http://www.wikidata.org/entity/Q1257070">Q1257070</a>,
216 <a href="http://www.wikidata.org/entity/Q1257079">Q1257079</a>,
217 <a href="http://www.wikidata.org/entity/Q1197410">Q1197410</a>,
218 <a href="http://www.wikidata.org/entity/Q1198423">Q1198423</a>,
219 <a href="http://www.wikidata.org/entity/Q706951">Q706951</a>,
220 <a href="http://www.wikidata.org/entity/Q723239">Q723239</a>,
221 <a href="http://www.wikidata.org/entity/Q2079261">Q2079261</a>,
222 <a href="http://www.wikidata.org/entity/Q1171364">Q1171364</a>,
223 <a href="http://www.wikidata.org/entity/Q617858">Q617858</a>,
224 <a href="http://www.wikidata.org/entity/Q5166611">Q5166611</a>,
225 <a href="http://www.wikidata.org/entity/Q5166611">Q5166611</a>,
226 <a href="http://www.wikidata.org/entity/Q324513">Q324513</a>,
227 <a href="http://www.wikidata.org/entity/Q374172">Q374172</a>,
228 <a href="http://www.wikidata.org/entity/Q7533269">Q7533269</a>,
229 <a href="http://www.wikidata.org/entity/Q970386">Q970386</a>,
230 <a href="http://www.wikidata.org/entity/Q976849">Q976849</a>,
231 <a href="http://www.wikidata.org/entity/Q7458614">Q7458614</a>,
232 <a href="http://www.wikidata.org/entity/Q5347416">Q5347416</a>,
233 <a href="http://www.wikidata.org/entity/Q5460005">Q5460005</a>,
234 <a href="http://www.wikidata.org/entity/Q5463392">Q5463392</a>,
235 <a href="http://www.wikidata.org/entity/Q3038555">Q3038555</a>,
236 <a href="http://www.wikidata.org/entity/Q5288458">Q5288458</a>,
237 <a href="http://www.wikidata.org/entity/Q2346516">Q2346516</a>,
238 <a href="http://www.wikidata.org/entity/Q5183645">Q5183645</a>,
239 <a href="http://www.wikidata.org/entity/Q5185497">Q5185497</a>,
240 <a href="http://www.wikidata.org/entity/Q5216127">Q5216127</a>,
241 <a href="http://www.wikidata.org/entity/Q5223127">Q5223127</a>,
242 <a href="http://www.wikidata.org/entity/Q5261159">Q5261159</a>,
243 <a href="http://www.wikidata.org/entity/Q1300759">Q1300759</a>,
244 <a href="http://www.wikidata.org/entity/Q5521241">Q5521241</a>,
245 <a href="http://www.wikidata.org/entity/Q7733434">Q7733434</a>,
246 <a href="http://www.wikidata.org/entity/Q7736264">Q7736264</a>,
247 <a href="http://www.wikidata.org/entity/Q7737032">Q7737032</a>,
248 <a href="http://www.wikidata.org/entity/Q7882671">Q7882671</a>,
249 <a href="http://www.wikidata.org/entity/Q7719427">Q7719427</a>,
250 <a href="http://www.wikidata.org/entity/Q7719444">Q7719444</a>,
251 <a href="http://www.wikidata.org/entity/Q7722575">Q7722575</a>,
252 <a href="http://www.wikidata.org/entity/Q2629763">Q2629763</a>,
253 <a href="http://www.wikidata.org/entity/Q2640346">Q2640346</a>,
254 <a href="http://www.wikidata.org/entity/Q2649671">Q2649671</a>,
255 <a href="http://www.wikidata.org/entity/Q7703851">Q7703851</a>,
256 <a href="http://www.wikidata.org/entity/Q7747041">Q7747041</a>,
257 <a href="http://www.wikidata.org/entity/Q6544949">Q6544949</a>,
258 <a href="http://www.wikidata.org/entity/Q6672759">Q6672759</a>,
259 <a href="http://www.wikidata.org/entity/Q2445896">Q2445896</a>,
260 <a href="http://www.wikidata.org/entity/Q12124891">Q12124891</a>,
261 <a href="http://www.wikidata.org/entity/Q3127044">Q3127044</a>,
262 <a href="http://www.wikidata.org/entity/Q2511262">Q2511262</a>,
263 <a href="http://www.wikidata.org/entity/Q2517672">Q2517672</a>,
264 <a href="http://www.wikidata.org/entity/Q2543165">Q2543165</a>,
265 <a href="http://www.wikidata.org/entity/Q426628">Q426628</a>,
266 <a href="http://www.wikidata.org/entity/Q426628">Q426628</a>,
267 <a href="http://www.wikidata.org/entity/Q12126890">Q12126890</a>,
268 <a href="http://www.wikidata.org/entity/Q13359969">Q13359969</a>,
269 <a href="http://www.wikidata.org/entity/Q13359969">Q13359969</a>,
270 <a href="http://www.wikidata.org/entity/Q2294295">Q2294295</a>,
271 <a href="http://www.wikidata.org/entity/Q2294295">Q2294295</a>,
272 <a href="http://www.wikidata.org/entity/Q2559509">Q2559509</a>,
273 <a href="http://www.wikidata.org/entity/Q2559912">Q2559912</a>,
274 <a href="http://www.wikidata.org/entity/Q7760469">Q7760469</a>,
275 <a href="http://www.wikidata.org/entity/Q6703974">Q6703974</a>,
276 <a href="http://www.wikidata.org/entity/Q4744">Q4744</a>,
277 <a href="http://www.wikidata.org/entity/Q7766962">Q7766962</a>,
278 <a href="http://www.wikidata.org/entity/Q7768516">Q7768516</a>,
279 <a href="http://www.wikidata.org/entity/Q7769205">Q7769205</a>,
280 <a href="http://www.wikidata.org/entity/Q7769988">Q7769988</a>,
281 <a href="http://www.wikidata.org/entity/Q2946945">Q2946945</a>,
282 <a href="http://www.wikidata.org/entity/Q3212086">Q3212086</a>,
283 <a href="http://www.wikidata.org/entity/Q3212086">Q3212086</a>,
284 <a href="http://www.wikidata.org/entity/Q18218448">Q18218448</a>,
285 <a href="http://www.wikidata.org/entity/Q18218448">Q18218448</a>,
286 <a href="http://www.wikidata.org/entity/Q18218448">Q18218448</a>,
287 <a href="http://www.wikidata.org/entity/Q6909175">Q6909175</a>,
288 <a href="http://www.wikidata.org/entity/Q7405709">Q7405709</a>,
289 <a href="http://www.wikidata.org/entity/Q7416149">Q7416149</a>,
290 <a href="http://www.wikidata.org/entity/Q7239952">Q7239952</a>,
291 <a href="http://www.wikidata.org/entity/Q7317332">Q7317332</a>,
292 <a href="http://www.wikidata.org/entity/Q7783674">Q7783674</a>,
293 <a href="http://www.wikidata.org/entity/Q7783704">Q7783704</a>,
294 <a href="http://www.wikidata.org/entity/Q7857590">Q7857590</a>,
295 <a href="http://www.wikidata.org/entity/Q3372526">Q3372526</a>,
296 <a href="http://www.wikidata.org/entity/Q3372642">Q3372642</a>,
297 <a href="http://www.wikidata.org/entity/Q3372816">Q3372816</a>,
298 <a href="http://www.wikidata.org/entity/Q3372909">Q3372909</a>,
299 <a href="http://www.wikidata.org/entity/Q7959649">Q7959649</a>,
300 <a href="http://www.wikidata.org/entity/Q7977485">Q7977485</a>,
301 <a href="http://www.wikidata.org/entity/Q7992684">Q7992684</a>,
302 <a href="http://www.wikidata.org/entity/Q3817966">Q3817966</a>,
303 <a href="http://www.wikidata.org/entity/Q3821852">Q3821852</a>,
304 <a href="http://www.wikidata.org/entity/Q3420907">Q3420907</a>,
305 <a href="http://www.wikidata.org/entity/Q3429733">Q3429733</a>,
306 <a href="http://www.wikidata.org/entity/Q774474">Q774474</a></p>
307
308 </div>
309 <div class="tags">
310
311
312 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>.
313
314
315 </div>
316 </div>
317 <div class="padding"></div>
318
319 <div class="entry">
320 <div class="title">
321 <a href="http://people.skolelinux.org/pere/blog/A_one_way_wall_on_the_border_.html">A one-way wall on the border?</a>
322 </div>
323 <div class="date">
324 14th October 2017
325 </div>
326 <div class="body">
327 <p>I find it fascinating how many of the people being locked inside
328 the proposed border wall between USA and Mexico support the idea. The
329 proposal to keep Mexicans out reminds me of
330 <a href="http://www.history.com/news/10-things-you-may-not-know-about-the-berlin-wall">the
331 propaganda twist from the East Germany government</a> calling the wall
332 the “Antifascist Bulwark” after erecting the Berlin Wall, claiming
333 that the wall was erected to keep enemies from creeping into East
334 Germany, while it was obvious to the people locked inside it that it
335 was erected to keep the people from escaping.</p>
336
337 <p>Do the people in USA supporting this wall really believe it is a
338 one way wall, only keeping people on the outside from getting in,
339 while not keeping people in the inside from getting out?</p>
340
341 </div>
342 <div class="tags">
343
344
345 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>.
346
347
348 </div>
349 </div>
350 <div class="padding"></div>
351
352 <div class="entry">
353 <div class="title">
354 <a href="http://people.skolelinux.org/pere/blog/Generating_3D_prints_in_Debian_using_Cura_and_Slic3r__prusa_.html">Generating 3D prints in Debian using Cura and Slic3r(-prusa)</a>
355 </div>
356 <div class="date">
357 9th October 2017
358 </div>
359 <div class="body">
360 <p>At my nearby maker space,
361 <a href="http://sonen.ifi.uio.no/">Sonen</a>, I heard the story that it
362 was easier to generate gcode files for theyr 3D printers (Ultimake 2+)
363 on Windows and MacOS X than Linux, because the software involved had
364 to be manually compiled and set up on Linux while premade packages
365 worked out of the box on Windows and MacOS X. I found this annoying,
366 as the software involved,
367 <a href="https://github.com/Ultimaker/Cura">Cura</a>, is free software
368 and should be trivial to get up and running on Linux if someone took
369 the time to package it for the relevant distributions. I even found
370 <a href="https://bugs.debian.org/706656">a request for adding into
371 Debian</a> from 2013, which had seem some activity over the years but
372 never resulted in the software showing up in Debian. So a few days
373 ago I offered my help to try to improve the situation.</p>
374
375 <p>Now I am very happy to see that all the packages required by a
376 working Cura in Debian are uploaded into Debian and waiting in the NEW
377 queue for the ftpmasters to have a look. You can track the progress
378 on
379 <a href="https://qa.debian.org/developer.php?email=3dprinter-general%40lists.alioth.debian.org">the
380 status page for the 3D printer team</a>.</p>
381
382 <p>The uploaded packages are a bit behind upstream, and was uploaded
383 now to get slots in <a href="https://ftp-master.debian.org/new.html">the NEW
384 queue</a> while we work up updating the packages to the latest
385 upstream version.</p>
386
387 <p>On a related note, two competitors for Cura, which I found harder
388 to use and was unable to configure correctly for Ultimaker 2+ in the
389 short time I spent on it, are already in Debian. If you are looking
390 for 3D printer "slicers" and want something already available in
391 Debian, check out
392 <a href="https://tracker.debian.org/pkg/slic3r">slic3r</a> and
393 <a href="https://tracker.debian.org/pkg/slic3r-prusa">slic3r-prusa</a>.
394 The latter is a fork of the former.</p>
395
396 </div>
397 <div class="tags">
398
399
400 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer</a>, <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>.
401
402
403 </div>
404 </div>
405 <div class="padding"></div>
406
407 <div class="entry">
408 <div class="title">
409 <a href="http://people.skolelinux.org/pere/blog/Mangler_du_en_skrue__eller_har_du_en_skrue_l_s_.html">Mangler du en skrue, eller har du en skrue løs?</a>
410 </div>
411 <div class="date">
412 4th October 2017
413 </div>
414 <div class="body">
415 Når jeg holder på med ulike prosjekter, så trenger jeg stadig ulike
416 skruer. Det siste prosjektet jeg holder på med er å lage
417 <a href="https://www.thingiverse.com/thing:676916">en boks til en
418 HDMI-touch-skjerm</a> som skal brukes med Raspberry Pi. Boksen settes
419 sammen med skruer og bolter, og jeg har vært i tvil om hvor jeg kan
420 få tak i de riktige skruene. Clas Ohlson og Jernia i nærheten har
421 sjelden hatt det jeg trenger. Men her om dagen fikk jeg et fantastisk
422 tips for oss som bor i Oslo.
423 <a href="http://www.zachskruer.no/">Zachariassen Jernvare AS</a> i
424 <a href="http://www.openstreetmap.org/?mlat=59.93421&mlon=10.76795#map=19/59.93421/10.76795">Hegermannsgate
425 23A på Torshov</a> har et fantastisk utvalg, og åpent mellom 09:00 og
426 17:00. De selger skruer, muttere, bolter, skiver etc i løs vekt, og
427 så langt har jeg fått alt jeg har lett etter. De har i tillegg det
428 meste av annen jernvare, som verktøy, lamper, ledninger, etc. Jeg
429 håper de har nok kunder til å holde det gående lenge, da dette er en
430 butikk jeg kommer til å besøke ofte. Butikken er et funn å ha i
431 nabolaget for oss som liker å bygge litt selv. :)</p>
432
433 </div>
434 <div class="tags">
435
436
437 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>.
438
439
440 </div>
441 </div>
442 <div class="padding"></div>
443
444 <p style="text-align: right;"><a href="10.rss"><img src="http://people.skolelinux.org/pere/blog/xml.gif" alt="RSS Feed" width="36" height="14" /></a></p>
445 <div id="sidebar">
446
447
448
449 <h2>Archive</h2>
450 <ul>
451
452 <li>2017
453 <ul>
454
455 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/01/">January (4)</a></li>
456
457 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/02/">February (3)</a></li>
458
459 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/03/">March (5)</a></li>
460
461 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/04/">April (2)</a></li>
462
463 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/06/">June (5)</a></li>
464
465 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/07/">July (1)</a></li>
466
467 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/08/">August (1)</a></li>
468
469 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/09/">September (3)</a></li>
470
471 <li><a href="http://people.skolelinux.org/pere/blog/archive/2017/10/">October (4)</a></li>
472
473 </ul></li>
474
475 <li>2016
476 <ul>
477
478 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/01/">January (3)</a></li>
479
480 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/02/">February (2)</a></li>
481
482 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/03/">March (3)</a></li>
483
484 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/04/">April (8)</a></li>
485
486 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/05/">May (8)</a></li>
487
488 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/06/">June (2)</a></li>
489
490 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/07/">July (2)</a></li>
491
492 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/08/">August (5)</a></li>
493
494 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/09/">September (2)</a></li>
495
496 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/10/">October (3)</a></li>
497
498 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/11/">November (8)</a></li>
499
500 <li><a href="http://people.skolelinux.org/pere/blog/archive/2016/12/">December (5)</a></li>
501
502 </ul></li>
503
504 <li>2015
505 <ul>
506
507 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/01/">January (7)</a></li>
508
509 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/02/">February (6)</a></li>
510
511 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/03/">March (1)</a></li>
512
513 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/04/">April (4)</a></li>
514
515 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/05/">May (3)</a></li>
516
517 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/06/">June (4)</a></li>
518
519 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/07/">July (6)</a></li>
520
521 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/08/">August (2)</a></li>
522
523 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/09/">September (2)</a></li>
524
525 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/10/">October (9)</a></li>
526
527 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/11/">November (6)</a></li>
528
529 <li><a href="http://people.skolelinux.org/pere/blog/archive/2015/12/">December (3)</a></li>
530
531 </ul></li>
532
533 <li>2014
534 <ul>
535
536 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/01/">January (2)</a></li>
537
538 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/02/">February (3)</a></li>
539
540 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/03/">March (8)</a></li>
541
542 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/04/">April (7)</a></li>
543
544 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/05/">May (1)</a></li>
545
546 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/06/">June (2)</a></li>
547
548 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/07/">July (2)</a></li>
549
550 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/08/">August (2)</a></li>
551
552 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/09/">September (5)</a></li>
553
554 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/10/">October (6)</a></li>
555
556 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/11/">November (3)</a></li>
557
558 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/12/">December (5)</a></li>
559
560 </ul></li>
561
562 <li>2013
563 <ul>
564
565 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/01/">January (11)</a></li>
566
567 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/02/">February (9)</a></li>
568
569 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/03/">March (9)</a></li>
570
571 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/04/">April (6)</a></li>
572
573 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/05/">May (9)</a></li>
574
575 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/06/">June (10)</a></li>
576
577 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/07/">July (7)</a></li>
578
579 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/08/">August (3)</a></li>
580
581 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/09/">September (5)</a></li>
582
583 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/10/">October (7)</a></li>
584
585 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/11/">November (9)</a></li>
586
587 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/12/">December (3)</a></li>
588
589 </ul></li>
590
591 <li>2012
592 <ul>
593
594 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/01/">January (7)</a></li>
595
596 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/02/">February (10)</a></li>
597
598 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/03/">March (17)</a></li>
599
600 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/04/">April (12)</a></li>
601
602 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/05/">May (12)</a></li>
603
604 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/06/">June (20)</a></li>
605
606 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/07/">July (17)</a></li>
607
608 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/08/">August (6)</a></li>
609
610 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/09/">September (9)</a></li>
611
612 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/10/">October (17)</a></li>
613
614 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/11/">November (10)</a></li>
615
616 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/12/">December (7)</a></li>
617
618 </ul></li>
619
620 <li>2011
621 <ul>
622
623 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/01/">January (16)</a></li>
624
625 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/02/">February (6)</a></li>
626
627 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/03/">March (6)</a></li>
628
629 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/04/">April (7)</a></li>
630
631 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/05/">May (3)</a></li>
632
633 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/06/">June (2)</a></li>
634
635 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/07/">July (7)</a></li>
636
637 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/08/">August (6)</a></li>
638
639 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/09/">September (4)</a></li>
640
641 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/10/">October (2)</a></li>
642
643 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/11/">November (3)</a></li>
644
645 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/12/">December (1)</a></li>
646
647 </ul></li>
648
649 <li>2010
650 <ul>
651
652 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/01/">January (2)</a></li>
653
654 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/02/">February (1)</a></li>
655
656 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/03/">March (3)</a></li>
657
658 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/04/">April (3)</a></li>
659
660 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/05/">May (9)</a></li>
661
662 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/06/">June (14)</a></li>
663
664 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/07/">July (12)</a></li>
665
666 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/08/">August (13)</a></li>
667
668 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/09/">September (7)</a></li>
669
670 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/10/">October (9)</a></li>
671
672 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/11/">November (13)</a></li>
673
674 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/12/">December (12)</a></li>
675
676 </ul></li>
677
678 <li>2009
679 <ul>
680
681 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/01/">January (8)</a></li>
682
683 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/02/">February (8)</a></li>
684
685 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/03/">March (12)</a></li>
686
687 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/04/">April (10)</a></li>
688
689 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/05/">May (9)</a></li>
690
691 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/06/">June (3)</a></li>
692
693 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/07/">July (4)</a></li>
694
695 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/08/">August (3)</a></li>
696
697 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/09/">September (1)</a></li>
698
699 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/10/">October (2)</a></li>
700
701 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/11/">November (3)</a></li>
702
703 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/12/">December (3)</a></li>
704
705 </ul></li>
706
707 <li>2008
708 <ul>
709
710 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/11/">November (5)</a></li>
711
712 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/12/">December (7)</a></li>
713
714 </ul></li>
715
716 </ul>
717
718
719
720 <h2>Tags</h2>
721 <ul>
722
723 <li><a href="http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (14)</a></li>
724
725 <li><a href="http://people.skolelinux.org/pere/blog/tags/amiga">amiga (1)</a></li>
726
727 <li><a href="http://people.skolelinux.org/pere/blog/tags/aros">aros (1)</a></li>
728
729 <li><a href="http://people.skolelinux.org/pere/blog/tags/bankid">bankid (4)</a></li>
730
731 <li><a href="http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (9)</a></li>
732
733 <li><a href="http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (16)</a></li>
734
735 <li><a href="http://people.skolelinux.org/pere/blog/tags/bsa">bsa (2)</a></li>
736
737 <li><a href="http://people.skolelinux.org/pere/blog/tags/chrpath">chrpath (2)</a></li>
738
739 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (154)</a></li>
740
741 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (158)</a></li>
742
743 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian-handbook">debian-handbook (4)</a></li>
744
745 <li><a href="http://people.skolelinux.org/pere/blog/tags/digistan">digistan (10)</a></li>
746
747 <li><a href="http://people.skolelinux.org/pere/blog/tags/dld">dld (17)</a></li>
748
749 <li><a href="http://people.skolelinux.org/pere/blog/tags/docbook">docbook (24)</a></li>
750
751 <li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
752
753 <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (356)</a></li>
754
755 <li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (23)</a></li>
756
757 <li><a href="http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (12)</a></li>
758
759 <li><a href="http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (30)</a></li>
760
761 <li><a href="http://people.skolelinux.org/pere/blog/tags/freedombox">freedombox (9)</a></li>
762
763 <li><a href="http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (18)</a></li>
764
765 <li><a href="http://people.skolelinux.org/pere/blog/tags/h264">h264 (20)</a></li>
766
767 <li><a href="http://people.skolelinux.org/pere/blog/tags/intervju">intervju (42)</a></li>
768
769 <li><a href="http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (15)</a></li>
770
771 <li><a href="http://people.skolelinux.org/pere/blog/tags/kart">kart (20)</a></li>
772
773 <li><a href="http://people.skolelinux.org/pere/blog/tags/ldap">ldap (9)</a></li>
774
775 <li><a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker (8)</a></li>
776
777 <li><a href="http://people.skolelinux.org/pere/blog/tags/lsdvd">lsdvd (2)</a></li>
778
779 <li><a href="http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (1)</a></li>
780
781 <li><a href="http://people.skolelinux.org/pere/blog/tags/mesh network">mesh network (8)</a></li>
782
783 <li><a href="http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (39)</a></li>
784
785 <li><a href="http://people.skolelinux.org/pere/blog/tags/nice free software">nice free software (9)</a></li>
786
787 <li><a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk (293)</a></li>
788
789 <li><a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug (189)</a></li>
790
791 <li><a href="http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (33)</a></li>
792
793 <li><a href="http://people.skolelinux.org/pere/blog/tags/open311">open311 (2)</a></li>
794
795 <li><a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (65)</a></li>
796
797 <li><a href="http://people.skolelinux.org/pere/blog/tags/personvern">personvern (104)</a></li>
798
799 <li><a href="http://people.skolelinux.org/pere/blog/tags/raid">raid (1)</a></li>
800
801 <li><a href="http://people.skolelinux.org/pere/blog/tags/reactos">reactos (1)</a></li>
802
803 <li><a href="http://people.skolelinux.org/pere/blog/tags/reprap">reprap (11)</a></li>
804
805 <li><a href="http://people.skolelinux.org/pere/blog/tags/rfid">rfid (3)</a></li>
806
807 <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (10)</a></li>
808
809 <li><a href="http://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>
810
811 <li><a href="http://people.skolelinux.org/pere/blog/tags/ruter">ruter (5)</a></li>
812
813 <li><a href="http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
814
815 <li><a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (53)</a></li>
816
817 <li><a href="http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (4)</a></li>
818
819 <li><a href="http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (5)</a></li>
820
821 <li><a href="http://people.skolelinux.org/pere/blog/tags/standard">standard (55)</a></li>
822
823 <li><a href="http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (6)</a></li>
824
825 <li><a href="http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (12)</a></li>
826
827 <li><a href="http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (52)</a></li>
828
829 <li><a href="http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (3)</a></li>
830
831 <li><a href="http://people.skolelinux.org/pere/blog/tags/usenix">usenix (2)</a></li>
832
833 <li><a href="http://people.skolelinux.org/pere/blog/tags/valg">valg (9)</a></li>
834
835 <li><a href="http://people.skolelinux.org/pere/blog/tags/video">video (59)</a></li>
836
837 <li><a href="http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (4)</a></li>
838
839 <li><a href="http://people.skolelinux.org/pere/blog/tags/web">web (40)</a></li>
840
841 </ul>
842
843
844 </div>
845 <p style="text-align: right">
846 Created by <a href="http://steve.org.uk/Software/chronicle">Chronicle v4.6</a>
847 </p>
848
849 </body>
850 </html>