Just for reference:
http://www.circuitlake.com/arduino-realtime-audio-processing.html
http://arduino.cc/en/Main/ArduinoBoardADK
It is a so captivating project. I will build this someday when I have spare time, .
I have this board already
http://mcu.emea.fujitsu.com/mcu_tool/detail/DICE-KIT.htm
Sunday, January 15, 2012
Friday, January 13, 2012
Sunday, January 8, 2012
Firefox Adds on to download youtube
Firefox Adds on to download youtube
https://addons.mozilla.org/en-US/firefox/search/?q=flash+download&cat=1%2C38
https://addons.mozilla.org/en-US/firefox/search/?q=flash+download&cat=1%2C38
Saturday, January 7, 2012
Deutsche Wörter
Here are those useful links
Verbformen:
http://www.verbformen.de/
Dictionary:
http://de.wiktionary.org
Verbformen:
http://www.verbformen.de/
Dictionary:
http://de.wiktionary.org
Sunday, January 1, 2012
Trim function for std::string
This is a simple and efficient function to trim a string class in C++
usage example
trim (number, ' ');
I think it is quite clear.
void trim(string& astring, const char t){
string::iterator it;
for (it=astring.begin() ; it < astring.end(); it++){
if(*it==t){
astring.erase(it);
};
}
}
string::iterator it;
for (it=astring.begin() ; it < astring.end(); it++){
if(*it==t){
astring.erase(it);
};
}
}
usage example
trim (number, ' ');
I think it is quite clear.
Subscribe to:
Posts (Atom)