Archív kategorií: imported

Importovane z url. stranky

Kingdom of Auspiex Online – 2D MMORPG

Kingdom of Auspiex Online – http://koarpg.com
quite large 2D pixelart MMORPG . Client has 250mb
freenode / gamedev / kozmonaut (leader)

its a mmorpg, with about 50 to 100 playes on all the time and tons of content like:
– player housing
– crafting
– bard system
– spec system
– multiclass
– badass spells that kill one two or 10 targets
– mini games like crafting, cooking, fishing, lockpicking
– battle system full pvp, allignment based ( you gain more evil allignment killing those with greater )
– if yo evil you can hire gangsters and mercenaries to join you
– even start your own town

development 2005 – 2008, team: 12 core, 1 team leader + main designer, 4 scripters, 1 super prgrammer and artists and a few sound designers

xubuntu 8.04 on Asus M6000 how to

graphic drivers work well

keyboard switching

go to Applications / Settings / keyboard , Keyboard shortcuts tab
add Shortcut something like win + F2 = setxkbmap sk qwerty , win + F1 = setxkbmap us
– setxkbmap can’t cycle through keyboards
– panel widget for keyboard switching ain’t displaying current keyboard if you switch it this way.

Volume control through shortcuts

the same as keyboard switching, add shortcuts like win + m = aumix -v0 , win + , = aumix -v-10 , win + . = aumix -v+10

2008-10-18 14:57:26
How to reinstall downloaded packages to freshly new installed xubuntu.

– Copy all the deb packages into respective /var/cache/apt/archive/
– Go to Settings / Repositories and unselect all the repositories.
– Add new 3rd party repository – a list of the packages you want to add (can be located in any directory) with syntax:
deb file:/directory/to/packages-file ./
– If you don’t have this list file ( Packages.gz ) then create it like:
dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz
which you have to run in directory containing the packages. You can put "Packages.gz" anywhere you like.
– run Synaptic, go to ‚status‘ selection section, and choose ‚Not installed‘ list. There you see list of all packages, and you can install them.

2008-10-18 16:55:41
firefox 3.0 file associations
There is something messed up with file associations of files in ‚downloads‘ window of FireFox. You can’t even open containing folder of the downloaded file.

Fix is to install "firefox-3.0-gnome-support".

2008-10-19 16:42:25
To have keyboard shortcuts for volume control enabled, you have to install package ‚aumix‘, its not present by default.

2008-10-20 18:49:27
enable autologin
run: gksudo gdmsetup
in the dialogue, go to Security > Enable Automatic Login

2008-11-01 20:36:51

http://ubuntuforums.org/showthread.php?t=304131

How to: Xubuntu – Thunar Native Windows Network Browsing

Since Thunar doesn’t have native network Browsing, here is a good way to accomplish it:

1) In XFCE’s Applications -> System -> Shared Folders. (This should trigger a Samba install if you don’t already have a share, and it should allow you to define the proper workgroup)

2) Install fusesmb in Synaptic (from Universe repository)

3) Edit /etc/modules and add the word ‚fuse‘ to the modules list to be loaded (without quotes), and save the file.

4) Reboot, so the fuse module loads, and the proper workgroup is read for samba.

5) In XFCE Applications -> System -> Users and Groups… Properties of your username… User Priveleges Tab… check "Allow use of fuse file systems…"

6) Create a directory that you are going to mount your network browse to… I used /media/network. Change permissions to read / write for group and others (777).

*** 6.5) In a terminal, type: sudo chown <username>:fuse /media/network
(Where <username> is your user account logon name)

*** 6.6) Double check that the permission to use fuse took. Applications -> System -> Users and Groups… Manage Groups… find fuse and choose properties. Make sure your user name account is in that group and check-marked.

*** 6.7) Reboot the system and triple check with step 6.6

7) In XFCE Applications -> Settings -> Autostarted Applications… Add an application… name and describe as you wish… for command line, put: fusesmb /media/network (Or whatever mountoint you created).

Open Thunar, and navigate to the parent folder of your mountpoint… then drag the ‚mounpoint folder‘ to the places (shortcut) pane of thunar.

9) Logout and log back in (So the user privilege and fusesmb autostart will take affect)

*** Added steps to help prevent some access denied issues some people have been experiencing with fusesmb.

2008-11-04 20:03:11
installed WinXP right after Ubuntu
grub does not start up after reboot, you see only WinXP.

– boot in Ubuntu live cd, run it. Run terminal
– sudo grub
inside grub type:
– find /boot/grub/stage1
– root (hdx,y)  <- here type in output from ‚find‘
– setup (hd0)
– quit

reboot and you’re done.

maybe another possibility could be to change window’s partition to unbootable from bootable, and to boot-enable linux partition again. This could be done by:
sudo fdisk /dev/sda
type p and a commands.

2008-11-23 14:57:48
http://www.beigebinary.com/what-if-linux-distros-were-women

You can’t mount USB stick drive, with error saying something like "You can’t mount bla bla ntfs-3g fuse bla old version bla root" and reference to http://ntfs-3g.org/support.html#unprivileged ? Even though that it is USB stick with FAT16 partition ? Could be caused by that you messed with user privileges. Try to see if your user is in users group, or try adding him to ‚root‘ group too.

2008-12-21 22:10:04
About that USB stick auto-mounting again:
if it still happends, that drive is not automounted, though you can allways mount it with ‚sudo mount /dev/sdb1 /media/usbdisk‘ then you can enable automount by adding mount line to ‚etc/fstab‘:
/dev/sdb1    /media/usbdisk    auto    user,noauto,exec 0 0

2008-12-25 22:28:31
OpenGL programs working slowly ? You have to disable software fallback for mesa. Run driconf and turn off low impact fallback.

package driconf – Driconf is a graphical configuration tool for the Direct Rendering Infrastructure (DRI). It allows customizing performance and visual quality settings of OpenGL drivers on a per-driver, per-screen and/or per-application level.

http://dri.freedesktop.org/wiki/DriConf

2009-07-03 17:03:44
Bluetooth

all those bluez utils don’t work much, and doing it cmd-line every time is boring. Install "KDEbluetooth" tools, and then run ‚kbluetooth‘. It starts up as tray icon, and gives you comfortable way to browse bluetooth device disks.

2009-07-19 14:42:06
Before running ‚kbluetooth‘ you have to run "sudo /etc/init.d/bluetooth start" in terminal.

2009-07-19 17:19:12
kbluetooth is available in package ‚kdebluetooth‘ which is also dependant on package ‚bluez-utils‘

2011-03-18 22:00:49
Listing installed packages in console
aptitude search – | grep -e ^i | sed ‚s/^i.{3}([-._a-zA-z0-9][-_.a-zA-z0-9]*)..*/1/’| sed ‚s/n/&/‘ | tr ‚n‘ ‚ ‚

Temporary mailboxes for spam – protection

http://mailinator.com – no registration, no nothing. Use <something>@mailinator.com in any registration webform, and then go to mailinator.com and check for your registration mail just by entering your <something>
http://10minutemail.com – go there, click link and copy your new mail address. Use it and wait for registration mail. Your mailbox expires after 10 minutes unless you refresh.

2008-10-02 14:01:54
inbox.com – regular webmail, but when you receive new mail it first goes to ‚verify‘ folder. Sender receives captcha test, and only after he solves it, you receive the e-mail. Test has to be solved only once for every sender.

Items I want / presents / to get

List of items I’d like to have, probably:

2008-09-09 11:51:10
Dubstar – Stars – The Best Of Dubstar – http://www.discogs.com/release/313559

2008-09-24 14:57:29
– Koss Porta Pro headphones
– guitar for julia

2008-09-24 16:17:13

– headphones Sennheiser PX 100

2009-08-12 18:13:52
Chladiaca podlozka pod notebook, ticha, taka aby sa dala polozit na kolena.

2009-08-30 11:34:22
gamepad s dvoma analogovymi smerovacmi + gombikami

2010-07-04 21:09:25
penazenka kozenna makka, pristupny sacok na mince, dost miesta na kreditky a na 500 eurovku

2010-08-20 08:52:59
kvalitne wireless sluchadla

2010-09-02 08:30:06
kurz smyku v aute

2011-11-24 07:22:31
albums:
Justice –
2007:
2011: Audio, Video, Disco.

2013-05-03 12:30:12
Tricko – Treska & kofola – 16e – http://www.kompot.sk/e-shop/tricka-t-shirts/the-of-slovenske-gastro/2843.html

Tricko – Pan tragacik – 20e – http://www.kompot.sk/e-shop/tricka-t-shirts/stopy-pan-tragacik-a-neviditelni/3409.html

Tricko – Folklor jablonica – 16e – http://www.kompot.sk/e-shop/tricka-t-shirts/sg-jablonica/3277.html

2013-05-09 10:35:07
Nôž, pevný, do lesa. Na strúhanie palíc, na sekanie, na krájanie špekáčky.

2013-06-09 21:32:05
Klavesnica – ticha, podsvietena k PC
Vraj tato je dobra:
http://www.fujitsu.com/fts/products/computing/pc/accessories/input-devices/keyboards/keyboard-kb520-usb.html

2013-07-07 23:54:36
http://store.bethsoft.com/apparel/mens/t-shirts/vault-boy-thumbs-up-tshirt.html $18
http://store.bethsoft.com/fallout-logo-tshirt.html $18

The Eleventh

http://www.the-eleventh.com/ – game in development. Multiplatform 3D RPG. Their team is quite large, few programmers, lots of graphicians, we’ll see what will they do. First tech-demo should be out in 11/2008, game finished in 2011.

Standalf from c++ is one from devteam.