I have not know that skype uses postgresql at backend. check this out
http://pgfoundry.org/projects/plproxy
one of the project that they wrote for postgresql. I guess it is good idea to have that kind of clustering for it.
Yorum Yok »
yarasa yararlı bir hayvandır tarafýndan Genel içinde postalandý, tags: c#
some part of my program could not work on vista. it says “no authorization”. this program developed under .net 2 simple program shows some web pages from internet stands in system tray. thats the program in this post.
and it uses webbrowser component of .net. I know microsoft build up a new most secure system for their customers. but it works in XP. there must be some option about vista situation. now I am thinking C++ will be more easy but I am not sure. anyway time will show.
Yorum Yok »
yarasa yararlı bir hayvandır tarafýndan Genel içinde postalandý, tags: eclipse
I have been working with all platforms about 15 years now. I used to write bat files in dos5 now I am writing java code with eclipse and c# with vs.net . anyway here is the story about the funny ide
I was writing some AJAX application in eclipse which has to call a ten thousand line js file from browser and call some function from there. first of all writing that much big js file is a big big mistake from all perspectives. and deploying this big file to a browser another mistake but its a big project since 2006 its written by some people. I can not change that in 1 day.
when I start to turn mouse wheel eclipse understands later the effect and when I stop it could not stop
and line numbers comes later too. it means I have to a lot of CPU and RAM for that. but its like walking with a big dog
Yorum Yok »
yarasa yararlı bir hayvandır tarafýndan Genel içinde postalandý, tags: c#, windows forms
in .net 2 if you want to show your application in system tray. you need to add notify icon to your application and set the “ShowInTaskBar” property to False. now you have the notify icon in the system tray. my problem was I could not show the form if I double click on the notify icon. I tried to BringToFront() which works but it did not work under this situation. anyway here is the solution:
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Visible = true;
Show();
this.BringToFront();
this.Activate();
}
I know that bringtofront function does not work but I like to see my code this way more clear
now Activate() works perfectly.
Yorum Yok »
yarasa yararlı bir hayvandır tarafýndan Genel içinde postalandý, tags: dirty hacking, php
One of my client asked me to solve a small bug in one of my php application. I am not a php guru but I am a dirty hacker
anyway the problem was exceeding memory limit. in shared hosting it was limited with 8M from php.ini
I made a small research but could not find any document about it in ISP’s page. and asked to my uncle google. he could not find any copy paste code there too
and at last of course for the php I have to check php.net and its documentation little bit reading here is the line which saves the day:
ini_set(‘memory_limit’,’128M’);
it was working very fine in 8mb then it will work for a long time in 128m
thats enough for that.
Yorum Yok »