
This is the closest I can get.
With hint of familiar loneliness and nerdiness, but curiously unfathomable. This is, not your cup of Chai...
(gnucash:12739): GLib-CRITICAL **: g_date_set_month: assertion `g_date_valid_month (m)' failedI had seen the error messages above so often that after 10 minutes, I decided to fix them.
(gnucash:12739): GLib-CRITICAL **: g_date_strftime: assertion `g_date_valid (d)' failed
The comment above has it: the variable mon will be from 0 to 11 and the number 0 is what choked glib. This is done.
#define MONTH_NAME_BUFSIZE 5
/* Takes the number of months since January, in the range 0 to
* 11. Returns the abbreviated month name according to the current
* locale. (i18n'd version of the above static character array.) */
static const gchar *month_name(int mon)
{
static gchar buf[MONTH_NAME_BUFSIZE];
GDate *date;
memset(buf, 0, MONTH_NAME_BUFSIZE);
date = g_date_new();
g_date_set_month(date, mon);
g_date_strftime(buf, MONTH_NAME_BUFSIZE-1, "%b", date);
g_date_free(date);
return buf;
}
GnuCash developers have my permission to incorporate this fix into the project if they wish.
#define MONTH_NAME_BUFSIZE 5
/* Takes the number of months since January, in the range 0 to
* 11. Returns the abbreviated month name according to the current
* locale. (i18n'd version of the above static character array.) */
static const gchar *month_name(int mon)
{
static gchar buf[MONTH_NAME_BUFSIZE];
GDate *date;
memset(buf, 0, MONTH_NAME_BUFSIZE);
/* date = g_date_new();*/
date = g_date_new_dmy(4, G_DATE_JULY, 2006); /* initialize to sane value */
/* printf("%s: setmonth is %d \n", __func__, mon); */ /* Debug statement */
g_date_set_month(date, mon+1);
g_date_strftime(buf, MONTH_NAME_BUFSIZE-1, "%b", date);
g_date_free(date);
return buf;
}
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:[path to gnome pkgconfig directories]My build was done without any errors after about 20 minutes. During execution there were some warnings from Glib on illegal parameters for the date functions.
export PATH=$PATH:[path to gconftool-2 directory]
./configure --prefix=[path you want]
make;make install
;
; By HKC Dec 02, 2006
;
(define (futureValue p r n i)
(let ((rate (/ r 100)))
(* p (expt (+ 1.0 (/ rate n)) i))))
;;
;; This function calculates the interest yield for the i-th month.
;;
;; Example: With principal of 10000, interest rate 10%, and interest ;; is calculated and reinvested
;; monthly at the same rate, we want to know how much money we ;;can get during the 8-th month.
;;
;; Invoke (gnc:interestYield 10000 10 12 8) and you should get 88.31767424426289
;;
;;
(define (gnc:interestYield p r n i)
(let ((this-val (futureValue p r n i))
(prev-val (futureValue p r n (- i 1))))
(- this-val prev-val)))
;;
;; This function calculates total interest accrued, assuming all ;;interests are reinvested at the same rate.
;;
;;
(define (gnc:interestAccrued p r n i)
(define (sum-it sum i)
(if (= i 0) sum
(sum-it (+ sum (interestYield p r n i)) (- i 1))))
(sum-it 0 i))
"With the rise of the middle class, wealth stopped being a zero-sum game. Jobs and Wozniak didn't have to make us poor to make themselves rich. Quite the opposite: they created things that made our lives materially richer. They had to, or we wouldn't have paid for them."Curiously, some people in this country still think wealth is only limited to tangible entities like land, batu seremban, and teh tarik. Thus, wealth division to those people is still similar to dividing a cake with you will take less if someone else takes more.
...
[snipped]
...
"If you suppress variations in income, whether by stealing private fortunes, as feudal rulers used to do, or by taxing them away, as some modern governments have done, the result always seems to be the same. Society as a whole ends up poorer."
a: Arrival rate (traditionally called lambda)In front of us is a queueing system with one server. The queue was building up, obviously the load, defined as a/b, was greater than 1, i.e. a > b. This is an unstable system when the queue is of finite length.
b: Processing rate (traditionally called mu)
Open up your very own pretend play tattoo parlor. This easy-to-use tattoo maker kit includes an electronic tattoo pen and funky stencils. Using soft, safe pulsating action, the tattoo pen creates realistic, washable designs with dramatic effects.
Microsoft's marketing focus on Linux's liabilities, bugs and 'unpleasant mutations' was made explicit in an advertisement in Germany's most prestigious tech magazine, c't, in October 2000. The two-page ad shows penguins with an elephant's nose, a frog's head and rabbit ears, with the caption: 'An open operating system does not only have benefits'. ('Ein offenes Betriebssystem hat nicht nur Vorteile.') The text continues: 'An open operating system sometimes just mutates. Conversely, Windows 2000 offers all services from a single source'.References:
Section "Files"
# The location of the RGB database. Note, this is the name of the
# file minus the extension (like ".txt" or ".db"). There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
#
# ModulePath can be used to set a search path for the X server modules.
# The default path is shown here.
# ModulePath "/usr/X11R6/lib/modules"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/local/"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
EndSection
error: "mozilla" flavoured geckos aren't tasty enough!Ok, you can be funny, but you still need to provide more information on what the hell your program is expecting. Aren't tasty enough means WHAT??? All other issues are fair game to me, this one really pisses me off. (Solution: Just skip this crap. I have my dear firefoxy with me, I no bird it)
guile -c "(use-modules (ice-9 slib)) (require 'printf)"Explanation:
ERROR: Unbound variable: slib:featuresAfter over 10 hours of debugging, I found out Slib changed the function name from *features* to slib:features and thus obsoletes the library binding of Guile. With this in hand the solution is simple and straight forward: either hack the configure and change that line to:
guile -c "(load "/path/to/slib/guile.init") (require 'printf)"
(define-module (ice-9 slib))
cp Makefile.4 Makefile
make
perl -pi -e 's/\r\n/\n/g;' *
mkdir -p /etc/Wireless/RT61STA
cp rt*.bin /etc/Wireless/RT61STA/
cp rt61sta.dat /etc/Wireless/RT61STA/
/sbin/insmod rt61.o
/sbin/ifconfig ra0 inet 192.168.1.2 up
/sbin/route add default gw
keep
/lib/modules/`uname -r`/rt61
IFNAME[4]="ra0"
IPADDR[4]="your IP"
NETMASK[4]="your net mask"