Meanwhile, my modern LCD makes a high pitched noise thanks to coil whine

11. heinäkuuta 2017 klo 14.51
Sijainti: Videosivustot: YouTube
Avainsanat: tekniikka

Meanwhile, my modern LCD makes a high pitched noise thanks to coil whine.

Vastaa viestiin sen kontekstissa (YouTube)

Rainbow-suodatinkahvin pakkaus

8. heinäkuuta 2017 klo 15.58
Sijainti: Muut: S-kanava
Avainsanat: kuluttajuus, Rainbow, saavutettavuus

Rainbow-kahvi sai taannoin UTZ-sertifioinnin, mikä on hyvä juttu ja kannatan sitä ehdottomasti. Ikävä kyllä pakkaus vaihtui samalla hieman erityyppiseen, ja tämä uudempi, UTZ-sertifioidun pakkaus on nyt paljon aiempaa hankalampi avattava. Se vanha pakkaus aukesi ihan helposti ylhäältä käsin vetäen. Tämä uusi pitää avata saksilla ja jää vielä sittenkin hankalan muotoiseksi, niin että kahvinmuruja menee aina väkisinkin vähän pöydälle ja siis hukkaan.

Vastaa viestiin sen kontekstissa (S-kanava)

http://www.tv7.fi/vod/series/73/

7. heinäkuuta 2017 klo 15.19
Sijainti: Muut: reddit
Avainsanat: TV7, uskonto

Sarjat

Vastaa viestiin sen kontekstissa (reddit)

Minä haikailen Perryä

4. heinäkuuta 2017 klo 15.00
Sijainti: Blogit: Nuoruusdisko
Avainsanat: Hartwall, kuluttajuus, Mikki Hiiri, Perry

Minä haikailen Perryä, mutta aika kuvaavaa on että olisin väittänyt sitä päärynänmakuiseksi, kun se näköjään olikin todellisuudessa sitruunanmakuinen. Tuskin siis maistuisikaan nyt niin hyvältä kuin nostalgiahermo yrittää minulle uskotella. (Muistan kyllä päärynänmakuisiakin merkkejä, joku Mikki Hiiri -sellainen ainakin oli.)

Vastaa viestiin sen kontekstissa (Nuoruusdisko)

I’m slightly surprised that Disney allow preaching work there

3. heinäkuuta 2017 klo 18.16
Sijainti: Videosivustot: YouTube
Avainsanat: Disney, Disneyland, uskonto

Mildly off topic: I’m slightly surprised that Disney allow preaching work there. I thought they generally try to appear neutral wrt. to religions, politics and such, and I’d think the easiest way to achieve that here would be an outright ban on all evangelizing within the park. I mean, if they allow the JW there, that opens the door for the likes of Westboro Baptist Church, whom Disney would then either have to also allow in or (more likely) deny. The latter could then be used to argue that they aren’t truly unbiased.

I wonder if this allowance is something they are required to do by the 1st amendment.

Vastaa viestiin sen kontekstissa (YouTube)

I think your CMS has eaten up all the XML tags above

11. kesäkuuta 2017 klo 10.22
Sijainti: Blogit: htpcBeginner

I think your CMS has eaten up all the XML tags above, only the settings’ values and comments are visible.

Vastaa viestiin sen kontekstissa (htpcBeginner)

`git add` completion fails when using filenames with Scandinavian characters

5. kesäkuuta 2017 klo 18.41
Sijainti: Vianhallintajärjestelmät: Launchpad
Avainsanat: Git

== Background ==

Reporting from Xenial, but this is currently reproducible in Artsy too.

$ locale
LANG=fi_FI.UTF-8
LANGUAGE=fi:en
LC_CTYPE=fi_FI.UTF-8
LC_NUMERIC=”fi_FI.UTF-8″
LC_TIME=”fi_FI.UTF-8″
LC_COLLATE=fi_FI.UTF-8
LC_MONETARY=”fi_FI.UTF-8″
LC_MESSAGES=fi_FI.UTF-8
LC_PAPER=”fi_FI.UTF-8″
LC_NAME=”fi_FI.UTF-8″
LC_ADDRESS=”fi_FI.UTF-8″
LC_TELEPHONE=”fi_FI.UTF-8″
LC_MEASUREMENT=”fi_FI.UTF-8″
LC_IDENTIFICATION=”fi_FI.UTF-8″
LC_ALL=

== Test case ==

$ git init test
$ cd test
$ echo ”foo” > bär
$ git add [hit tab key]
$ git add \”b\\303\\244r\” [hit enter]

== What happens ==

fatal: pathspec ’”b\303\244r”’ did not match any files

== What I expect to happen ==

For the filename to be correctly completed, like with ls:

$ mkdir test2
$ cd test2
$ echo ”foo” > bär
$ ls [hit tab key]
$ ls bär [hit enter]
bär

Vastaa viestiin sen kontekstissa (Launchpad)

You can tell syntastic which checkers to run via a variable

28. toukokuuta 2017 klo 17.58
Sijainti: Muut: Stack Exchange
Avainsanat: Vim

From what romainl only linked to (the relevant parts of links should be quoted when answering):

You can tell syntastic which checkers to run for a given filetype by setting a variable ’g:syntastic__checkers’ to a list of checkers, e.g.
let g:syntastic_php_checkers = [”php”, ”phpcs”, ”phpmd”]

As for your question about invocation: according to the FAQ, the ”command line is constructed using an internal function named makeprgBuild(), which provides a number of options that allow you to customise every part of the command that gets run. You can set these options using global variables”. (See this answer.)

Vastaa viestiin sen kontekstissa (Stack Exchange)

Interrupting (Ctrl-C) jpegtran causes data loss when -outfile points to input file

25. toukokuuta 2017 klo 17.21
Sijainti: Vianhallintajärjestelmät: Launchpad
Avainsanat: turvallisuus

For optimizing files in-place with jpegtran, especially from scripts and when dealing with lots of pictures, it’s handy to be able to specify input file as -outfile.

But there’s a catch:

Steps to reproduce:
0. Have a large JPEG file, or, alternatively, somewhat slow CPU
1. `jpegtran -optimize -copy all -perfect -outfile large.jpg large.jpg`
2. Hit Ctrl-C before the command finishes

Result:
You now have a broken large.jpg with only part, if any, of the image data remaining.

What I expect to happen:
To have large.jpg as it was before I invoked jpegtran.

Workarounds:
Obviously the traditional workaround of specifying an intermediate temporary output file, then replacing the original with the temporary file only once jpegtran has finished.

Vastaa viestiin sen kontekstissa (Launchpad)

But how does the latter scenario differ

21. toukokuuta 2017 klo 19.29
Sijainti: Muut: Stack Exchange
Avainsanat: UNIX

But how does the latter scenario differ from one where `mktemp` is invoked without `-u`? Even if the file is created (as opposed to just the name), nothing prevents another process from writing to the same file once it has been created.

Vastaa viestiin sen kontekstissa (Stack Exchange)

« Uudempia - Vanhempia »