Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: fl0ra
  • Content: Threads
  • Order by date
  1. fl0ra

    exec and after...

    Hi guys, I was wondering how to run shell scripts using the tcl exec function and wait for them to finish until I can start the next command... Long story short: foreach i $various_Shell_Scripts { # the commands in each $i are rather complex and long and # I want to execute them in the...
  2. fl0ra

    how to output colored text with a simple puts

    I've tried everything, but I can output a string with a specific color assigned to it. Is any one familiar with that? Note that this is a tcl only script, I'm not using tk at all. Cheers mate
  3. fl0ra

    Scrollable frame with just Tk

    Hi guys, it's been a long time... Anyway, I'm trying to create a scrollable frame using only tk. I tried with text widgets containing other widgets but the scrollbar associated with the text widget won't scroll if the widgets are displayed outside the text widgets. here is my dirty code: <code>...
  4. fl0ra

    regexp

    Hello guys, trying to compute the regexp for this problem, but I can't get it right. Here is the string the string is only composed of at maximum one of each of the following letter A, F, P, and G. and it can include all the them (so max size is 4) so a valid result could be A AG APG AGF GFAP...
  5. fl0ra

    forcing the use of a character set

    I'm trying to force my program to run using a different character set, will this works (I wanna use ISO-8859-1 instead of the UTF-8 by default) : javaw -Dclient.encoding.override=ISO-8859-1 Thank you guys :)
  6. fl0ra

    guys

    I need a tktable.2.9.so for a SunSolaris 5.8 (Sparc) I can't get my hand on it nor can I compile it. I've found Tktable.so.2.6 which works but is only tktable 2.6 and some stuff are not implemented properly... please help :)
  7. fl0ra

    Freewrap and packages

    Hello, I'm trying to use freewrap in order to produce a standalone application. However, I'm using Iwidgets, tktable and the math package. I can't succeed to include them in the wrapper. What am I missing? Anyone familiar with that procedure? Cheers
  8. fl0ra

    Fortran end of string in C

    Hi everyone, I know jack sh*t in fortran and I need to provide to a lib written in fortran a char * that with the fortran end of string character instead of the \0 that will only take a memset but I need to know the code of such a character. Anyone to fill me up on this one?
  9. fl0ra

    -Wall option is driving me crazy...

    ok... In order to please my clients, I have to use the -Wall option with gcc. But... :( It generates sh*t loads of warnings that I do not even know what they mean... here is a piece of my code (the type definition): #define TYPELENGTH(TYPE,N) ((N*(sizeof(TYPE)))+sizeof(char)) /* * Structures...
  10. fl0ra

    realloc

    quick question: does realloc change the location of the allocated chunk? cheers
  11. fl0ra

    Byte reversing?

    Another quick question: I want to reverse the byte(not the bit) I already read in one buffer. I pretty confident there is an existing C function that does that already right? I can write one but I do not think there is any need reinvinting the wheel, innit? say for instance I have read four...
  12. fl0ra

    tridimensionnal array...

    Hello, I usually have quite a clear view of that kind of thing but today I'm just messed up... :) I want to make an on the fly tridimensionnal array. so what about that double *** stuff; stuff=malloc(3*2*5*sizeof(double)); // for a double stuff[3][2][5] is it gonna work? of do I also need...
  13. fl0ra

    perfomance question: strcmp

    Ok... I've a quick performance question: how many clock cycle are required on a P4 to run a strcmp between to char * 0xFF caracters long. also how many clock cycle are required to compute an (int == int) comparison. Cheers
  14. fl0ra

    qsort and bsearch warning at compilation...

    #define L_VARIABLE 0xFF #define N_VARIABLE 173 char...
  15. fl0ra

    compiler and pointer addition...

    Ok guys, I've been wasting 30min on that piece of code, ridiculously easy yet it does not gives me the same address.... yet it should... I just want to understand why... Here goes the code void * target=NULL; void * temporary=NULL; // that is a pointer to a buffer (some might say array) // of...

Part and Inventory Search

Back
Top