Держите свои планы при себе
Призы: 10 промо-кодов от iPhone-приложения µTickets.
Задание: сделайте ретвит сообщения http://twitter.com/utickets/status/67159259447689216 и ответье личным сообщением @utickets на следующий вопрос.
Сколько бронепоездов имела Красная Армия на начало Великой Отечественной войны?
- (NSString *) md5
{
const char *pUTF8String = [self UTF8String];
unsigned char md5Hash[CC_MD5_DIGEST_LENGTH];
CC_MD5(pUTF8String, strlen(pUTF8String), md5Hash);
// each byte can be represented as 2 hex digits (symbol, char)
char md5HashHex[(CC_MD5_DIGEST_LENGTH « 1) + 1]; // +1 for terminating NULL
char * const hexDigits = “0123456789abcdef”;
for (int i = 0; i < CC_MD5_DIGEST_LENGTH; ++i)
{
md5HashHex[i « 1] = hexDigits[md5Hash[i] » 4];
md5HashHex[(i « 1) + 1] = hexDigits[md5Hash[i] & 0x0F];
//sprintf(&md5HashHex[i * 2], “%02X”, md5Hash[i]); // writes NULL-terminating string at address
}
md5HashHex[CC_MD5_DIGEST_LENGTH « 1] = ‘\0’;
return [NSString stringWithUTF8String:md5HashHex];
}
Researchers are working to develop new video search technologies that do not rely on text-based methods such as metadata. For example, video and audio search engine Blinkx uses speech recognition algorithms to interrogate a video directly. The transcripts it generates provide more data for the text-based search engine. The algorithms attempt to parse a block of speech into phonemes, then reconstruct a sentence out of the phonemes. It might be possible to use the images themselves as part of the search. Meanwhile, the U.S. Defense Advanced Research Projects Agency’s Video and Image Retrieval and Analysis Tool project is using computer vision algorithms to analyze surveillance footage for important events. At the University of Amsterdam (UA), researchers are studying semantic querying, which involves teaching a search engine to recognize semantic concepts. “So with a new video, the model is applied and automatically a measure is given of how likely it is that the concept is present in that video,” says UA’s Marcel Worring. Semantic querying can work on multiple levels, so it can narrow the search more effectively.
http://appinventor.googlelabs.com/about/
You can build just about any app you can imagine with App Inventor. Often people begin by building games like WhackAMole or games that let you draw funny pictures on your friend’s faces. You can even make use of the phone’s sensors to move a ball through a maze based on tilting the phone. But app building is not limited to simple games. You can also build apps that inform and educate. You can create a quiz app to help you and your classmates study for a test. With Android’s text-to-speech capabilities, you can even have the phone ask the questions aloud. To use App Inventor, you do not need to be a developer. App Inventor requires NO programming knowledge. This is because instead of writing code, you visually design the way the app looks and use blocks to specify the app’s behavior.
Как использовать возможности .NET 3.5 и синтаксис C# 4.0 в .NET 2.0
About using MGTwitterEngine
Обсуждение. Третий пост указывает на обучающие видеоролики.