search for: voldemort

Displaying 4 results from an estimated 4 matches for "voldemort".

2013 Aug 22
0
Build problems: klibc with Linux 3.10.7
...s what I assume is by design). If you don?t want that, you must just override *both* prefix=/opt/klibc *and* SHLIBDIR=/opt/klibc/lib (even during compilation mind you!), which is then correct. bye, //mirabilos -- If Harry Potter gets a splitting headache in his scar when he?s near Tom Riddle (aka Voldemort), does Tom get pain in the arse when Harry is near him? -- me, wondering why it?s not Jerry Potter???
2013 Aug 22
2
Build problems: klibc with Linux 3.10.7
Le 22/08/2013 07:43, leroy christophe a ?crit : > Le 22/08/2013 00:59, Thorsten Glaser a ?crit : >> leroy christophe dixit: >> >>> Also you can see that it does try to create /lib instead of >>> /tmp/klibc-install/lib hence my second patch. >> That actually seems to be by design. I always set >> SHLIBDIR on the make command line, so it overrides that.
2015 Feb 23
4
Using confirmation of key usage per-host?
...warding is used? Can this be set on a per-host-basis, like enabling/disabling agent forwarding in .ssh/config? One workaround I could think if would be to use a separate ssh key just for that machine, and just add that one with the ssh-add -c option. Any hints? Thanks in advance, Johannes - -- `Voldemort himself created his worst enemy, just as tyrants everywhere do! Have you any idea how much tyrants fear the people they oppress? All of them realise that, one day [...]there is sure to be one who rises against them and strikes back.? (Harry Potter 6) -----BEGIN PGP SIGNATURE----- Comment: Using Gnu...
2023 Apr 04
1
Simple Stacking of Two Columns
I may be missing something but using the plain old c() combine function seems to work fine: df <- data.frame(left = 1:5, right = 6:10) df.combined <- data.frame(comb = c(df$left, df$right)) df left right 1 1 6 2 2 7 3 3 8 4 4 9 5 5 10 df.combined comb 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 -----Original