Home
heviosso
30 July 2009 @ 09:19 pm
Чук Норрис © co-worker Arnaud
Tags: , ,
 
 
Now listening: The Killers - Sam's Town | Powered by Last.fm
 
 
heviosso
06 May 2009 @ 05:34 pm
Чертыре черненьких чумазеньких чертенка чертили черными чернилами changelog. (C) мы с [info]ykaliuta
Tags:
 
 
heviosso
18 March 2009 @ 10:42 pm
убивайfs (orig).
Tags: ,
 
 
Now listening: Silly Wizard - Golden, Golden | Powered by Last.fm
 
 
heviosso
12 February 2009 @ 12:46 pm
QotD  
[info]andy_shev on elderly women:
No pussy, no face, no shape.
Tags: ,
 
 
heviosso
10 February 2009 @ 12:15 pm
My babe wakes up.

Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    2006, 2007, 2008
    The NetBSD Foundation, Inc.  All rights reserved.
Copyright (c) 1982, 1986, 1989, 1991, 1993
    The Regents of the University of California.  All rights reserved.

NetBSD 5.99.5 (XXX) #92: Tue Feb 10 11:25:35 EET 2009
        ash@dew:/home/ash/work/nbobj-arm/sys/arch/evbarm/compile/XXX
total memory = 128 MB
avail memory = 122 MB
mainbus0 (root)
cpu0 at mainbus0: ARM1176J-S r0p4 (ARM11J core)
cpu0: DC enabled IC enabled WB disabled EABT
cpu0: 32KB/32B 4-way Instruction cache
cpu0: 32KB/32B 4-way write-back-locking-C Data cache
Initializing kernel page counter /dev/kp0
437 paged used by kernel
boot device: 
root device: _
Tags: ,
 
 
heviosso
14 January 2009 @ 02:22 pm
noop  
My tightly-coupled memories are hereafter uncached.
Tags: ,
 
 
heviosso
10 December 2008 @ 07:49 pm
QotD  
Following numerous requests from co-workers ([info]andy_shev), here goes a quote of yesterday, actually, but entertaining nonetheless:

No internet -- yes lunch! © [info]andy_shev
Tags: , ,
 
 
Now listening: The Killers - Spaceman | Powered by Last.fm
 
 
heviosso
02 December 2008 @ 11:04 am
Verbosed version of a log
© [info]andy_shev

P.S. Инкризнем нашу вербозность, да.
Tags: ,
 
 
Now listening: Machine Head - A Farewell To Arms | Powered by Last.fm
 
 
heviosso
02 December 2008 @ 10:44 am
[color]
        ui = auto

when put to ~/.gitconfig brings a new meaning to life.
Tags:
 
 
Now listening: Machine Head - Wolves | Powered by Last.fm
 
 
heviosso
26 November 2008 @ 04:35 pm
Actually, it's the best one I've had filed against me.
Summary: 'Satanic' is a not so good word in version string

© [info]andy_shev
Tags:
 
 
heviosso
24 November 2008 @ 06:05 pm
Absolutely, unmistakably.

Tags: ,
 
 
heviosso
21 October 2008 @ 05:58 pm
For the record, future generations and [info]sighup. If you ever have to debug ld.so (or whatever it is that the runtime loader is called in your system) and its debug_printf() fails, repeat after me:
#define __q(x) x, strlen(x)
write(2, __q("debugging disabled by Perkele\n"));

and you shall be saved.
Tags:
 
 
heviosso
05 October 2008 @ 11:24 pm
scrum scrum scrum

via [info]captain_hell

Terms and references, used in this post:
Tags: ,
 
 
Now listening: Tom Waits - Jesus Gonna Be Here | Scrobbled by Last.fm
 
 
heviosso
23 July 2008 @ 03:28 pm
- Bless you!
- Bless yourself!
Tags: , ,
 
 
heviosso
15 July 2008 @ 07:22 pm
Стоил ли переезд в Финляндию того, чтобы услышать от начальника "с сегодняшнего дня дверь в проектную комнату должна быть постоянно закрыта, потому что из-под моего носа куда-то исчез лаптоп" в терминах "хуйня" и "выебу" (нет, я работаю не на лесопилке)? Ни одного даже отдаленно похожего случая с предыдущих работ не вспоминается. Это я не риторики ради, а по причине недостатка жизненного опыта.
 
 
heviosso
07 July 2008 @ 03:41 pm
What I came to like about netbsd is that there's still so many things to be done there. Another thing is that is absolutely never fails to amaze me with what miracles might lie under the surface.
Tags: ,
 
 
Mood: amused
 
 
heviosso
31 May 2008 @ 12:35 pm
In reference to this.
If a build tool is required to access configuration variables for any reason, it must be an API-conforming tool since non-API conforming tools cannot access configuration variables.
© TET Programming Guide
 
 
Now listening: in flames -- delight and angers
 
 
heviosso
18 March 2008 @ 06:36 pm
noop  
[info]bad_opcode, y0.
static void
BadOp (void)
{
  /* Throw away prefixes and 1st. opcode byte.  */
  codep = insn_codep + 1;
  oappend ("(bad)");
}

from the GNU debugger
Tags: ,
 
 
heviosso
22 February 2008 @ 03:59 pm
we have a dust problem!
 
 
Mood: bored
Now listening: in flames -- borders and shading
 
 
heviosso
09 January 2008 @ 03:06 am
Just found out that one of our (slind) recent night builds failed to the point of destroying the repository on the main server (that is, rsyncing up an empty repository). Which in itself is not much of a problem, but still sets it several days back and not to mention the bandwidth. This, however is not why we're here.

Investigation of the problem that caused said failure was much shorter than I dreaded and the problem itself turned out to be pretty simple. Each time the build starts, one of the scripts involved downloads a database file, which is most important for the build infrastructure. It used to do so by issuing 'curl $URL'. Pretty simple, but not safe against network and/or server failures. Then, one of our engineers decided to make it safer by patching it like this (these snippets are simplified, see below for original code):

- curl $URL
+ curl $URL || die "Failed to download a very important file!"


...which is a nice try, except that curl will always exit with 0 code regardless of HTTP response code, unless given -f/--fail option. IOW, we still have incorrect code, but this one gives us false sense of security.
And of course, if -f was there the night before, the repository wouldn't have been destroyed at all.

P.S. And the commit in question is here.
 
 
Mood: sleepy
Now listening: amorphis -- the white swan