Authorguda

Magic the Gathering how to build or print deck

Here are my resources.

Magic The Gathering Rule Book

This is THE program for building decks. It is java based so you can use it on your favourite OS (I hope).

You should follow this forum topic or this blog post here. It is not so hard

  • Download and extract a couple of zip files
  • Download the art via ready packages also with the java application from this link
  • Download some decks
  • Change the path to the art directory in the config.txt file
  • Start some of the .bat files from the directory you have extracted all the files
  • Drag & Drop (you can drop entire directory with decks if you want to generate more decks at once)

My first game was with decks from here and here

Post & Get requests

Post using curl

curl  -A ‘Mozilla/4.0’  -F “vote=5&btnSubmit.x=34&btnSubmit.y=14&btnSubmit=%D0%A0%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%B8%D1%80%D0%B0%D0%B9” http://www.germanos-konkurs.com/

Not happy with WordPress

Dear WordPress (and authors),

I am not happy that you are releasing versions every month. Continue reading

Semantic web

http://www.powerset.com/

http://www.trueknowledge.com/

http://www.spock.com/

good blog (bg)

lecutre in bg

Forum based search engine http://www.omgili.com/

SEO tools

Check the links for a page

http://validator.w3.org/checklink?uri=http%3A%2F%2Fwww.cenite.com&hide_type=all&depth=&check=Check

lowercase the filenames

#!/bin/sh
# lowerit
# convert all file names in the current directory to lower case
# only operates on plain files--does not change the name of directories
# will ask for verification before overwriting an existing file
# http://www.linuxjournal.com/content/convert-filenames-lowercase  Continue reading

Photo websites

Bookmarks

  • http://wvs.topleftpixel.com/08/08/06/

fun pictures – http://thehomebased.com/?p=63

Do you need to change a filename before sending it ?

Rails action to send binary data

I have one old application where the attachment is store as an id in the filesystem. The customer wants to have the attachment with the right name. So I have made this small action which accepts the id of the requested object and send the file data.


  def send_bios
    redirect_to :action => 'bios' if params[:id].blank?
    @artist = Artist.find(params[:id]);
    contents = File.open(@artist.bios_path,"rb") {|io| io.read}
    send_data contents, :filename => "#{@artist.name}.pdf", :type => "application/pdf", :disposition => 'attachment'
  end

GPS POI and other interesting links

Bulgarian track:

http://www.gpsenjoy.com/
http://topomaps.info/
http://www.poiplaza.com/

Bulgarian POI collection

Debian/Ubunto notes

How to save and installed packges

http://www.cyberciti.biz/tips/linux-get-list-installed-software-reinstallation-restore.html

$ dpkg --get-selections > /backup/installed-software.log

# dpkg --set-selections < /backup/installed-software.log

Now your list is imported use dselect or other tools to install the package.
# dselect

Select ‘i‘ for install the software.

Upgrade Debian

http://www.cyberciti.biz/tips/upgrading-debian-sarga-3-to-etch-4.html

Commands

cat /etc/debian_version

Fix the W: There are no public key available for the following key IDs:

4D270D06F42584E6

apt-key update

gpg –keyserver wwwkeys.eu.pgp.net –recv-keys XXXXXXXXXXXXXXXX
apt-key add /root/.gnupg/pubring.gpg
apt-get update

© 2025 Gudasoft

Theme by Anders NorénUp ↑