Mini Searches with Answers

These are links associated with recent searches I’ve done. They’re not difficult enough to warrant to their own posts but still super useful.

Firebug Lite
Use firebug in any browser?

strerror(errno) : strerror « string.h « C / ANSI-C
How to debug a file not opening in C.

#include <stdio.h>
#include <string.h>
#include <errno.h>

int main ()
{
FILE * pFile;
pFile = fopen ("unexist.ent","r");
if (pFile == NULL)
printf ("Error opening file unexist.ent: %s\n",strerror(errno));
return 0;
}

epubtools –  Epub Tools
epub.py : a simple python script that will take a TXT file and convert it into an .epub file for using on an iPhone ebook reader.

Tags: , , , , , , , , , , , , , , , , ,

Comments are closed.