No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Hi! I use spim mips emulator and have the following code in my program: [CODE]li $v0, 8 la $a0, buffer syscall[/CODE] When i execute the program it just skips over the syscall instead of waiting for user input. I have a identical syscall earlier in the program that works fine. …
Never tried myself but i think Tesseract OCR can be used to read some kinds of captcha. http://code.google.com/p/tesseract-ocr/
Hi! I read a string from console with syscall and store it to my .space buffer. [CODE] li $v0, 8 la $a0, buffer la $a1, buffer syscall [/CODE] With my string in the buffer i would like to iterate over it and i guess i need to know how long …
Hi! I'm pretty new to C and have to write something that handles strings. I have some experience with python and C++ but i find C string handling pretty strange/ugly. Is the following code really the best way to put together a string containing multiple strings? [CODE] strcat(string1, string2); strcat(string1, …
Hi! Long time since i done any bash scripting. Is it possible to pass a arguments in functions? Something like: [CODE]recivefunc(SOMETHING) { echo $SOMETHING } passingfunc() { SOMETHING=test recivefunc($SOMETHING) } [/CODE]
The End.
laserlars