Posts tagged class

Shady SMS – Mblware Cease and Desist – Open Source Declaration of Various Code Elements

At the request of Mblware I have changed the name of Android Blackbook to Shady SMS. To completely and unilaterally comply with the cease and desist request the name was immediately changed as to not further infringe on the copyright of Mblware.

I have also adjusted the description of the application, and various instructions as to not use the same semantic terminology as Mblware. This is also to the effect of not infringing on potentially additional copyrights of Mblware.

As a sign of good faith I will be publicly disclosing various code elements to the general public.

To process outgoing calls on the Android operating system several elements are required in the manifest file:

<uses-permission android:name=”android.permission.PROCESS_OUTGOING_CALLS” />

Particularly in the application section, of the manifest, you create a filter associating a particular class with a particular broadcast:

<receiver android:name=”.OutgoingCallReceiver”>
<intent-filter android:priority=”0″>
<action android:name=”android.intent.action.NEW_OUTGOING_CALL”></action>
</intent-filter>
</receiver>

Then in the class you extend BroadcastReceiver and override the onReceive method:

@Override
public void onReceive(final Context context, final Intent intent)

You can then process the outgoing call a variety of ways. I know several of my associates are aborting the outgoing call to change the telephone number to something more economical. You can also abort the outgoing call, for instance, if the screen is off; this can be part of an application to enhance “butt dialing” prevention.

To abort an outgoing call you can use:

setResultData(null);

After the call is aborted you can dial another number using:

Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(“tel: xxxxxxxx”));
context.startActivity(intent);

The previous code is an intent, which can also be used to launch an application activity as follows:

Intent intent = new Intent(context, newActivity.class);
context.startActivity(intent);

All of the above code is part of the Android SDK a publication of predominantly open source code. It is freely searchable, viewable, and downloadable directly from the internet.

All code in Shady SMS is completely unique and derived of novel copyright. The sole reference used to generate the code was and is:

http://developer.android.com/guide/index.html

and:

http://developer.android.com/reference/packages.html

While the vast majority of code in Shady SMS is not open source I have no problem sharing most elements. Any requests for example algorithms can be sent directly to me via the contact tab at the top of this website. Email or call anytime, I’m always around :)

The Great Disparity – Another Inevitability

Based on the ideas I present in The Great Inflation, comes the idea of the great disparity.

American shoppers are splitting again: The affluent are finally starting to buy, picking up designer clothes at places like Nordstrom, while those on the lower economic rungs are still scrimping by, heading to Walmart for the basics.[Source]

This will get worse, and worse and worse. The middle class, and the poor are completely dependant on jobs to make money. The lucky middle class, and poor have job wages that are continually decreasing if not remaining the same.

There is a certain amount of inflation that happens every year. Based on this website the rate of US inflation is 2.5% +- .5%. This means that each year an employee must make 2.5% more money in order to have the same value of income as compared to the previous year. This is clearly not happening, wages are the same if not decreasing!!! Because of this each and every year more and more middle class people are becoming relatively poor. I say relatively poor because even the poor people in this country are extremely wealthy!!; compared ot the poor of other countries (digression, but true).

The rich will always be rich because their money is in the form of an investment. Something that will increase in value as a rate greater than inflation. Because of this the vast majority of rich people are completely immune to inflation. The great disparity will come as the middle class, and the “relative poor” succumb to the inevitability of increased inflation.

The only way the middle class will grow stronger is to experience increased wage, or the available of new forms of employment at a higher wage. Education does not help. I have a 120,000$ Electrical Engineering degree. It does not produce income at or even near that dollar amount.