Interesting topic: http://stackoverflow.com/questions/4283043/rewriting-network-packets-on-the-fly-using-libnetfilter-queue
need to test this.
Interesting topic: http://stackoverflow.com/questions/4283043/rewriting-network-packets-on-the-fly-using-libnetfilter-queue
need to test this.
1. http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html#Flash%20Player%20archives
2. Setup FireFox to run flash https://support.mozilla.org/en-US/kb/how-do-i-watch-flash-videos-firefox-android
3. Game Kids can play without worry/no AD: http://www.amyflood.com/good-games-for-kids/
http://docs.opencv.org/modules/core/doc/intro.html#api-concepts
LTE
Bell/Telus : LTE AWS (1700 MHz) or LTE 700 MHz bands, or UMTS/HSPA compatible on 850/1900 MHz bands.
Device:
Ipad mini Cell:
Sumsung:
1. Telus (Koodo)
2G
CDMA 850/1900
EVDO 850/1900
3G (and fake 4G)
HSDPA 850/1900
HSPA+ 850/1900
UMTS 850/1900
WCDMA 850/1900
1x EV-DO CDMA2000
4G (called 4G+)
LTE 1700/2100
——————————————————————–
2. Bell (Virgin Mobile, PC Mobility)
2G
CDMA 850/1900
EVDO 850/1900
3G (and fake 4G)
HSDPA 850/1900
HSPA+ 850/1900
UMTS 850/1900
WCDMA 850/1900
1x EV-DO CDMA2000
4G
LTE 1700
—————————————————————————
3. Rogers (Fido, Petro-Canada Mobility)
2G
GSM 850/1900
GPRS 850/1900
EDGE 850/1900
3G (and fake 4G)
HSDPA 850/1900
HSPA+ 850/1900
UMTS 850/1900
WCDMA 850/1900
4G
LTE 1700
// TRACE macro for win32
#ifndef __TRACE_H__850CE873
#define __TRACE_H__850CE873
#include <crtdbg.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#ifdef _DEBUG
#define TRACEMAXSTRING 1024
char szBuffer[TRACEMAXSTRING];
inline void TRACE(const char* format,...)
{
va_list args;
va_start(args,format);
int nBuf;
nBuf = _vsnprintf(szBuffer,
TRACEMAXSTRING,
format,
args);
va_end(args);
_RPT0(_CRT_WARN,szBuffer);
}
#define TRACEF _snprintf(szBuffer,TRACEMAXSTRING,"%s(%d): ", \
&strrchr(__FILE__,'\\')[1],__LINE__); \
_RPT0(_CRT_WARN,szBuffer); \
TRACE
#else
// Remove for release mode
#define TRACE ((void)0)
#define TRACEF ((void)0)
#endif
#endif // __TRACE_H__850CE873