Checkout MINIMO! = baby firefox! - JASJAR, XDA Exec, MDA Pro General

Go fetch tigers
http://www.meer.net/~dougt/minimo_ce/MinimoCE_0.002.zip
Pax
LR

Related

Call of Duty [Clans] [General] [PS3 or 360] [MW2 and Black Ops]

Flame me for making this thread if you feel the need to.
Myself and a few others have started an Android enthusiasts clan for the sole purpose of "dominating other men" on MW2 for 360 both XBOX 360 and PS3. As of now its just myself and 8 others but it'd be pretty sick if we could get this shiitake mushroom poppin' with a plethora of clan members coming from a variety of different Android handsets. Now, we don't have a clan tag just yet, procrastinators, I know, so we'll have to decide on that as well.
Apparently there's already a CyanogenMod Clan over at Steam, so it looks like any Cyanogenmod-like gamertags would kinda', I dunno, make things even more so redundant.
The clan #list on twitter.
Gamertags of the members of the XBOX 360 clan so far are as follows:
Jiqqaman
PsiQo1
xXVital EagleXx
nuzzle79
Double 0 Dub
PsYcHoTiCtAc
unstpblefilipino
topshelfsnippa
dec3ptioncs
Xiophyte
BigPoppaPhat
david279
idiedlastyear
Gamertags of the members of the PS3 clan so far are as follows:
mrbkkt1
Franteeko
ctoueg
If you wanna join, wanna suggest a clan tag, wanna flame me, whatever, feel free to add us up, shoot us a message, or post in this thread. Don't forget to download Jiqqaman's Call of Duty: Black Ops app available on the market free.
add me "unstpblefilipino".. be ready for blackops guys
add topshelfsnippa
Both have been added.
im in its Crack_Monkey91 and its for PS3
BUT CAN SOME ONE TELL ME OUR CLAN NAME lol
haha feel free to add me jdubsfor20 for ps3
Mrcartagena2000/xbox 360

[TIP] AdChecker snippet

Since one on my last Android app caused lots of discussion regarding the "ad-checker" tool, today I'd like to share with all the Android developers the simple peace of code that I'm using there, with the hope that other developers could start using and improving it.
Here it is:
Code:
public class AdChecker
{
private static Boolean m_adsValue = null;
private static final String m_adsChecker = "your_ad_provider"; // example: "admob"
private static final String m_adsHostFilename = "/etc/hosts";
public static boolean isAdsDisabled()
{
synchronized(AdChecker.class)
{
if(m_adsValue == null)
{
m_adsValue = Boolean.FALSE;
BufferedReader reader = null;
try
{
reader = new BufferedReader(new FileReader(m_adsHostFilename));
String line;
while((line = reader.readLine()) != null)
{
if(line.toLowerCase().contains(m_adsChecker))
{
m_adsValue = Boolean.TRUE;
break;
}
}
}
catch(Exception e)
{
}
finally
{
if(reader != null)
{
try
{
reader.close();
}
catch(Exception e)
{
}
}
}
}
return m_adsValue.booleanValue();
}
}
}
A simple usage of this class could be:
Code:
public class YourActivity extends Activity
{
@Override
public void onStart()
{
super.onStart();
if(AdChecker.isAdsDisabled())
{
// alert the user here
finish();
}
}
}
Please lets stop the "adblock" shame...
Brilliant.
I hate adblockers. I don't understand why people complain about an app having ads, if the ads are badly placed or obtrusive then simply don't use the app (or put that in the comments so the developer might change it).
Thanks for the code. I'll definitely be using it in the future
wont this block users who aren't currently connected to the internet though?
hyperbyteX said:
wont this block users who aren't currently connected to the internet though?
Click to expand...
Click to collapse
Short answer: no.
Slightly longer answer: You obviously don't know what you're talking about.
I don't like the ad blockers neither, If developers doesn't monetize their work they'll walk away to other platform if they have life with this.
I'm adding advertisement to my app too, this code is very useful to me. I'm gonna use it for sure, but instead of close the app I will place a custom advertisement of the paid version of my app. Thanks for this great snippet!
Hi,
i will not be forced to see advertising!
Adfree or others is a must have on my device.
with friendly greet
starbase64
starbase64 said:
Hi,
i will not be forced to see advertising!
Adfree or others is a must have on my device.
with friendly greet
starbase64
Click to expand...
Click to collapse
Just as u have the right to block ads we have right to refuse service. Just remember nothing is free, if u believe otherwise you are sadly mistaken.
Sent from my MB860 using Tapatalk
Id rather pay to remove ads but many apps don't have an ad-free version, hence i use adblocker.
Hi,
i buy good apps, but I hate this forced.
with friendly greet
starbase64
This is so nice, also you can add something like this
Code:
if(AdChecker.isAdsDisabled()){
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Dont be a bad guy!")
.setMessage("You have patched Hosts files. This softwares don't tolerate piracy!")
.setCancelable(false)
.setPositiveButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.exit(0);
}
});
AlertDialog alert = builder.create();
alert.show();
}
D4rKn3sSyS said:
This is so nice, also you can add something like this
Code:
if(AdChecker.isAdsDisabled()){
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Dont be a bad guy!")
.setMessage("You have patched Hosts files. This softwares don't tolerate priracy!")
.setCancelable(false)
.setPositiveButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.dismiss();
}
});
AlertDialog alert = builder.create();
alert.show();
System.exit(0);
}
Click to expand...
Click to collapse
very nice!
typo-> priracy
(deleted because of browser spazzing)
D4rKn3sSyS said:
This is so nice, also you can add something like this
Code:
if(AdChecker.isAdsDisabled()){
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Dont be a bad guy!")
.setMessage("You have patched Hosts files. This softwares don't tolerate piracy!")
.setCancelable(false)
.setPositiveButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.exit(0);
}
});
AlertDialog alert = builder.create();
alert.show();
}
Click to expand...
Click to collapse
Fail.
1: Adblocking is not piracy.
2: Don't insult users by calling them bad guys.
3: Your message implies a demand for a system-wide removal of adblocking (your_ad_provider is probably admob). For most, the benefits of this outweigh your app.
4: IP address > obnoxious message.
5: I've bought apps with (blocked) ads before, simply to support the dev, or remove the still wasted screen space. Good luck seeing a cent if your app sticks it's nose where it doesn't belong, and pops up an insulting demand.
6: There are multiple ways around this.
Lol, any ****ty app that uses this to force feed ads will be deleted off my phone immediately. Want money? Make a paid version with no goddamn ads.
But this is also a catch 22, if your app is ad supported only with no paid version, its *probably* not worth installing anyways.
Sent from my *****'n Nexus S.
Thanks for this snippet of code! I'll be using this here in the next few days as I'm currently making the Ad-Supported free version of my app.
I'll probably go the route that another poster has mentioned and if they have ads blocked, put ad add/link to the pay version of the app.
Mucho gracias
Fnorder said:
Fail.
1: Adblocking is not piracy.
2: Don't insult users by calling them bad guys.
3: Your message implies a demand for a system-wide removal of adblocking (your_ad_provider is probably admob). For most, the benefits of this outweigh your app.
4: IP address > obnoxious message.
5: I've bought apps with (blocked) ads before, simply to support the dev, or remove the still wasted screen space. Good luck seeing a cent if your app sticks it's nose where it doesn't belong, and pops up an insulting demand.
6: There are multiple ways around this.
Click to expand...
Click to collapse
Fail.
1: It's not an insult
2: You have no life
3: People has bought my apps
4: People has donated to me
5: Want some more?
6: uMad?
7: Don't push yourself to answer to this, this thread it's dead for me, because i see some trolls here
@OP Keep it up, it's great, don't feed the trolls, for people who knows what developing means, and how much work you put on it, it's very useful.
Good bye
Cheers,
D4.
What apps did you develop?
Sent from my *****'n Nexus S.
what will come next? check to see if i have a firewall and a virus scan installed?
i understand the decision the dev makes here
but since adfree blocks adds in a browser too its ridiculous in my opinion
especially since a 5min google search will give you 95% of the paid market apps for free
@D4rKn3sSyS
LOL of the day: add blocking = piracy awesome logic there
D4rKn3sSyS said:
Fail.
1: It's not an insult
2: You have no life
3: People has bought my apps
4: People has donated to me
5: Want some more?
6: uMad?
7: Don't push yourself to answer to this, this thread it's dead for me, because i see some trolls here
@OP Keep it up, it's great, don't feed the trolls, for people who knows what developing means, and how much work you put on it, it's very useful.
Good bye
Cheers,
D4.
Click to expand...
Click to collapse
Work is fine, get paid by selling your app, not force feeding ads and using fag code like this. Dipshits like you will never have a really popular app.
Be like a real dev and cripple the demo, make all the sweet features paid for. But then again, your one feature wannabee apps wouldn't work then eh?
And since I'm a pirate for ad blocking what does it make me when I download all your .apks from google and not give you a dime.
P.s before you get all seriously worried, I have over 100 dollars worth of paid apps, all paid for.
Sent from my *****'n Nexus S.
I'm planning to let rooted users to revert their hosts file.
If anyone is interested, I will share that snippet too.

[NEW!] SGS Forum Etiquette [i9000] [i9003] [i9000B] [i9000T] [i9000M] [M240S] [02B] +

As many of you know the Samsung Galaxy S (Generation 1) family is growing larger and larger with new sub models variations with minor changes in either the screen from SAMOLED to SLCD or the way they are rooted, and or radio for different regions.
It will be in the best interest of everybody here in the forum to please TAG your messages Subject line with the model of your phone when you are posting a new message, in return that will get you quicker responses from other members that have the same phone model as you do.
Here's a list of the most popular models that are seen the most in this section of the forum:
[02B] = [SC-02B]
[i9000] = [GT-i9000]
[i9000b] = [GT-i9000B]
[i9000m] = [GT-i9000M]
[i9000t] = [GT-i9000T]
[i9003] = [GT-i9003SL]
[m240s] = [SHW-M240S]
other less common models in this section of the forum
[i9008] = [GT-i9008]
[i9088] = [GT-I9088]
[d700] = [SPH-D700]
[i897] = [SGH-I897]
[i500] = [SCH-i500]
[i896] = [SGH-I896]
[i909] = [SCH-I909]
[t959] = [SGH-T959]
[t959d] = [SGH-T959D]
[t959v] = [SGH-T959V]

I'm sharing my VPS - FILEHOSTING FOR DEVELOPERS

Hello to everybody .. i just want to help this community.
I have a VPS located in Romania/Bucharest and he's not busy enough
If you're a developer you can use my servicies.
Site Adress: http://www.sharebitz.net
Annonymous Upload MAX: 50 Mb
Registered Upload MAX: 400 Mb ( i think is enough / per file )
Registered HDD alocation: 5000 Mb
Download speed is limited to 2 Mb/s witch, I say, is a good speed
*I've made this script easy to use and KISS ( Keep It Simple Stupid ) and I just love resumable because if i'm on mobile data i can pause and download later when my connection is better.
Feel free to use my filehosting to share what you want, ROM's - UPDATES - APPLICATIONS - MOVIE - MUSIC - DOCUMENTS - ZIP FILES
I've made a tour for my website, to check it up, click the link below:
SHAREBITZ FH TOUR
I'm glad to help you, my friends !
Good Luck.
I'm waiting for your feedback and i hope you wi'll help this community.
This is my hobby and I don't earn anything, this website is what I wanted all along: minimum waiting time to download, NO ADS, good speed ( not all your bandwith, is limitated on 2 Mb/s for external and for my country[RO] 2.5-3.0 Mb/s ), PAUSABLE and is not a torrent tracker
Post your feedback here, and maybe i will make this filehost script better.
Regards, Zuby
FEEDBACK:
UniversalSS said:
About 700kbps -1. 7mbps
Sent from my LG-KU5900 using xda premium
Click to expand...
Click to collapse
boype said:
That's alright - the mirror is a pretty good one, at least I download with fullspeed. Will add it to the OP.
Click to expand...
Click to collapse
OP: http://forum.xda-developers.com/showthread.php?t=1909785
If I'm right ShareBitz.net currently is for sale.
Domain name: sharebitz.net
Registrant Contact:
www.sharebitz.net
ShareBitz Romania ()
Fax:
bucharest
Bucharest, Bucharest 550221
RO
Administrative Contact:
www.sharebitz.net
ShareBitz Tracker ()
+40.741255088
Fax:
bucharest
Bucharest, Bucharest 550221
RO
Technical Contact:
www.sharebitz.net
ShareBitz Tracker ()
+40.741255088
Fax: +40.741255088
Bucharest
Bucharest, Bucharest 550221
RO
Status: Locked
Name Servers:
dns1.name-services.com
dns2.name-services.com
dns3.name-services.com
dns4.name-services.com
dns5.name-services.com
Creation date: 22 Oct 2009 15:13:24
Expiration date: 22 Oct 2012 15:13:00
Nope, it's not for sale. At oct 22 need to renew this domain .. I have 18 domains and NO ONE is for sale.

Wednesday auspicious day to buy Nexus6

In a statement posted on the Play Store points on Wednesday as the seventh Giono that Google supplies stocks:
_ "We are getting blackberries Nexus 6 devices in stock as soon as possible. To make things simpler for you, we will work to make blackberries devices available each Wednesday and Encourage you to visit the site then." _
* If you are in America F5 *
midan said:
In a statement posted on the Play Store points on Wednesday as the seventh Giono that Google supplies stocks:
_ "We are getting blackberries Nexus 6 devices in stock as soon as possible. To make things simpler for you, we will work to make blackberries devices available each Wednesday and Encourage you to visit the site then." _
* If you are in America F5 *
Click to expand...
Click to collapse
Huh?? Giono? Blackberries? Someone find their crack pipe?
Already a thread on this: http://forum.xda-developers.com/nexus-6/general/google-play-store-inventory-update-11-4-t2929056
Closed

Categories

Resources