I was wondering if that's a water dispenser at Mozilla HQ or just a lazy designer stealing their logo ?
Wednesday, January 22, 2014
Water dispenser at Mozilla HQ ?
Labels:
designer,
firefox logo,
water dispenser
Tuesday, May 8, 2012
The Evolution of a Programmer
High School/Jr.High
10 PRINT "HELLO WORLD" 20 END
First year in College
program Hello(input, output)
begin
writeln('Hello World')
end.
Senior year in College
(defun hello
(print
(cons 'Hello (list 'World))))
New professional
#includevoid main(void) { char *message[] = {"Hello ", "World"}; int i; for(i = 0; i < 2; ++i) printf("%s", message[i]); printf("\n"); }
Seasoned professional
#include#include class string { private: int size; char *ptr; string() : size(0), ptr(new char[1]) { ptr[0] = 0; } string(const string &s) : size(s.size) { ptr = new char[size + 1]; strcpy(ptr, s.ptr); } ~string() { delete [] ptr; } friend ostream &operator <<(ostream &, const string &); string &operator=(const char *); }; ostream &operator<<(ostream &stream, const string &s) { return(stream << s.ptr); } string &string::operator=(const char *chrs) { if (this != &chrs) { delete [] ptr; size = strlen(chrs); ptr = new char[size + 1]; strcpy(ptr, chrs); } return(*this); } int main() { string str; str = "Hello World"; cout << str << endl; return(0); }
Master Programmer
[
uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820)
]
library LHello
{
// bring in the master library
importlib("actimp.tlb");
importlib("actexp.tlb");
// bring in my interfaces
#include "pshlo.idl"
[
uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820)
]
cotype THello
{
interface IHello;
interface IPersistFile;
};
};
[
exe,
uuid(2573F890-CFEE-101A-9A9F-00AA00342820)
]
module CHelloLib
{
// some code related header files
importheader();
importheader();
importheader();
importheader("pshlo.h");
importheader("shlo.hxx");
importheader("mycls.hxx");
// needed typelibs
importlib("actimp.tlb");
importlib("actexp.tlb");
importlib("thlo.tlb");
[
uuid(2573F891-CFEE-101A-9A9F-00AA00342820),
aggregatable
]
coclass CHello
{
cotype THello;
};
};
#include "ipfix.hxx"
extern HANDLE hEvent;
class CHello : public CHelloBase
{
public:
IPFIX(CLSID_CHello);
CHello(IUnknown *pUnk);
~CHello();
HRESULT __stdcall PrintSz(LPWSTR pwszString);
private:
static int cObjRef;
};
#include
#include
#include
#include
#include "thlo.h"
#include "pshlo.h"
#include "shlo.hxx"
#include "mycls.hxx"
int CHello::cObjRef = 0;
CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)
{
cObjRef++;
return;
}
HRESULT __stdcall CHello::PrintSz(LPWSTR pwszString)
{
printf("%ws
", pwszString);
return(ResultFromScode(S_OK));
}
CHello::~CHello(void)
{
// when the object count goes to zero, stop the server
cObjRef--;
if( cObjRef == 0 )
PulseEvent(hEvent);
return;
}
#include
#include
#include "pshlo.h"
#include "shlo.hxx"
#include "mycls.hxx"
HANDLE hEvent;
int _cdecl main(
int argc,
char * argv[]
) {
ULONG ulRef;
DWORD dwRegistration;
CHelloCF *pCF = new CHelloCF();
hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
// Initialize the OLE libraries
CoInitializeEx(NULL, COINIT_MULTITHREADED);
CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER,
REGCLS_MULTIPLEUSE, &dwRegistration);
// wait on an event to stop
WaitForSingleObject(hEvent, INFINITE);
// revoke and release the class object
CoRevokeClassObject(dwRegistration);
ulRef = pCF->Release();
// Tell OLE we are going away.
CoUninitialize();
return(0); }
extern CLSID CLSID_CHello;
extern UUID LIBID_CHelloLib;
CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */
0x2573F891,
0xCFEE,
0x101A,
{ 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
};
UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */
0x2573F890,
0xCFEE,
0x101A,
{ 0x9A, 0x9F, 0x00, 0xAA, 0x00, 0x34, 0x28, 0x20 }
};
#include
#include
#include
#include
#include
#include "pshlo.h"
#include "shlo.hxx"
#include "clsid.h"
int _cdecl main(
int argc,
char * argv[]
) {
HRESULT hRslt;
IHello *pHello;
ULONG ulCnt;
IMoniker * pmk;
WCHAR wcsT[_MAX_PATH];
WCHAR wcsPath[2 * _MAX_PATH];
// get object path
wcsPath[0] = '\0';
wcsT[0] = '\0';
if( argc > 1) {
mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1);
wcsupr(wcsPath);
}
else {
fprintf(stderr, "Object path must be specified\n");
return(1);
}
// get print string
if(argc > 2)
mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1);
else
wcscpy(wcsT, L"Hello World");
printf("Linking to object %ws\n", wcsPath);
printf("Text String %ws\n", wcsT);
// Initialize the OLE libraries
hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED);
if(SUCCEEDED(hRslt)) {
hRslt = CreateFileMoniker(wcsPath, &pmk);
if(SUCCEEDED(hRslt))
hRslt = BindMoniker(pmk, 0, IID_IHello, (void **)&pHello);
if(SUCCEEDED(hRslt)) {
// print a string out
pHello->PrintSz(wcsT);
Sleep(2000);
ulCnt = pHello->Release();
}
else
printf("Failure to connect, status: %lx", hRslt);
// Tell OLE we are going away.
CoUninitialize();
}
return(0);
}
Apprentice Hacker
#!/usr/local/bin/perl
$msg="Hello, world.\n";
if ($#ARGV >= 0) {
while(defined($arg=shift(@ARGV))) {
$outfilename = $arg;
open(FILE, ">" . $outfilename) || die "Can't write $arg: $!\n";
print (FILE $msg);
close(FILE) || die "Can't close $arg: $!\n";
}
} else {
print ($msg);
}
1;
Experienced Hacker
#include#define S "Hello, World\n" main(){exit(printf(S) == strlen(S) ? 0 : 1);}
Seasoned Hacker
% cc -o a.out ~/src/misc/hw/hw.c % a.out
Guru Hacker
% echo "Hello, world."
New Manager
10 PRINT "HELLO WORLD" 20 END
Middle Manager
mail -s "Hello, world." bob@b12 Bob, could you please write me a program that prints "Hello, world."? I need it by tomorrow. ^D
Senior Manager
% zmail jim I need a "Hello, world." program by this afternoon.
Chief Executive
% letter letter: Command not found. % mail To: ^X ^F ^C % help mail help: Command not found. % damn! !: Event unrecognized % logout
Labels:
evolution,
funny,
hello world,
programmer
Tuesday, April 24, 2012
Attention Chase users and non-Chase users
There's a new scam/spam going on, don't follow those instructions and don't download and run that html file under any circumstances.
The "From:" of the version I got clearly states: "Chase Service", Chase's domain is chase.com, so why would they email you from nn.com ? In Yahoo Mail you only need to do a mouse over on the "From:".
Here's the content of the scam I got:
"Dear Customer,
A very unusual activity has been detected that was linked to your Chase
account. It appears that
someone gained access to your account without your consent. This intrusion have
led us to restrict
your account access.
In order for you to have full access to your account again, please follow these
two simple steps.
(1) Download the attachment provided by our Security Team.
(2) Open the attached file (in your Web Browser) and fill in the required
fields.
After you have verified your account by following these steps, our automated
security system will
add layers of protection to your account. We would like to thank you for your
serious attention.
Sincerely,
Chase Account Review Team"
There's also file attached, 168KB in size. That's a HTML script that I didn't have the guts to test on my PC. Just ignore it, mark it as spam or report it to Chase.
The "From:" of the version I got clearly states: "Chase Service
Here's the content of the scam I got:
"Dear Customer,
A very unusual activity has been detected that was linked to your Chase
account. It appears that
someone gained access to your account without your consent. This intrusion have
led us to restrict
your account access.
In order for you to have full access to your account again, please follow these
two simple steps.
(1) Download the attachment provided by our Security Team.
(2) Open the attached file (in your Web Browser) and fill in the required
fields.
After you have verified your account by following these steps, our automated
security system will
add layers of protection to your account. We would like to thank you for your
serious attention.
Sincerely,
Chase Account Review Team"
There's also file attached, 168KB in size. That's a HTML script that I didn't have the guts to test on my PC. Just ignore it, mark it as spam or report it to Chase.
Labels:
chase scam,
chase spam,
chase virus
Wednesday, April 18, 2012
And while you're in the SPAM folder...
could I interest you in a SPAM recipe ?
| Click to enlarge |
SAVORY SPAM CRESCENTS
Recipe By :
Serving Size : 16 Preparation Time :0:00
Categories : Sandwiches
Amount Measure Ingredient -- Preparation Method
-------- ------------ --------------------------------
10 sl Bacon, cut in small pieces
1/4 c Finely chopped onion
1 cn SPAM Luncheon Meat, cubed
- 12 oz
1 Egg, beaten
3 tb Grated Parmesan cheese
2 tb Chopped fresh parsley
2 tb Dijon-style mustard
1/8 t Pepper
2 pk Refrigerated crescent roll
-dough (8 oz)
Heat oven to 375'F. In skillet, cook bacon and onion until bacon is
crisp; drain. Stir in remaining ingredients except crescent roll
dough. Separate each package of crescent dough into 8 triangles.
Spread top half of each triangle with SPAM mixture; roll up. Place on
baking sheets. Bake 12-15 minutes or until golden brown. That's it! Now, ENJOY YOUR SPAM! And Spamcop, SUCK ON THIS!
Labels:
desktop fun,
fun,
funny context ads,
google ads,
spam,
spamcop
Wednesday, January 18, 2012
Dear Thunderbird, WTF ?
Labels:
fun thunderbird mozilla emails
Monday, December 12, 2011
Microsoft News TV
Labels:
fun,
microsoft,
microsoft bing,
microsoft news,
news microsoft
Wednesday, December 7, 2011
Linkedin announces
Linkedin announces its users about the email notification system changes:
"We want to let you know about a change we will be making to some of our email notifications to make sure you get important messages as soon as possible.
Previously, due to an error on our part, your default setting was to receive a weekly summary email listing any InMails or Introductions sent to you by other LinkedIn members.
We received a lot of feedback from people saying they'd rather receive these messages right away. With that feedback in mind, we will be changing your setting on December 14, 2011 so you'll receive InMails and Introductions immediately rather than in a weekly digest format.
If you'd like to receive these messages as soon as they are sent, no action is needed. However, if you'd like to change how you receive these messages in the future, you can change your email preferences by selecting the weekly digest format.To learn more about changing your email notifications, please visit our help center.
Sincerely,
The LinkedIn Team"
Labels:
email notification,
linkedin,
social network
Monday, November 21, 2011
Thailand Government is full of goths!
From Wikipedia, the free encyclopedia
| .th is the Internet country code top-level domain (ccTLD) for Thailand. It is administered by T.H.NIC Co., Ltd. (THNIC), formerly known as Thai Network Information Center Foundation. | |
|---|---|
It appears that the .th domain only admits third level domain registrations under its second level domains.
Registration of a .co.th domain name is a complicated procedure, for this reason most Thailand websites prefer to use a .com name. In order to register a .co.th domain name the registrar in Thailand requires copies of company documents in the same name as the required domain name, so for example if you required acme.co.th you would need to have a registered company called Acme Co., Ltd.
A company can only register a single .co.th domain, making it impossible to facilitate easy location of a company's products by using a variety of words or product names as their domain names.
Second level domains
- .ac.th Academic
- .co.th Commercial
- .in.th Individuals (or organizations)
- .go.th Governmental
- .mi.th Military
- .or.th Non-profit organizations
- .net.th Internet provider
Labels:
fun,
goth,
gothic,
thailand,
thailand government
Tuesday, November 15, 2011
Monday, May 23, 2011
Play Angry Birds For Free in Your Browser!
| click on the logo to play |
First released for Apple's iOS in December 2009, Angry Birds is a video game developed in Finland, by Rovio, entertainment media company.
Rovio was founded in 2003 as a mobile game development studio, and the company has developed several award-winning titles for various mobile platforms.
Rovio has developed games with Electronic Arts, Nokia, Vivendi, Namco Bandai and Mr. Goodliving/Real Networks and shipped over 50 mobile titles. But Angry Birds is definitely their greatest hit.
In the game, players must launch birds at structures hosting pigs with the purpose of bringing down the structures and destroying all of the pigs. Advancing through the game, new birds appear, some with special abilities that can be activated by the player. Rovio Mobile has provided numerous free updates to Angry Birds adding new game content. The company has even released stand-alone holiday and promotional versions of the game.
Angry Birds' popularity requested versions for PC and gaming consoles. Its characters might even feature in a film or television series. Due to its combined 200 million downloads across all platforms , the game has been called "one of the most mainstream games out right now", "one of the great runaway hits of 2010", and "the largest mobile app success the world has seen so far".
So, if you don't own an iPhone, or you don't want to install it on your PC or console, you can always play in your browser, by clicking here.
Angry Birds' popularity requested versions for PC and gaming consoles. Its characters might even feature in a film or television series. Due to its combined 200 million downloads across all platforms , the game has been called "one of the most mainstream games out right now", "one of the great runaway hits of 2010", and "the largest mobile app success the world has seen so far".
So, if you don't own an iPhone, or you don't want to install it on your PC or console, you can always play in your browser, by clicking here.
Thursday, May 19, 2011
CashParking with Go Daddy
The most important part of it all is choosing the domain name, I didn't spend too much time choosing mine, so all I could come up with was football-live-streams.com.
I was planning to build a live scores website with maybe some (live?) video streams. Didn't have the time to do it, so I dropped the website dead for a while, I did get to the point where I was making a banner for it :)
Just the other day I remembered that upon registering the domain, I saw a "Cash Parking" option under my Go Daddy account.
At that point Cash Parking seemed exactly what I needed, money from my domains' parked pages. So I went for the Basic plan, they also have a Premium one, next to each plan they have some prices, but it did not occur to me that I will actually have to pay for Cash Parking additionally to the 40% of the revenue that also goes to Godaddy(20% in the Premium plan).
I was planning to build a live scores website with maybe some (live?) video streams. Didn't have the time to do it, so I dropped the website dead for a while, I did get to the point where I was making a banner for it :)
Just the other day I remembered that upon registering the domain, I saw a "Cash Parking" option under my Go Daddy account.
At that point Cash Parking seemed exactly what I needed, money from my domains' parked pages. So I went for the Basic plan, they also have a Premium one, next to each plan they have some prices, but it did not occur to me that I will actually have to pay for Cash Parking additionally to the 40% of the revenue that also goes to Godaddy(20% in the Premium plan).
Pricing is:
1 month: Just $4.99/mo
12 months: Just $4.49/mo Save 10%
24 months: Just $3.99/mo Save 20%
for Basic and
1 month: Just $9.99/mo
12 months: Just $8.99/mo Save 10%
24 months: Just $7.99/mo Save 20%
for Premium.
Your domain does not have to be registered Go Daddy to take advantage of CashParking, but you will have to park the names with Go Daddy in order to begin monetization. If the domain name is home to a web site, CashParking will replace that web site.
After you pick a plan, use the bulk edit tool to add your domain(s) to your CashParking portfolio.
The number of domains you can add is unlimited. You will have to change domain name servers to the Go Daddy parkweb servers for CashParking. After that, ads will be presented on your domain's parked page.
Revenue payment is based on the plan you opted for, Basic or Premium.
US customers receive payment monthly, while International customers will receive payment quarterly. See some samples for domain parked pages here.
Whether it works for you, or not, or how much money you make, it is up to you, your audience and how you advertise your domain.
1 month: Just $4.99/mo
12 months: Just $4.49/mo Save 10%
24 months: Just $3.99/mo Save 20%
for Basic and
1 month: Just $9.99/mo
12 months: Just $8.99/mo Save 10%
24 months: Just $7.99/mo Save 20%
for Premium.
Your domain does not have to be registered Go Daddy to take advantage of CashParking, but you will have to park the names with Go Daddy in order to begin monetization. If the domain name is home to a web site, CashParking will replace that web site.
After you pick a plan, use the bulk edit tool to add your domain(s) to your CashParking portfolio.
The number of domains you can add is unlimited. You will have to change domain name servers to the Go Daddy parkweb servers for CashParking. After that, ads will be presented on your domain's parked page.
Revenue payment is based on the plan you opted for, Basic or Premium.
US customers receive payment monthly, while International customers will receive payment quarterly. See some samples for domain parked pages here.
Whether it works for you, or not, or how much money you make, it is up to you, your audience and how you advertise your domain.
Wednesday, May 11, 2011
Google Under Investigation by US Justice Department
This Tuesday had both, good and bad news for and from Google.
The good news are the new music and movie services announced at Google's annual developers conference in San Francisco. The service is called "Music Beta" and will allow select users to store up to 20,000 songs at the company's servers. The users will be able to stream the music to their computers and some smartphones. Access to movie rental service has been added the Android mobile operating system.
The good news are the new music and movie services announced at Google's annual developers conference in San Francisco. The service is called "Music Beta" and will allow select users to store up to 20,000 songs at the company's servers. The users will be able to stream the music to their computers and some smartphones. Access to movie rental service has been added the Android mobile operating system.
The bad news is that Google is under investigation from the US Department of Justice. Specifically, Google's advertising system is being investigated. The investigation targets to find how the automated advertising system treats some unnamed advertisers, while a separate study is being conducted by the European Commission.
After reporting a net profit of $2.3bn for the first 3 months of the year, Google's Tuesday report US financial watchdog, the Securities and Exchange Commission reported a decrease to $1.8bn, after putting aside $500m to cover any potential fines resulting from the investigation of the charges.
None of the spokesmen, Google's or Justice Department's refused to make further comments. Google only stated: "Although we cannot predict the ultimate outcome of this matter, we believe it will not have a material adverse effect on our business, consolidated financial position, results of operations, or cash flows."
After the refuse to comment by the Google spokesman, questions rise, could the investigations be the consequence of complaints by rivals ? The Europan Comission began its investigation following accusations from Google search engine rivals, including Microsoft's Bing, accusations that mention manipulations of search results in order to promote Google's own services and to discourage advertising with other search engines.
Now, if we sit back and review other major events involving Google this year, inevitably Panda comes in mind. Once Panda was introduced, Google has been accused of bringing Microsoft-owned company ciao.co.uk visibility down by 94%. Is this investigation a consequence of Panda, or Panda's target was to actually "fix" the previous algorithm and to basically put away the tricks that hit Google's rivals.
LastPass Hacked with Possible Data Leaks
This is starting to look like "hacks and leaks season". After Sony's PSN being hacked twice this spring, now it was password management program developer's network, LastPass to be targeted by hackers.
Three month after "one million people have said "goodbye" to password insanity", LastPass announces its users, through an email, that on may 3rd "suspicious network activity" has been detected on their internal network. Investigations determined there is a possibility that "limited amount of data was accessed". As a security measure, LastPass locked down all accounts and prevented access from unknown locations. However, LastPass does not have access to users master password or confidential data.
As an emergency reaction, LastPass quickly implemented a security layer based on the account/IP correspondence. To avoid access from unauthorized IPs, users were forced to set passwords per specific IP they will be connecting from after verifying the email address. To further secure user accounts, LastPass now requires user to verify their identity when logging in. Users are prompted to validate their email when trying to log in from a new location. This prompt will continue to appear until the user changes his master password or indicates that he is comfortable with the strength of the current master password.
Three month after "one million people have said "goodbye" to password insanity", LastPass announces its users, through an email, that on may 3rd "suspicious network activity" has been detected on their internal network. Investigations determined there is a possibility that "limited amount of data was accessed". As a security measure, LastPass locked down all accounts and prevented access from unknown locations. However, LastPass does not have access to users master password or confidential data.
As an emergency reaction, LastPass quickly implemented a security layer based on the account/IP correspondence. To avoid access from unauthorized IPs, users were forced to set passwords per specific IP they will be connecting from after verifying the email address. To further secure user accounts, LastPass now requires user to verify their identity when logging in. Users are prompted to validate their email when trying to log in from a new location. This prompt will continue to appear until the user changes his master password or indicates that he is comfortable with the strength of the current master password.
What is LastPass ?
An online password manager and form filler that makes web browsing easier and more secure.
How to use LastPass ?
Watch the rest of the screencasts here.
Watching those videos you will see what a great piece of software LastPass is. If you are in doubt because of this hack, read their blog and see how professional and quick their reaction was, also they immediately let their users know about the issue, unlike Sony, who needed more than a week to let people know their data might be in the wrong hands.
Monday, May 9, 2011
Why is yahoo.com/mail Trending on Google Trends ??!
First off, what is Google Trends.
Google Trends analyzes Google web searches to computes how many searches have been done for the terms you enter, relative to the total number of searches done on Google over time, you are then presented with a graph of the results – called Search Volume Index graph.
Google Trends is only available in English and in Chinese.
Hot Searches is only available in English, but region specific information for Singapore and India are also available. My Google Trends is U.S. region related.
On the landing page of Google Trends, other than the search box, there is the list of Hot Searches, which are the ... Hot Searches probably updated in real time.
I check Google Trends almost on a daily basis, I've found interesting things and even updated myself with the news. I was just checking it again today, and I saw yahoo.com/mail is treding ... !? Umm, wtf ? I know people are lazy, and don't even try to remember the URL and type it in the search box, but still, how did that send it on the third spot of Google Trends !?
I'm still wondering. Maybe yahoo made some interface changes, though my yahoo mail looks the same. And even with some changes, how dazzled can you be ? What's up with you people !?
Labels:
fun,
google trends,
hot searches google,
wtf,
yahoo mail,
yahoo.com/mail
Thursday, May 5, 2011
In-text context advertisting: Kontera
What is in-text advertising ?
As you already guessed, it is a form of advertising that is published through the textual content of your website. For example, when a user reads your blog article, for some specific words, if they click or mouse-over some words, a small window will pop up and advertise for certain context related products, as presented in the image below:
The contextual advertising system code in the source code of your website will scan the text for keywords and return advertisements related to the content the user is viewing. If the website that uses contextual advertising is a search engine, the visitor will be presented ads related to the keywords of their search/query.
In-text advertising is a somehow special form of contextual advertising. While contextual advertising includes advertisements adjacent to relevant online context, in-text advertising places hyperlinks directly into the text of your webpage.
In my attempts to earn an extra buck from blogging, I decided to give in-text advertising a chance. After closely examining the options, I decided to go with Kontera.
Publishers:
This is the webmasters or website owners category, after signing up, they will publish the advertisements provided by the advertisers.
Kontera ads require no extra space and makes no changes to your website.
If your site generates at least 25k pageviews coming from the US during your first 30 days with Kontera, you qualify for a $50 bonus!
Set up is basically plug and play with the easy-to-install plugins for popular platforms like Blogger, WordPress, Joomla & Drupal. Get further help and assistance from the knowledge base or email tech support which is very quick to answer and qualified.
The fully detailed reports system provides information like:
- The number of pages where Kontera was able to successfully mark with a ContentLink( also called net impressions);
- The number of clicks on the ContentLink;
- Click-Through Rate - percent of clicks versus net impressions;
And of course, revenue report, additional revenue report(like bonuses) and the average revenue per 1k net impressions(eCPM).
Keyword reports and URL reports are available, so you can see which keywords and URLs generated the most revenue.
Kontera’s Story-Level Targeting delivers unmatched user-experience & results. Your content is interpreted in real time and the most relevant and highest paying ads are served to your users. Work with big-brand advertisers like Ford, Microsoft, Procter&Gamble, Kellog's, Sun, Nintendo and benefit from unique creatives that deliver record-high CTRs and CPC.
Kontera have developed their own In-Text relevance engine, called Kontera Synapse. According to digital market intelligence measurement service, comScore, Synapse delivers advertiser performance that’s five times greater than traditional display advertising, and with the new topical-targeting capabilities also provides a platform for a new class of related information and related search applications. For attaining superior brand engagement and campaign results, two complementary capabilities have been introduced: Cost Per View (CPV) pricing and PerformancePLUS, a continuous optimization capability that boosts brand awareness and direct response campaigns by as up to 30 percent. ComScore studied the advertiser performance characteristics of Kontera Synapse engine over a three-month period before releasing the results.
Publishers:
This is the webmasters or website owners category, after signing up, they will publish the advertisements provided by the advertisers.
Kontera ads require no extra space and makes no changes to your website.
If your site generates at least 25k pageviews coming from the US during your first 30 days with Kontera, you qualify for a $50 bonus!
Set up is basically plug and play with the easy-to-install plugins for popular platforms like Blogger, WordPress, Joomla & Drupal. Get further help and assistance from the knowledge base or email tech support which is very quick to answer and qualified.
The fully detailed reports system provides information like:
- The number of pages where Kontera was able to successfully mark with a ContentLink( also called net impressions);
- The number of clicks on the ContentLink;
- Click-Through Rate - percent of clicks versus net impressions;
And of course, revenue report, additional revenue report(like bonuses) and the average revenue per 1k net impressions(eCPM).
Keyword reports and URL reports are available, so you can see which keywords and URLs generated the most revenue.
Kontera’s Story-Level Targeting delivers unmatched user-experience & results. Your content is interpreted in real time and the most relevant and highest paying ads are served to your users. Work with big-brand advertisers like Ford, Microsoft, Procter&Gamble, Kellog's, Sun, Nintendo and benefit from unique creatives that deliver record-high CTRs and CPC.
Kontera have developed their own In-Text relevance engine, called Kontera Synapse. According to digital market intelligence measurement service, comScore, Synapse delivers advertiser performance that’s five times greater than traditional display advertising, and with the new topical-targeting capabilities also provides a platform for a new class of related information and related search applications. For attaining superior brand engagement and campaign results, two complementary capabilities have been introduced: Cost Per View (CPV) pricing and PerformancePLUS, a continuous optimization capability that boosts brand awareness and direct response campaigns by as up to 30 percent. ComScore studied the advertiser performance characteristics of Kontera Synapse engine over a three-month period before releasing the results.
Wednesday, May 4, 2011
Tuesday, May 3, 2011
Atrix - not just a smartphone
You can call it a smartphone, but you are clearly underestimating it! Why ?
Because a dual-core processing technology equipped device is not only a smartphone, along with its webtop feature, it actually mobilizes your desktop!
Atrix does quadruple duty, it can be a laptop, set top box, desktop computer, and as a smartphone too.
Developed on Android 2.2 (FroYo) and 4G enabled, it supports MULTIPLE NETWORKS: WCDMA 850/1900/2100, GSM 850/900/1800/1900, HSDPA 14Mbps (Category 10) Edge Class 12, GPRS Class 12, eCompass, AGPS and it can combine and sync all your social network with MOTOBLUR. It has a 5MP camera with autofocus and flash(LED), front and rear-facing camera can be used as a webcam too, and can capture HD 720p video at a 30 fps rate. It is also able to play videos at a 30 fps rate and accepts formats like AAC, H.264, MP3, MPEG-4, WMA9, eAAC+, AMR NB, AAC+.
Messaging and connectivity:
Emailing is available with Corporate Sync, Google Mail, POP3/IMAP (embedded), Corporate Directory Lookup, also instant messaging via AOL Instant Messenger, Windows Messenger and Yahoo! Messenger and Google Talk.
You can browse the web with the Adobe® Flash® Player 10.1 enabled Android HTML Webkit.
Atrix is all Wifi: 802.11 a,b,g,n and it can be used as a router to share its main 3G connection between other 5 wireless enabled devices.
Needless to say, it supports Bluetooth and (micro)USB2.0 and 3.5 mm headset jack.
It can stream, store and share content with compatible devices around the home like HDTVs, game consoles and PCs as it is DLNA(DIGITAL LIVING NETWORK ALLIANCE) enabled.
GPS AND LOCATION SERVICES available: eCompass, aGPS (assisted) with Google Maps™, Google Latitude™, Google Maps Street View, eCompas.
You can read the full features and specification by visiting the dedicated Atrix page on the official Motorola website.
Messaging and connectivity:
Emailing is available with Corporate Sync, Google Mail, POP3/IMAP (embedded), Corporate Directory Lookup, also instant messaging via AOL Instant Messenger, Windows Messenger and Yahoo! Messenger and Google Talk.
You can browse the web with the Adobe® Flash® Player 10.1 enabled Android HTML Webkit.
Atrix is all Wifi: 802.11 a,b,g,n and it can be used as a router to share its main 3G connection between other 5 wireless enabled devices.
Needless to say, it supports Bluetooth and (micro)USB2.0 and 3.5 mm headset jack.
GPS AND LOCATION SERVICES available: eCompass, aGPS (assisted) with Google Maps™, Google Latitude™, Google Maps Street View, eCompas.
You can read the full features and specification by visiting the dedicated Atrix page on the official Motorola website.
Wednesday, April 27, 2011
The White iPhone is OUT!
Apple has finally confirmed that the long expected WHITE iPhone will become available for sale on Apple.com, Apple stores, authorized Apple resellers, and AT&T/Verizon stores.
The, almost a year long waiting, was caused, according to Apple, by the manufacture process which turned out to be "more challenging to than expected".
A press release by Apple's senior vice president of worldwide product marketing, Philip Schiller states that: "The white iPhone 4 has finally arrived and it's beautiful". Through Schiller voice, Apple also somehow apologies to its customers: "We appreciate everyone who has waited patiently while we've worked to get every detail right."
AT&T's "no commitment" prices start from $499 for a 8GB iPhone 3GS and go up to $699 for a 32GB iPhone 4, and it's cheaper than Verizon, who charges $650 for a no-commitment 16GB iPhone 4 and $750 for the 32GB model.
The, almost a year long waiting, was caused, according to Apple, by the manufacture process which turned out to be "more challenging to than expected".
A press release by Apple's senior vice president of worldwide product marketing, Philip Schiller states that: "The white iPhone 4 has finally arrived and it's beautiful". Through Schiller voice, Apple also somehow apologies to its customers: "We appreciate everyone who has waited patiently while we've worked to get every detail right."
AT&T's "no commitment" prices start from $499 for a 8GB iPhone 3GS and go up to $699 for a 32GB iPhone 4, and it's cheaper than Verizon, who charges $650 for a no-commitment 16GB iPhone 4 and $750 for the 32GB model.
Other than that, AT&T also offers a wide range of iPhone versions, with prices starting from $19 for a refurbished iPhone 3GS - 8 GB, while only the 16GB and 32GB versions of iPhone 4G are available with Verizon.
Labels:
apple,
gadget,
iphone 4g,
iphone 4g jailbreak,
white iphone
PlayStation Network Hack Leaks Sensitive Info of Over 70 Million Users
Not only the gaming network has been affected, the outage also affected the film rental site LoveFilm, as service that is also running over the PS network. Problems have also been reported by the Netflix users.
The company's official position mentions that sensitive data, like credit card information, might have fallen into the hands of an "unauthorized person".
In an attempt to hide the hacking and stop the intrusion, Sony kept the truth from the users, and while it all started on Wednesday, the company waited until yesterday to make the announcement. In a blog post by Head of Communication, Nick Chaplin, the company announces that: "certain PlayStation Network and Qriocity service user account information was compromised in connection with an illegal and unauthorized intrusion into our network." To add to the users' reasons to be unhappy with their membership, not only that the information has been kept away for a week, but they just found out that their info is not encrypted inside the PSN network.
Mr. Chaplin came up with even more excuses in his today's blog post:
"There’s a difference in timing between when we identified there was an intrusion and when we learned of consumers’ data being compromised. We learned there was an intrusion 19th April and subsequently shut the services down. We then brought in outside experts to help us learn how the intrusion occurred and to conduct an investigation to determine the nature and scope of the incident. It was necessary to conduct several days of forensic analysis, and it took our experts until yesterday to understand the scope of the breach. We then shared that information with our consumers and announced it publicly yesterday evening. "
The network's 77 million users have also been emailed about the issue and have been warned that they are at risk of fraud and have been advised to keep a close eye on their bank accounts.
Knowing that most of the online people use the same combination of user name and password, not only their credit cards and PSN accounts are in danger. The hacker(s) can use the email address/password combination to try and break into the users' email accounts where further sensitive information to access other accounts can be found.
Changing password for the other services they use would be the right thing to do now.
Going to the bank and disabling the credit card and ask for a new one would be another smart thing to do, if the bank allows it, and even if it does, this will probably cost extra. I would do it and send the bill to Sony.
Thursday, April 21, 2011
Change.org attacked by Chinese government
In a digital letter sent to its members, Change.org announces that the site has been a target to cyber attacks coming from China, probably ordered by the Chinese government. This is the third day in a row when the Change.org site is attacked by Chinese government coordinated hackers.
Amazon Web Services hosted Change.org now reports:
"Change.org is currently unavailable due to a problem at our hosting provider"
While AWS Service Health Dashboard reports instance connectivity, latency and error rates for its Amazon Elastic Compute Cloud node in N. Virginia and database instance connectivity and latency issues in the same node.
The hackers aren't particularly targeting the website, but a petition hosted on it. The targeted petition is demanding the release of Chinese artist Ai Weiwei and it's been signed by over 100,000 people.
Acclaimed dissident artist Ai Weiwei -- who helped design the famed “Bird’s Nest” stadium for China’s Olympics -- was arrested on April 3rd by Chinese security forces at the Beijing airport. His office and studio have been ransacked, and no one has heard from him since.
The international art community, including the directors of more than twenty leading museums (including the Tate Modern, Museum of Modern Art, and the Guggenheim) started a petition on Change.org. The petition quickly gained worldwide attention, including in the New York Times, LA Times, and Guardian, triggering reactions from political leaders around the world, who are calling for Weiwei's release. Activists have organized peaceful protests at Chinese embassies and consulates.
When the petition page will be available, you can help by signing the petition:
http://www.change.org/petitions/call-for-the-release-of-ai-weiwei
Due to these repeated attacks, the site may be slower than usual or unavailable at times over the next few days.
As Change.org's Patrick says: "Autocratic governments know that the internet is a democratizing force, and they'll do everything they can to suppress online activism. Know that we stand with you for change, and that we will continue to fight to make sure your voice can be heard. "
Update: Due to attacks on Change.org, Amazon WS customers may experience collateral damage, reddit.com already announced that:
" reddit is in "emergency read-only mode" right now because Amazon is experiencing a degradation. they are working on it but we are still waiting for them to get to our volumes. you won't be able to log in. we're sorry and will fix the site as soon as we can. "
Amazon Web Services hosted Change.org now reports:
"Change.org is currently unavailable due to a problem at our hosting provider"
While AWS Service Health Dashboard reports instance connectivity, latency and error rates for its Amazon Elastic Compute Cloud node in N. Virginia and database instance connectivity and latency issues in the same node.
The hackers aren't particularly targeting the website, but a petition hosted on it. The targeted petition is demanding the release of Chinese artist Ai Weiwei and it's been signed by over 100,000 people.
Acclaimed dissident artist Ai Weiwei -- who helped design the famed “Bird’s Nest” stadium for China’s Olympics -- was arrested on April 3rd by Chinese security forces at the Beijing airport. His office and studio have been ransacked, and no one has heard from him since.
The international art community, including the directors of more than twenty leading museums (including the Tate Modern, Museum of Modern Art, and the Guggenheim) started a petition on Change.org. The petition quickly gained worldwide attention, including in the New York Times, LA Times, and Guardian, triggering reactions from political leaders around the world, who are calling for Weiwei's release. Activists have organized peaceful protests at Chinese embassies and consulates.
When the petition page will be available, you can help by signing the petition:
http://www.change.org/petitions/call-for-the-release-of-ai-weiwei
Due to these repeated attacks, the site may be slower than usual or unavailable at times over the next few days.
As Change.org's Patrick says: "Autocratic governments know that the internet is a democratizing force, and they'll do everything they can to suppress online activism. Know that we stand with you for change, and that we will continue to fight to make sure your voice can be heard. "
Update: Due to attacks on Change.org, Amazon WS customers may experience collateral damage, reddit.com already announced that:
" reddit is in "emergency read-only mode" right now because Amazon is experiencing a degradation. they are working on it but we are still waiting for them to get to our volumes. you won't be able to log in. we're sorry and will fix the site as soon as we can. "
Subscribe to:
Posts (Atom)










