edit /usr/share/applications/skype.desktop
[Desktop Entry]
Name=Skype
Comment=Skype Internet Telephony
Exec=bash -c 'LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l2convert.so skype %U'
[{9,<<"<control>">>},
{10,<<"<control>">>},
{12,<<"<control>">>},
{13,<<"<control>">>},
{32,<<"SPACE">>},
{160,<<"NO-BREAK SPACE">>},
{5760,<<"OGHAM SPACE MARK">>},
{6158,<<"MONGOLIAN VOWEL SEPARATOR">>},
{8192,<<"EN QUAD">>},
| REM ***** BASIC ***** | |
| ' Fit print range on page | |
| sub AutoScaleSheet | |
| view = thiscomponent.getCurrentController() | |
| fam =thiscomponent.stylefamilies.getbyname("PageStyles") | |
| sh = view.getActivesheet() | |
| style = fam.getbyname(sh.PageStyle) | |
| style.ScaleToPagesX = 1 | |
| style.ScaleToPagesY = 1 |
# alsactl store
/etc/rules.d/90-persistent-audio.rules
udevinfo -a -p /dev/audio1
was replaced with
udevadm info -a -p $(udevadm info -q path -n /dev/audio1)
| # .asoundrc for Creative E-MU 0204 USB audiocard. | |
| pcm.!default emu | |
| pcm.emudev "hw:1,0" | |
| pcm.emu | |
| { | |
| type asym | |
| playback.pcm | |
| { | |
| type plug |
| -module(general_proper_tests). | |
| -include_lib("proper/include/proper.hrl"). | |
| -include_lib("eunit/include/eunit.hrl"). | |
| some_cool_test_() -> | |
| Properties = lists:filter(fun({F, _}) -> | |
| case atom_to_list(F) of | |
| "prop_" ++ _Rest -> true; | |
| _ -> false |
| delete_duplicate(E, [E|T]) -> | |
| T2 = [X || X <- T, X =/= E], | |
| [E|T2]; | |
| delete_duplicate(E, [H|T]) -> | |
| [H|delete_duplicate(E, T)]; | |
| delete_duplicate(_E, []) -> | |
| []. |
| login: arcusfelis | |
| email: arcusfelis@gmail.com | |
| university: Southern Federal University |
| -module(funs). | |
| -export([f1/0, f2/0]). | |
| id(X) -> X. | |
| id_fn() -> fun id/1. | |
| %% Returns `false'. | |
| f1() -> | |
| id_fn() =:= fun id/1. | |