"Some notes to remind, when I old will be..."

Category: Technologies


Chromium for mac

May 22nd, 2009 — 9:24pm

Chromium for mac sucks. Get it here.

Comment » | Internet, Technologies

Opera

April 28th, 2009 — 8:22pm

Today I accidentally visited http://opera.com, this is what i got:

picture-3

1 comment » | Technologies, Web

Quote of the day

March 19th, 2009 — 3:17pm

“AJAX is better than JavaScript, because you don’t like Java”

- Unknown author

4 comments » | Technologies

Really nice video from vimeo

March 18th, 2009 — 5:53pm

I have recently spent some time on vimeo. This is really nice video compiled from “4500+ still photographs”. Enjoy.

1 comment » | Internet, Technologies

Microsoft

March 16th, 2009 — 5:00am

I hate Microsoft, really. Lets start from begining.

Last thursday a friend of mine asked me a question: “Is it possible to get Microsoft dynamics crm working with php? Send messages, etc.”. I thought: “Never heard of it, but how hard it could be?” So I said, that I will look more into it that evening.

I started with parallels, because I wanted to do some other tasks, also and because of windows 7 beta installation on bootcamp disk. So I got parallels and installed xp. That went really nice and easy. I spent a little time enjoying parallels “Coherence” mode and started to look farther. I was already downloaded MSCRM server and Client (at this point I smelt something bad is coming, because of client and server installations). Continue reading »

Comment » | Internet, Technologies, Web

Swedbank internet bank

March 2nd, 2009 — 8:12pm

Little thing, but still why there is button - “Hide accounts”, what is totally useless, because it is only real thing in first page after login and only one I expect to be there. And, if we are getting into details, why there is no button for hiding ads? :D

ib-swedbank-lv-001

6 comments » | Technologies

Skype status message from itunes

February 2nd, 2009 — 12:54pm

Some time ago I was searching how to get “now playing” status from itunes to show in skype. Then I did not find anything. Today I remembered it and decided to try search again. I found nothing and with nothing I mean I couldn’t find any application that could do that. But instead I found this forum post - http://forum.skype.com/index.php?showtopic=83508 what made me wonder. So I looked in Skype settings and there it is - Cmd+, -> Advanced tab -> “Show iTunes song in my mood message”. Simple enough. :)

p.s. I don’t know if this works on windows skype too.

Comment » | Internet, Technologies

Wordpress updated

January 16th, 2009 — 12:57am

Little late, but I just updated my wordpress version to 2.7 and it looks great. Admin interface has got a lot of attention. :)

Comment » | Technologies

Windows 7

January 16th, 2009 — 12:44am

I just installed windows 7 on my .. yes .. macbook. :) Everything went fine, without any problems, except install time, of course. :) But I guess it was fast comparing to Vista. First impression is very good, I mean really very good. Bad thing is that I don’t remember my network key for wireless access point so I don’t know if it is a windows problem or what. I tried to open “Explorer”, “Internet explorer” and “media player” and they were doing quite fast. I know, there is no reason why to move back to windows, but I’m quite impressed about it, firstly because it looks beautiful, secondly, because it is fast even on laptop. But (always have some:) windows xp is fast too with fresh install. After some months it is/was always starting to drive me crazy. And another thing I have noticed - better computer, faster it gets slow.
So .. hard to say if it is fast or slow in real life - I will not use it in everyday basis (OS X has bought me:), but I would be lucky if I could have need for using it.

Comment » | Technologies

Returning references

January 14th, 2009 — 3:18pm

Why is this working:

function &test($var)
{
static $vars = array(’aaa’, ‘bbb’);

if (isset($vars[$var]))
{
return $vars[$var];
}
else
{
return $vars;
}
}

and this is not:

function &test($var)
{
static $vars = array(’aaa’, ‘bbb’);
return (isset($vars[$var]) ? $vars[$var] : $vars);
}

showing me an error: Only variable references should be returned by reference.

I guess php compiler is not so smart to check if booth those return values in second example are variables.

2 comments » | Internet, Technologies