Nothing fancy, just a personal log with a built in search function so I can recall what is easily forgotten.
Sunday, October 27, 2013
Saturday, October 26, 2013
Starting Cryptolocker Thread
It's my business to know what to do when customers arrive with this problem.
Friday, October 18, 2013
Enhancing W.A.R. - Widespread Augmented Reality
I have been busy enhancing my Android app on Google Play that uses the camera as a view finder to locate your friends at places that interest them, a.k.a. points of interest.
There are actually two apps: 1. Ice Cream Sandwich and lower; 2. Jelly Bean and up. This was necessary because version 1 was crashing on the Samsung Galaxy 3.
Below are typical screen shots of geotags in Los Angeles.
Note that this Android app also creates the geotags, so points of interest are relevant to your clique or set of friends. You can also create geotags remotely with the companion website at SpiderOnFire. Your W.A.R. handles are anonymous and all content can be deleted at your discretion.
Wednesday, September 25, 2013
Implementing the Android Dialog Fragment
Sunday, September 8, 2013
Android Fragment Class Coded Directly on Samsung Galaxy Tab 7 inch
I. Filename: MyDiagFrag.java
public class MyDiagFrag extends DialogFragment {II. Filename: DataActivity.java
Context myContext;
public MyDiagFrag() {
//myContext = getActivity();
//empty constructor
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder aDb = new AlertDialog.Builder(getActivity());
aDb.setTitle("Delete");
aDb.setMessage("Sure about this?");
aDb.setPositiveButton("Yes", null);
aDb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface d, int which) {
d.dismiss();
}
});
return aDb.create();
}
}
public class DataActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.mainlist);
ActionBar actbar = getActionBar();
actbar.show();
actbar.setDisplayHomeAsUpEnabled(true);
// Declare Screen output
// Bunch of code omitted for this example...
lv = (ListView)findViewById(R.id.list);
lv.setAdapter(mAdapter);
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView parent, View view, int position1, long id)
{new MyDiagFrag().show(getFragmentManager(), "MyDiag");}});
// More processing omitted for this example....




