Category: software engineering

  • Re: Decompiler?

    On Mon, Feb 22, 2010 at 06:10:08PM +1100, Tim Clewlow wrote: > > I once worked for a company that was asked to reverse engineer a > file as the client had lost the original source. The method was to > first create lots of simple programs that each contained just one, > or few,…

  • acpitool compile.

    ahiliation:~$make make all-recursive make[1]: Entering directory `/home/jeffrin/acpitool-0.4.6′ Making all in src make[2]: Entering directory `/home/jeffrin/acpitool-0.4.6/src’ if g++ -DHAVE_CONFIG_H -I. -I. -I.. -g -O2 -MT main.o -MD -MP -MF “.deps/main.Tpo” -c -o main.o main.cpp; \ then mv -f “.deps/main.Tpo” “.deps/main.Po”; else rm -f “.deps/main.Tpo”; exit 1; fi main.cpp: In function ‘int main(int, char**)’: main.cpp:142: error: ‘atoi’…

  • compile prosilla.

    ahiliation:~$make gcc -O3 -Wall -DVERSION='”1.2″‘ `gtk-config –cflags` -DWITH_GTK -s -lutil -lncurses `gtk-config –libs` -lpthread -o proserv proserv.c /bin/sh: gtk-config: not found /bin/sh: gtk-config: not found proserv.c: In function ‘main’: proserv.c:37: warning: pointer targets in passing argument 3 of ‘sendfile’ differ in signedness /usr/include/sys/sendfile.h:34: note: expected ‘off_t *’ but argument is of type ‘long unsigned int…

  • install.6 [ reading code ]

    static int selinux_enabled = 0; The value of variable “selinux_enabled” is constant 0 of integer type which is not allowed to change. value of selinux_enabled is constant 0 is Proposition p. variable selinux_enabled is of type integer is Proposition q . value of selinux_enabled is not allowed to change is Proposition r. http://selinuxproject.org/page/Main_Page http://en.wikipedia.org/wiki/Security-Enhanced_Linux

  • WinDbg.1

    Debugging a pidgin session using WinDbg. Register watch. The value of typical registers can be altered. http://en.wikipedia.org/wiki/Processor_register

  • variables

    <?php $f=’welcome’; $s=’to’; $t=’PHP’; $ff=’CLI’; echo “$f $s $t $ff \n”; ?> http://www.php.net/manual/en/language.variables.php

  • Learning Scripting

    Learning Scripting. http://github.com/ahiliation/simple-program

  • gpic

    pic – compile pictures for troff or TeX http://www.math.uiuc.edu/~west/gpic.html

  • fc-scan

    fc-scan scans file(s) recursively and prints out font pattern for each face found. http://www.freedesktop.org/wiki/Software/fontconfig

  • average finder

    #include <stdio.h> main() { float real,user,sys,addition,entry,average; float entries; int i; addition=0; printf(“\n Entries\n”); scanf(“%f”,&entries); for (i=0;i<entries;i++) { printf("\n Entry\n"); scanf("%f",&entry); addition=addition+entry; } average=addition/entries; printf ("\nAverage Equals %f",average); }