Go to project parent directory. set CVSROOT. Example: CVSROOT=:ext:ahiliation@cvs.savannah.nongnu.org:/sources/jeffgraphics export CVSROOT $cvs import -m “” start
Category Archives: Uncategorized
destined +
Text : Forward Chain : Filters packets destined for networks protected by the firewall. Meaning : Filters packets that are determined beforehand for networks (it not “the networks”) protected by the firewall. I think it is the private networks. Packets that come from the outside world into the private network. A firewall is normally a …
than . function word.
Text : You used variables with the same name than functions. Meaning : You used variables with the same name than functions with the same name. Meaning in Typical Context You should have used functions with the same name P.S I do not guarantee about the correctness of the above statements.
mysql start
MySQL tinkering mysql> create database jeffdatabase -> ; Query OK, 1 row affected (0.03 sec) mysql> show databases; +——————–+ | Database | +——————–+ | information_schema | | jeffdatabase | | mysql | +——————–+ 3 rows in set (0.00 sec) mysql> use jeffdatabase Database changed mysql> show tables; Empty set (0.00 sec) mysql> create table songs …
voraciously. figure of speech .
Text : Read Voraciously. Meaning : Do lots of reading with eagerness. A figure of speech is a use of a word that diverges from its normal meaning, or a phrase with a specialized meaning not based on the literal meaning of the words in it The saying “I got your back” almost never has …
cairo 1.1 working internal
screenshots of tinkering (gdb) bt #0 clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:84 #1 0x00007ffff509db24 in do_clone (pd=0x7ffff03bd710, attr=0x7ffff50a7f20, stackaddr=0x7ffff03bd9e0, stopped=1, fct=, clone_flags=) at ../nptl/sysdeps/pthread/createthread.c:75 #2 0x00007ffff509e0d2 in create_thread (newthread=, attr=, start_routine=, arg=) at ../nptl/sysdeps/pthread/createthread.c:205 #3 __pthread_create_2_1 (newthread=, attr=, start_routine=, arg=) at pthread_create.c:561 #4 0x0000000000401a82 in timer_exe (window=0x638400) at cairoanimation.c:138 (gdb) frame 4 #4 0x0000000000401a82 in timer_exe (window=0x638400) …
cairo graphics 1.1 beautification
/* Jeffrin Jose Licensed GPL v3 Copyright August 2010 GPL –> http://www.gnu.org/copyleft/gpl.html */ #include #include #include #include //the global pixmap that will serve as our buffer static GdkPixmap *pixmap = NULL; gboolean on_window_configure_event(GtkWidget * da, GdkEventConfigure * event, gpointer user_data){ static int oldw = 0; static int oldh = 0; //make our selves a properly …
cairo_arc verification
Visual Verification The function cairo_arc was used in program and was visually found to possess a certain degree of correctness. [youtube=http://www.youtube.com/watch?v=GfUlvTyIQWo&fs=1&hl=en_US&rel=0&border=1] There is an Arc with Radius 0.
pngcp and pnginfo
system administration command $pnginfo osauxiliaryvector.png osauxiliaryvector.png… Image Width: 1600 Image Length: 1200 Bitdepth (Bits/Sample): 8 Channels (Samples/Pixel): 4 Pixel depth (Pixel Depth): 32 Colour Type (Photometric Interpretation): RGB with alpha channel Image filter: Single row per byte filter Interlacing: No interlacing Compression Scheme: Deflate method 8, 32k window Resolution: 2835, 2835 (pixels per meter) FillOrder: …
cairo graphics 1.0
/* Jeffrin Jose Licensed GPL v3 Copyright August 2010 GPL –> http://www.gnu.org/copyleft/gpl.html */ #include #include #include #include //the global pixmap that will serve as our buffer static GdkPixmap *pixmap = NULL; gboolean on_window_configure_event(GtkWidget * da, GdkEventConfigure * event, gpointer user_data){ static int oldw = 0; static int oldh = 0; //make our selves a properly …