just to let people know I fix the help system, some might have wanted to email me but unfortunately it was broken for some time. this is now fix.
if you encounter any issue. please post your questions/comments into the help system.
for new users, please keep in mind justbudget has been thought as an "expense tracker". You write down what you spend and then it gives your a clear picture on your habits. When you see Starbuck in your top 5 popular locations with total spent amount of 2000$... you're thinking maybe I had prefer getting a new computer instead of this bad coffee.
Sorry everyone. it is really not on this note I wanted to write this message today.
But Lets start with the good news. a few days ago, I spent the time fixing the issue with the calendar. you can set your expenses date and time again. I also fixed the QFX import function. it should work as expected for everyone(tm). please let me know if you encounter any other problem.
And just because good news never comes alone, I made a small mistake today causing the lost of one full day of transaction. All new expenses/transactions you might have entered between April 19th 2010 17h15 New york time and April 20th 17h15 is lost.
How sad as justbudget just entered his 61th month of activity...
Again, very sorry. it won't happen again. And happy budgeting.
Perl keeps impressing me (negatively) with weird stuff such as implicit context and so on....
but that one is really out of the ordinary...
prompt~/ perl
print "-------\n\n";
my $x = 'hostname1.foo.net';
$x->{'datacenter'} ||= '__';
use Data::Dumper;
print Dumper $x;
print "x".$x->{'datacenter'}."x\n";
my $y = 'hostname1.foo.neT';
print "y".$y->{'datacenter'}."y\n";
my $z = 'hostname1.foo.net';
print "z".$z->{'datacenter'}."z\n";
-------
$VAR1 = 'hostname1.foo.net';
x__x
yy
z__z
prompt~/
first, I thought calling ->{} on a scalar/string would crash. to my surprise, my program passed.
so I wrote this test only to learning something even crazier about perl.
couldn't this be a security issue?
After several server "hick ups" my blog is now back online ! Well, it never got offline, but dreamhost is not so generous on RAM and my blog was asking for more and more, thus I had to move it. I still think dreamhost is a nice place for hosting your stuff but I am sure you know that, at some point, you might need something more dedicated to your business... So my blog is now running on my own server, I also upgraded it to the latest typo (from 4.0.3 to 5.4.1) and it feels good to be able to type here again without fearing crashes....
After several server "hick ups" my blog is now back online ! Well, it never got offline, but dreamhost is not so generous on RAM and my blog was asking for more and more, thus I had to move it. I still think dreamhost is a nice place for hosting your stuff but I am sure you know that, at some point, you might need something more dedicated to your business... So my blog is now running on my own server, I also upgraded it to the latest typo (from 4.0.3 to 5.4.1) and it feels good to be able to type here again without fearing crashes....
Some people perfer InnoDB, other MyISAM. This post ain't about a MySQL-Engine flame war but about letting people choice.
Fact is, the excellent Migration system shipped with rubyonrails and ActiveRecord is defaulting to InnoDB. The doc shows how you can specify the engine on each create_table statement. but then your migration are mysql-only because these engine options will not be supported by sqlite or MSSQL. and I dont want to copy/paste these options to all of my create table. I want to change the default.
unfortunately Rails supply no options for it
fortunately Rails is built on Ruby.
so you can simply overwrite the proper method by adding it to your config/environment.rb
module ActiveRecord
module ConnectionAdapters
class MysqlAdapter < AbstractAdapter
def create_table(table_name, options = {}) #:nodoc:
super(table_name, options.reverse_merge(:options => "ENGINE=MyISAM"))
end
end
end
end
Amazon and Ebay showed us all the way, failed incoming search queries has got to be handled in a way to keep your customer around. But what do you do when you are too big to have any talented programmers and have too much overload in your corporate bureaucracy that you can't get anything done.
You find a way to make money from not fixing your search engine. That's what the Guinness world record website has done. Apparently so, I tried searching for several keywords: "No matching records found" is all I got as an answer.
use your cellphone, text this number to receive paid spam until you spend hours with your cellphone company to get rid of these. is it me or this is looking REAL bad.
Posted in English |
Posted on 17 Oct 2008 13:33by somekool | 1 comment
How, this is exciting.... I just got my iphone today and it looks like 5 games are either, announced, being developped or available for the iphone and the ipod touch.
I am of course talking here about go, igo, baduk, weiqi, weiki, goe, you name it. it the best game in the universe.
Sente:Goban : Can't find it anywhere, but I have been told by email by a developer they are working on a iphone version of their excellent software
SmartGo : It has been said in this conversation that a iphone version of smart go has been demoed at the US congress 2008 in portland. Update: it came out on September 11 click here to download it
ishudan : Actually seems to be a client/server PHP software, aimed to be working well on the iphone.
tetsuki : This is the one that should make it to the AppStore. but when? Update: it came out on October 3, click here to download it
igo : And finaly but not the least. iGo from Robota seems to be the only installable iphone software at the moment. It has to be installed manually through ssh, and it is not compatible with firmware 2.x Now on the AppStore, and it's awesome.
I hope you have a great time practicing your go on the iphone
When I type in my salary in an income entry, it shows a negative balance of
that amount (e.g., I type in 2770, and it shows a balance of -2770). When I
then type in my expenses, it reduces the negative amount by that number (so,
income is 2770, gas is 40, balance shows -2730). So it seems the program is
confusing my expenses and income. I really want to use this site, but I
can't figure out how to get it to work.
Also, when I go to edit an entry, I can't find the way to edit the
"reapeats" section.
Please Help!
Hi,
1 - Yes this is true. but this is only for per-page-total on the transactions list page.
it is the way the system works, this total is mainly used when you do a search, actually.
you can ignore it.
"Home" page and "Stats" page are most important.
2 - to edit recurring options, you must edit the recurring record under the recurring expenses list page. at stored expenses in your transaction list are now just regular transactions.