Cerebros – Mind Travelers EP (2011)
2011-08-27 17:26:04
Location: Netherlands http://www.myspace.com/cbcerebros Size: 77 Mb, Quality: 320 Kbps 1. You Heard ...
+ развернуть текст сохранённая копия
Location: Netherlands http://www.myspace.com/cbcerebros Size: 77 Mb, Quality: 320 Kbps 1. You Heard Of Me (Prod. By Sneak Productions) 2. Simple and Plain (Feat. Big Huey) (Prod. By Ray The Barbarian) 3. Deepest Treasures (Feat. J Spine) (Prod. By Komedii) 4. More Than That (Prod. By Ray The Barbarian) 5. We Smoke (Feat. Psl) (Prod. By [...]
Тэги:
2011,
album,
english
T-word.
2011-08-26 07:49:49
Давно не трогал тему толерантности, но в последнее время она всплывает (хм, не тонет... угу) все ...
+ развернуть текст сохранённая копия
Давно не трогал тему толерантности, но в последнее время она всплывает (хм, не тонет... угу) все чаще. Так вот: настоящая борьба за толерантность -- она заключается не в выяснении отношений, не в стремлении кому-то что-то доказать, не в навязывании чего-то обществу и отдельным людям, и не в требовании какого-то определённого к себе отношения на основании одного признака. Истинная толерантность -- в том, чтобы вести себя прилично.
Если тебе нахамили, игнор. Всё просто: хам унижает только самоё себя, отсутствие реакции на хамство раздражает гораздо больше, чем первоначальная причина конфликта. Требование уважения к себе абсурдно по своей сути, потому что уважение зарабатывается или завоёвывается нормальным хорошим делом, но никогда не достаётся по скандальному требованию или истеричному запросу.
На самом-то деле, всё проще: уважения других требуют обычно те, у кого проблемы с уважением себя. Именно поэтому особенно болезненно на эти вопросы обычно реагируют низшие классы, малообразованные слои общества, и законченные маргиналы -- это для них больной вопрос, и они сосут его, как ноющий зуб.
Уважающий себя человек никогда не будет требовать уважения к себе других, потому что он не зависит от него -- встретив неуважение, он мало обращает на него внимания, и спокойно делает дальше то, что считает нужным. Если за твоей машиной бежит собака, заливаясь истеричным лаем -- это не твоя проблема, это проблема собаки. Максимум, ты можешь поднять стекло, чтобы брехня не давила на уши. Глупо требовать уважения от кого-то, кто зря тратит своё время и силы на лай: даже если ты его добьёшься, тебе от него будет мало проку.
К сожалению, разного рода борцы за разного рода права постоянно об этом забывают.
* * *
Кстати, "уважуха" по-английски, это "rispeck". Именно так, с намеренным искажением, без "t", его произносят нарко-дилеры, гопота, и прочая ущемлённая публика, для кого это всегда больной вопрос. Если произносить с "t", то это уже не то -- ты либо чужак, либо обидеть хочешь. Такие вот забавные шаблоны.
Тэги:
english,
point,
ponder,
reason,
sleep
Rayzel – Product Of Circumstance Vol.1 (2011)
2011-08-25 02:18:18
Location: UK http://www.myspace.com/rayzelmusic http://rayzel.bandcamp.com http://www. ...
+ развернуть текст сохранённая копия
Location: UK http://www.myspace.com/rayzelmusic http://rayzel.bandcamp.com http://www.piglatinproductions.com Size: 186 Mb, Quality: 320 Kbps 01. Listen Up 02. My Blood is Wine (feat. Diabolic and Guilty Smiles) 03. Pigz Pen 04. Holiday Hell Horror Dance 05. Pet Semetary (feat. Sean Strange and Guilty Smiles) 06. Dispensation (Dub) 07. Anarchy Rulz (64 bar’s) 08. Bitter Taste 09. Risen Revenge [...]
Тэги:
2011,
album,
english
A way of a key, or how I achieved success configuring multimedia keys on my keyboard
2011-08-23 15:55:31
When I bought a new keyboard last week and those multimedia/internet keys were not working as ...
+ развернуть текст сохранённая копия
When I bought a new keyboard last week and those multimedia/internet keys were not working as expected, I learned a bit too much about how a key press event goes all the way from the hardware to the Linux kernel to X11. Actually, much more than I even wanted to know. I do not believe in humanity any more. Well, time will definitely heal me, but let me share the information I found before I forgot it for good.
My distro is Fedora 14, kernel 2.6.35, Xorg-1.9.5, xkeyboard-config 1.9. Desktop environment is XFCE 4.6. My new keyboard is Genius SlimStar 320. I use quite an old Logitech Trackball ("Cordless TrackMan FX, T-RA17) as a primary way to control on-screen pointer. This trackball was produced before mouse scroll wheels became a commodity so it lacks one. Fortunately the keyboard is equipped with a four-way " turbo scroll" button which in reality is just a circular four-key button.
Here comes the first problem: keyboard sends very unusual scancodes for most of the multimedia keys. For example, the "turbo scroll" sends codes 495 to 498. Most of the other multimedia keys send similar codes for example 499 (for "Presentation" key) or 506 (for "Yahoo Messenger" key). You can see those using 'showkey' utility from the 'kdb' package (make sure to run in from a text terminal, i.e. not from X Window).
Fortunately, every problem in computing can be solved by introducing an additional abstraction level (unfortunately, the problem of too many abstraction levels can't be solved using this method -- but this is out of scope of this blog entry). Now, the kernel already maps raw scan codes from the keyboard to so called key codes. We need to modify this table to map the multimedia key scancodes to more appropriate (more standard) key codes. As usual in UNIX systems, there are many ways to achieve that, but it looks like the preferred way of the day is to use udev 'keymaps' extension. Whenever udev sees a particular keyboard model (identified by USB vendor_id and product_id numbers) appearing in the system, it can apply a particular map for this keyboard. For key code names used in udev keymaps, see /usr/include/linux/input.h (look for #define KEY_* macros). To make a long story short for a busy reader, here (http://kan.gd/x9q) Is my patch to udev which fixes the bad key codes for my keyboard.
After using this one, some keys (like 'screenlock') started to work in XFCE, while some others were still dead. Well, not completely dead -- you can see the new codes using showkey, or, yet better, evtest utility. Next problem lies in the next level of abstraction called xkb (X Keyboard Extension).
First of all, due to someone thinking there will never be more than 256 keys, a keycode is one-byte, so values above 255 are not supported, X Window just can not see those. OK, this can be kludged by using codes in the range 1-255 in the above (udev keymap) step. But you still can see those that are within the one byte range -- use evdev utility for that. XKB translates the keycode into internal key name (such as I24 or K6C -- such translation is (mostly) defined in XKB's /usr/share/X11/xkb/keycodes/xfree86 file) and then into X11 key event name (which, for a multimedia key, is as cool as XF86AudioRaiseVolume or XF86ScrollUp -- such translation is (mostly) defined in XKB's /usr/share/X11/xkb/keymap/inet).
Now, you can assume that if you see keypress events with such descriptive key names you are all set. Hold on...
Next thing is to make your system react to those keys. In XFCE, go to Preferences -> Keyboard and select the Application Shortcuts tab. You will see quite a few key bindings already set for you, for example XF86WWW opens a web browser. While at it, you can learn some handy key combos for you.
Please note that if you are going to use keys to control volume, XFCE configures aumix for XF86AudioRaiseVolume and ...LowerVolume. First, aumix is not installed, but even if installed it can't deal with the default PulseAudio mixer configured in Fedora 14. The fix is to use amixer instead, here are the relevant commands (you can try if it works for you from the command line and adjust accordingly):
Raise: amixer -q set Master 2%+ unmute
Lower: amixer q set Master 2% unmute
Mute: amixer -q set Master toggle
Next thing is, in order for scrolling (XF86ScrollUp and ...Down) to work, you need something very kludgy -- transform keyboard events into mouse events. Again, there is more one way of doing it; I used the xte tool (from the package of the same name). Here are the relevant rules:
XF86ScrollUp: xte 'mouseclick 4'
XF86ScrollDown: xte 'mouseclick 5'
If you are not an XFCE user, you can use xbindkeys for the same purpose.
Тэги:
english,
homemade,
howto,
linux,
wtf
Canibus – Lyrical Law (Deluxe Edition) (3xCD) (2011)
2011-08-23 14:59:25
Location: USA http://www.myspace.com/canibus Size: 353 Mb, Quality: VBR~320 Kbps CD1 01. Lyrical Law ...
+ развернуть текст сохранённая копия
Location: USA http://www.myspace.com/canibus Size: 353 Mb, Quality: VBR~320 Kbps CD1 01. Lyrical Law Intro 02. Lyrical Noir 03. The Art Of Yo 04. Fight With The Champ 05. The Emerald Cypher 06. The Golden Cypher 07. The Cypher Of Agartha 08. Cypher Of Steel 09. Cypher Of Five Mics 10. The Cypher Of Bread And [...]
Тэги:
2011,
album,
english