Blu M4+ Cell Phone at Walmart is ONLY 3G

January 4, 2020

Blu M4+ Cell Phone at Walmart is ONLY 3G.

Do NOT buy it.  As of 1/4/20 all of the Blu cell phones are the 3G ones… which are horribly slow.  There are a few at Best Buy that are 4G LTE.  I’d probably still recommend the Moto E6 Play instead, which is a MUCH better phone/hot spot.

_________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

_________________________________________________

Blu is making unlocked phones possible to use on T-Mobile and MORE IMPORTANTLY for Mint Mobile which is an MVNO for T-Mobile.

For the Android part… if you connect it to USB 2.0 port on your laptop/computer.  The Blu M4+ thinks it is an Advance L5 (no idea why)

Google_ADB_Composite and  640_width while it is 480×800 screen

Mint Mobile is presently offering some crazy good deals on 15Gig of LTE data/month at 3mths of $15 for $45 total.  If you live in the cities and along highways, it is worth taking a look at.

It will be VERY difficult if not impossible to get your money back for this unlocked Walmart phone per the Walmart unlocked policy.

That is clearly WRONG and should be illegal.

I was fortunate to find a store that took mine back.

Once again… I’d probably still recommend the Moto E6 Play instead, which is a MUCH better phone/hot spot for using with Mint Mobile’s data special.

Your mileage may vary and check all of the facts at the time you are checking into this.

Why does the Discover Card Robot Sound Like Warren Buffett?

December 21, 2019

Why does the Discover Card robot sound like Warren Buffett?

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

I don’t have an answer for this… just occurred to me and it’s annoying.

“What can I help you with?

Just so you know… this call may be recorded or monitored for quality purposes.”

 

Ok, Warren… Knock it off.

John Belushi on Weather… March Weather

November 12, 2019

Sometimes March….comes in like a lion

and goes out like a lamb….

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

But in other countries?

Sometimes March comes in like an emu…

 

Elliott Gould Cancels Star Trek – SNL Classic

November 12, 2019

John Belushi as Captain James T. Kirk.

We’re being pursued by a late model gas combustion vehicle.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

C# WPF Database Methods

November 10, 2019

C# WPF Database Methods, etc on right-hand side in VS2019.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________
Da1taset__VS2019_Csharp_WPFDa2tasetDataTable__VS2019_Csharp_WPFDa3tasetDataTableRowDelete__VS2019_Csharp_WPFDa4tasetDataTableRowTableAdapter__VS2019_Csharp_WPFDa5tasetDataTableAdapter_and Manager_VS2019_Csharp_WPFDa6tasetDataTableAdapterManager_VS2019_Csharp_WPF

C# WPF VS2019 – Adding .accdb Database binding to textBoxes

November 6, 2019

C# WPF VS2019 – Adding .accdb Database binding to textBoxes

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

In VS2019 in the top Menu… Tools -> Connect to Database

That dataset will have a BindingSource.

//Click events for MoveNext and MovePrevious

private void button3Next_Click(object sender, EventArgs e)
{

carTable1BindingSource.MoveNext();

}

private void button4Prev_Click(object sender, EventArgs e)
{
carTable1BindingSource.MovePrevious();
}
D1__Tools__Connect_Database__accdb_Tables_CarTable1_Fields
D2ataSource__AddDataSource__DataSet_CheckShowConnectionStringOLEDB_12___
D3__LocalDatabase__CopyToProjOutputFolderYes___F1
D4atabase__CheckOff_FieldsToUse
D5ataSource__textBox1ID_Databinding_ChangeFromNONE_to_CarTable_ID_Field
D6ataSourceAfter_Binding_textBox1ID_NoticeNewIcons__DataSet__Table1BindingSource__Table1TableAdapter
D7ataSet__Next_Prev_ButtonClickEvents__use_Table1BindingSource___MoveNext__MovePrevious_Methods

C# WPF Forms in VS2019 Community

November 6, 2019

C# WPF Forms in VS2019 Community

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Form1.cs <—- the csharp code

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsCsharpApp1
{

public partial class Form1 : Form
{
public Form1()
{

InitializeComponent();
}

//Declare variables here
public double dbl_in1;
public double dbl_in2;
public double dbl_output3;
private void button1add_Click(object sender, EventArgs e)
{
double.TryParse(textBoxInput1.Text, out dbl_in1);
double.TryParse(textBoxInput2.Text, out dbl_in2);

dbl_output3 = dbl_in1 + dbl_in2;

textBoxOutput3.Text = dbl_output3.ToString();
if (dbl_output3 == 5)
textBoxOutput3.BackColor = Color.FromArgb(0, 255, 255);
else
textBoxOutput3.BackColor = Color.FromArgb(255, 255, 0);

switch (dbl_output3)
{
case (0 ):
textBoxOutput3.BackColor = Color.FromArgb(255, 0, 0);
break;

case 2.0:
textBoxOutput3.BackColor = Color.FromArgb(0, 255, 0);
break;

case 4.0:
textBoxOutput3.BackColor = Color.FromArgb(0, 0, 255);
break;
}

int a = 0;
int b = 255;
while (a < b)
{
a++;
//
Console.WriteLine(a);
Graphics g;

g = this.CreateGraphics();

Pen myPen = new Pen(Color.FromArgb(a, 100, 100));
myPen.Width = 1;
g.DrawLine(myPen, 30, a, 45, 65);

g.DrawLine(myPen, 1, a+10, 45, 65);

}
}

private void button2clear_Click(object sender, EventArgs e)
{
dbl_in1 = 0.0;
dbl_in2 = 0.0;
dbl_output3 = 0.0;
textBoxInput1.Text = “”;
textBoxInput2.Text = “”;
textBoxOutput3.Text = “”;
textBoxOutput3.BackColor = Color.FromArgb(255, 255, 255);

}
}
}
______________________________________________

Form1.Designer.cs  <——–

/// This file you’d normally see as toolbox object graphics like Button and textBox in VS

/// You’re seeing it as text because I left clicked on the file in Windows Explorer and

///rightmouse “edit” which opened it in notepad

namespace WindowsFormsCsharpApp1
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name=”disposing”>true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code

/// <summary>
/// Required method for Designer support – do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.textBoxInput1 = new System.Windows.Forms.TextBox();
this.textBoxInput2 = new System.Windows.Forms.TextBox();
this.textBoxOutput3 = new System.Windows.Forms.TextBox();
this.button1add = new System.Windows.Forms.Button();
this.labelInput1 = new System.Windows.Forms.Label();
this.labelInput2 = new System.Windows.Forms.Label();
this.labelOutput3 = new System.Windows.Forms.Label();
this.button2clear = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBoxInput1
//
this.textBoxInput1.Location = new System.Drawing.Point(166, 83);
this.textBoxInput1.Name = “textBoxInput1”;
this.textBoxInput1.Size = new System.Drawing.Size(100, 22);
this.textBoxInput1.TabIndex = 0;
//
// textBoxInput2
//
this.textBoxInput2.Location = new System.Drawing.Point(166, 122);
this.textBoxInput2.Name = “textBoxInput2”;
this.textBoxInput2.Size = new System.Drawing.Size(100, 22);
this.textBoxInput2.TabIndex = 1;
//
// textBoxOutput3
//
this.textBoxOutput3.Location = new System.Drawing.Point(166, 244);
this.textBoxOutput3.Name = “textBoxOutput3”;
this.textBoxOutput3.Size = new System.Drawing.Size(100, 22);
this.textBoxOutput3.TabIndex = 2;
//
// button1add
//
this.button1add.Location = new System.Drawing.Point(304, 303);
this.button1add.Name = “button1add”;
this.button1add.Size = new System.Drawing.Size(75, 23);
this.button1add.TabIndex = 3;
this.button1add.Text = “Add”;
this.button1add.UseVisualStyleBackColor = true;
this.button1add.Click += new System.EventHandler(this.button1add_Click);
//
// labelInput1
//
this.labelInput1.AutoSize = true;
this.labelInput1.Location = new System.Drawing.Point(55, 87);
this.labelInput1.Name = “labelInput1”;
this.labelInput1.Size = new System.Drawing.Size(51, 17);
this.labelInput1.TabIndex = 4;
this.labelInput1.Text = “Input 1”;
//
// labelInput2
//
this.labelInput2.AutoSize = true;
this.labelInput2.Location = new System.Drawing.Point(55, 127);
this.labelInput2.Name = “labelInput2”;
this.labelInput2.Size = new System.Drawing.Size(51, 17);
this.labelInput2.TabIndex = 5;
this.labelInput2.Text = “Input 2”;
//
// labelOutput3
//
this.labelOutput3.AutoSize = true;
this.labelOutput3.Location = new System.Drawing.Point(55, 249);
this.labelOutput3.Name = “labelOutput3”;
this.labelOutput3.Size = new System.Drawing.Size(59, 17);
this.labelOutput3.TabIndex = 6;
this.labelOutput3.Text = “Output3”;
//
// button2clear
//
this.button2clear.Location = new System.Drawing.Point(404, 303);
this.button2clear.Name = “button2clear”;
this.button2clear.Size = new System.Drawing.Size(75, 23);
this.button2clear.TabIndex = 7;
this.button2clear.Text = “Clear”;
this.button2clear.UseVisualStyleBackColor = true;
this.button2clear.Click += new System.EventHandler(this.button2clear_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.button2clear);
this.Controls.Add(this.labelOutput3);
this.Controls.Add(this.labelInput2);
this.Controls.Add(this.labelInput1);
this.Controls.Add(this.button1add);
this.Controls.Add(this.textBoxOutput3);
this.Controls.Add(this.textBoxInput2);
this.Controls.Add(this.textBoxInput1);
this.Name = “Form1”;
this.Text = “Form1”;
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.TextBox textBoxInput1;
private System.Windows.Forms.TextBox textBoxInput2;
private System.Windows.Forms.TextBox textBoxOutput3;
private System.Windows.Forms.Button button1add;
private System.Windows.Forms.Label labelInput1;
private System.Windows.Forms.Label labelInput2;
private System.Windows.Forms.Label labelOutput3;
private System.Windows.Forms.Button button2clear;
}
}

While I was asleep in 2015, Android Development Left the Eclipse IDE and Migrated to Android Studio

February 8, 2019

I just tried to get the Eclipse IDE going again to get back into Android development and saw a posting about the migration to Android Studio.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

I’m trying Android Studio Ver. 3.4

To check or change the particular Android SDK’s that you have installed:

Click [File] -> [Settings] and in the search box, type SDK

I checked off one that wasn’t installed and got

“Installation did not complete successfully — See IDE Log”

To change the SDK’s without error, on the Android Studio icon

and [Run as Administrator]

Get several gallons of coffee as the SDK downloads…..take…quite…a…while.

I’d recommend adding one and see how that goes on your internet connection.

Here is a link to past Android development efforts on the Eclipse IDE.

https://mrobvious.wordpress.com/2011/06/15/dabbling-in-android-sdk-r11-and-eclipse-ver3-7-indigo-and-adt-plug-in/#comment-11852

A Classic – Bill Clinton Voki

April 30, 2018

This was from 10 years ago… and still appropriate.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Without further ado, please enjoy a Bill Clinton parody.

Bill Clinton Voki

Bill

A Classic – Yes He Can – Kim Jong IL MadTV

April 30, 2018

This was from 10 years ago… and still appropriate with Kim Jong Un

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Without further ado… Kim Jong Il parody of Obama’s Yes I Can….

With a BeeGee …How about the 70’s ????

Will-i-am parody.

He can shape the future…..

Michael Savage – Borders, Language, Culture

September 25, 2016

Hear about news you won’t find on the corrupt, biased media.

http://conservativestream.com/recorded-shows/savage.php

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

I don’t agree with every thing there, but it is BY FAR better than most media these days.

#MakeAmericaGreatAgain

 

Windows 10 – I’m Not Going to Upgrade – NOPE

August 30, 2015

Windows 10 is being very heavily pushed.  It is likely a free upgrade for most.

BUT.

#1. The first thing I had heard that was a turn-off.  Secure Boot.  It was going the stop you from dual booting Linux.  I’m hearing that there may be work arounds to still dual boot, but I’m not convinced.

#2. It shares contact information?  Once again, I’m not interested.

#3. Updates are mandatory for most, except some exceptions/delayed updating for business/enterprise.

#4.  They are working toward a time when you will have to pay for the mandatory updates.  #fail

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

And beyond everything, there has been a lot of hype in the media “encouraging” everyone to go along.   #fail

I’m perfectly happy with Win 7, Win 8.1 and an old system still happily running XP…. yep

Win 8 Consumer Preview Loaded…Adding VS 11 Beta Ultimate

March 25, 2012

Win 8 Consumer Preview Loaded…Adding VS 11 Beta Ultimate

It’s only 8 Gig.. what could possibly go wrong.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Win8 Consumer Preview Screen 70 pct

Win8 Consumer Preview Screen 70 pct

I’m hoping there is a way to bind Access Jet databases to textboxes now.

We shall see.

More to come on this as it does or does not unfold

CLR GUI for VS2010 C++

January 16, 2012

Using help from a forum called http://stackoverflow.com , I finally got the String to double and double to String

conversions going.

The CLR gui looks a lil more polished than MFC but requires .NET framework of the correct version when it runs.

The MFC that I got to work first has the String to double and double to string built into the EditText.  You right mouse

and tell what double variable you want the EdtText to use.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

//Here is the conversion part CLR C++ GUI
//CLR isnt too bad… better than MFC yes?

double dblInput1 = 0.0;
double dblInput2 = 0.0;
double dblAnswer = 0.0;
String ^ strInput1;
String ^ strInput2;
strInput1 = this->Input1textBox->Text;
strInput2 = this->Input2textBox->Text;

if (Double::TryParse(strInput1, dblInput1) & Double::TryParse(strInput2, dblInput2))
{
// do something
dblAnswer = dblInput1 + dblInput2;

Answer1textBox->Text = System::Convert::ToString( dblAnswer );
}

else
{
// the text was not a number
MessageBox::Show(“Error”);
}

FHM Men’s Magazine – in Other Countries

December 4, 2011

To be honest, I’ve never bought this on the news stand.

I’ve stopped to take a quick gander…here or there.

There are online versions for many countries and they are slightly different.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Here are a few I noted.

http://www.fhm-international.com/ Lists all the countries available

http://fhmindia.com/ India – Veena Malik causing a stir for Pakistan

http://www.fhm.nl/ Netherlands

http://www.fhm.com.ph/ Philipines

http://fhm.co.za/ South Africa – Zambia

http://www.trends.com.cn/ China

http://www.fhm-magazin.de/ Germany

http://www.fhm.com.au/ Australia

I Got Bluestack to Work With My Android 2.3.3 App…Sweet

October 13, 2011

I got Bluestack to work with my Android2_3_3 app…SWEET…

It’s WAY FASTER than the eclipse emulator

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Android2_3_3 Proj12 Bluestack Win8

Android2_3_3 Proj12 Bluestack Win8

 

The Android 2.3.3 SDK was as far as I could go without getting an error.

More on this as it develops.

After Disaster Intro Song – “Happy” – Mike Carano

September 3, 2011

The song is here

http://mikecarano.com/Happy_c.Mike_Carano.mp3

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

I just hand typed the lyrics here:

Mid—-night…
Comes a li-ttle
fas-ter

Runs another stop sign.
Ha-ppy e-ver
af-ter

When she lets her
guard down…
Laughing at the
stupid things
I say.

Moon—light
Under neath the win-dow
Reflecting in the tear drops
Falling on the pillow
And she asks me
Have you ever been so happy
that it makes you wanna cry?

Have you ever been so happy
that it makes you wan-na cryyyyyyyy?

List-en up
There’s something I should
tell you
I was not al-ways
Like this

I used to be so mis- reble
And ev-ery boy who
touched me
or ever tried to fuck me

I used to be so
fran-tic
at home a-lone on
week ends

Tel-evision by myself
Waiting for the
phone

Feel-ing ug-ly

Have you ever been so lonely
that it makes you wanna die?

Have you ever been so lonely
that it makes you wan-na diiiiiiie?

(Music interlude)

Breaking up is no lon-ger
an op-tion
Resonating …in ….my ….head
My favorite thing
She nev-er
said to me

Shot gun
Marriage on the first date
Vegas
and I could
Not
wait

We talked it o-ver
and saw Tom Jones
in-stead

And he was JUST
mag——nif-i-cent

wo-ah
wo-ah
woah
she’s a la-dy

Keep it goin….

Have you ever been so lonely
that it makes you wanna die?

Have you ever been so empty
that it makes you feel like

Have you ever been so happy
that it makes you  cryyyyyy?

Gone are the sorrows
(ca thunk…ca…thunk)
Gone are the tears
For you
love me tru-ly
True ly….
Dear
(Baaaaaah)

Van with a Seized Motor from Sitting Three Years

August 5, 2011

A van with a seized engine…(from sitting)…

will attempt to turn it back and forth by hand with a long socket wrench

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

after some Marvin’s mystery oil and ATF fluid and a dash of PB Blaster in each spark plug hole….

Should be interesting…
Experiences? Thoughts?

*****

Step one: pray ( a lot)

Step two: Google forums about old car restoration and seized motors

Step three: PB Blaster and Liquid wrench on old spark plugs (about three days – spray and wait…repeat)

On this Chevy van, a reciprocating saw was used a few times to make

some additional space around select plugs for access.

Step four: With a small piece of pipe for leverage, carefully, slowly remove the plugs

I still snapped the ceramic end on three of eight plugs, but the nut part of the plug was fine

Step Five: With a small clear plastic tube in each tube, insert PB Blaster in each cylinder and repeat

over a few days.  Then insert ATF in each cylinder several rounds. And finally add a round of 10w40 oil

Step Six: Go to Harbor Freight and buy a special vise grip with chain attached (used for large oil filters?)

and that was what I had to wrap around behind the main shaft pulleys and the harmonic balancer

in order to (eventually) hand turn the motor.

(on this motor the nut on the main pulley was small 5/8″ and hard turning it would have either loosened it

or snapped it off) [Not a plan]

I gripped a socket and the arm of a 25″ long breaker bar for sockets and eventually turned the motor a quarter turn in each direction.

Then a half turn each way.

Then a full turn.

Then two turns.

*** I didn’t actually need the Marvin’s mystery oil in this case even though I bought some just in case.

Step Seven: Install new plugs.

Step Eight: (I had already blown compressed back through the input fuel pump line back into the gas tank

to clear it and then hand squeeze pump fuel back into the line)

Step Nine: New battery and start it up.

After a few minutes…shut it off and change the oil

Step Ten: Start it up and let it run a few mins at a time to slowly burn/flash off all the ATF in the cylinders (lots of white smoke)

After Disaster – Intro Song – “Happy” by Mike Cerano – Very Cool !!!!

August 3, 2011

Mid – night….comes a lil faster…..runs another stop sign…. It’s After Disaster ___(a show they are doing on Sun and Thurs

nights [typically] on http://lovelineshow.com afterward at midnight pacific

With Loveline Engineer @Andersoncowan , @mikecerano @TylerRuinsRadio

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

[You likely have to use the IE browser to hear the

actual show] and old shows are on itunes

*** This is just the really cool intro song

Intro song by Mike Cerano
called “Happy”
http://mikecarano.com/Happy_c.Mike_Carano.mp3

… we talked about it and saw Tom Jones instead….and he was…just .mag—nif—i-cent……(oHhh​ha Ohhha she’s a la-dy)

Enjoy the tune…. and the show….!

A Strange Feature of Wolfram Alpha – Where am i?

August 3, 2011

Wolfram Alpha continues to not impress but this was mildly interesting (although Im not sure it’s always accurate)

http://www.wolframalpha.com/input/?i=Where+am+IF+64.134.170.58

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Just put in your actual IP in place of the one above in the browser URL line and it returns

where it thinks you (or that wifi router) are.

Don’t know your IP?  Use this (http://www.whatismyip.com/)

or google for a similar site.

Ahh, Someone Feeling My Pain… Eclipse, Java/XML and the bless-ed Emulator

August 2, 2011

This needs a repost…or 3
http://nfarina.com/post/8239634061/ios-to-android
Ahh someone feeling my pain….

“You’re going to just hate Eclipse. You’re going to hate it with the heat of a thousand suns.

It’s going to feel slow and bloated and it won’t taste like real food.

Eclipse is a world unto itself.”

Ahh, so this is just chronicling the pain of translating IOS to Java….using Eclipse, Java and the bless-ed emulator.

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

More to come on this….as others moan and throw things

Anyone Use a VPN Service?

August 1, 2011

Anyone use a VPN service (that is not their company’s and preferably free or low cost) ?

Any experiences, thoughts or recommendations?

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Depending on the response, I may or may not post the replies on this one.

Denying Friend Requests in Facebook …FaceBaggery

July 17, 2011

I know this will change over time… But as of July 16, 2011, you click “Not Now” (which I don’t like at all)

This still allows that person to see some things on their feed about you….

________________________________________________

Thanks for checking  out my posting.

Check  out the latest at https://mrobvious.wordpress.com No scraping please…..

________________________________________________

Then you have to go to https://www.facebook.com/reqs.php

To see “hidden requests” where you just sent the “Not Now” one….

Then you answer “Do you know this person outside Facebook?”  (I don’t them at all Zuckerberg you idiot)

When you answer No…it says…

“Thanks. This person won’t be able to send you any more friend requests. Undo.”

Man o Man Another 7.3 Earthquake Honshu, Japan

July 10, 2011

Man o man another 7.3 earthquake Honshu Japan @katz515

http://earthquake.usgs.gov/earthquakes/recenteqsww/Quakes/quakes_big.php

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

Katz san is on Twitter.

More to come as this unfolds.

Shame on you Ron Paul and Barney Frank – Federal Marijuana Law

June 23, 2011

Shame on you Ron Paul (TX) and Barney Frank (D-MA) for introducing a bill to weaken our Federal drug laws.

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

This is an outrage.  Ron and Barney, please get your sorry unAmerican ass on a plane for Amsterdam so you can live with a bunch of loser stoners in a place of low morals, low productivity and low prosperity.

Doesn’t this country have enough problems?  We need more stoner morons?  Really?  No, really?

When was the last time the Netherlands was number one in anything?   Exactly.

The remaining House boneheads that supported this are: Democrats  Rep. John Conyers of Michigan, Rep. Steve Cohen of Tennessee, Rep. Jared Polis of Colorado, and Rep. Barbara Lee of California

Here’s the story via yahoo news.

http://news.yahoo.com/s/yblog_theticket/20110623/pl_yblog_theticket/house-bill-would-repeal-most-federal-marijuana-laws-leave-choice-to-states?bouchon=623,tx

Let’s be clear… loser idiots that really wanna do that stuff already do it…

The ultimate reason for the law is that there is leverage to use to jail these morons when they stop getting stoned in their mom’s basement and start trying to traffic it and use it close to schools and the civilized population that doesn’t want to be around stoner morons.

For every person that can occasionally use this stuff, there are MANY that are horribly enslaved to it and can’t walk away….(a month doesn’t count…it’s straight up addiction in MOST cases) .  I know of several cases where good people are trapped and throwing their lives away on this life crippling junk.  It’s truly sad.

I call for Ron Paul and Barney Frank to step down… MOST of  the American people like a sane and sober society thanks.

Dabbling in Android SDK r11 and Eclipse Ver3.7 Indigo and ADT plug-in

June 15, 2011

Since the Blocks Editor and Android emulator was horribly slow and unreliable… Ive moved on the Android SDK r11 and it’s Android SDK AVD Manager

*** Latest  – I’m using the Bluestack windows based Android emulator to run anything from Eclipse that compiles without errors to an .apk file.  See this posting https://mrobvious.wordpress.com/2011/10/13/i-got-bluestack-to-work-with-my-android-2-3-3-app-sweet/

*** Latest

I have gotten one click event to work, that only writes a Toast message on the screen (Not a textbox yet)

private void showToastMessage(String msg){

Toast toast = Toast.makeText(this, msg, Toast.LENGTH_SHORT);

toast.show();

}

The critical things I’m doing seem to be:

1. [Project] then [Clean…]

2. On the “Run” toolbar dropdown, do [Run Configurations…] then click the [Target] tab

Make sure you have the correct emulator/android version and scroll down to check off “Wipe User Data”

Then ‘apply” and “Run”

This seems to launch and load the emulator in a more stable way. (still pretty slow and some App stopped

unexpectedly, but SOME success too)

*** The state of things:

I have one app that crashes “Stops Unexpectedly” as you launch it (never even shows the GUI)

and the other launches ok and you see the buttons….but “Stops Unexpectedly” when you click on a button.

1. One person suggested there might be errors in manifest…Mine was autogenerated by Eclipse.  Fix what?

2. One person suggested doing [Project] then [Clean…] in Eclipse

3. Another said there were known bugs and alleged workarounds in the windows Eclipse.  Anyone point to links for this?

Has anyone gotten any complete example working on this emulator? 

It’s really starting to feel like this is broken and Google and IBM need to fix.

I have Java 6 and Eclipse Ver 3.7 Indigo loaded

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

First off… when you launch Android SDK AVD Manager it tries to download and then install how ever many of the Android emulator platforms for Windows (in  my case although there are Linux and Mac versions)

They are shown as

api12 (really Android Honeycomb 3.1)

api11 (really Android Honeycomb 3.0)

api10 (really Android  Gingerbread 2.3.3)

api9 (really Android Gingerbread 2.3.1)

api8 (really Android Froyo 2.2)

— I guess Ice Cream Sandwich will be 4.0 but it isnt released till fall 2011

** The first weirdness is…All of those downloads show as Linux… except the api8 = Froyo 2.2

** The second weirdness… is… the .zip files download fairly fast… HOWEVER…

the zips extract REALLY slow.

So…. I allowed the SDK AVD Manager to download them  one at a time… then stop the install part and kill the process.

Then I extracted the 3.1 zip in Win7… That and the copy to “platforms folder” took about 2 hours.  There are 4600 items in the “data” subfolder…

The 2.3.3 vintage zips took about an hour and fifteen minutes each…

** Then I relaunched the Android SDK AVD Manager… all the platforms are there now. … and I created an AVD Emulator for each…. So… it appears that all of the zips were windows and only mislabeled Linux.

Android 3.1 Honeycomb AVD Emulator

Android 3.1 Honeycomb AVD Emulator

Now, on the Eclipse Indigo Java IDE side… I launched the Android ADT plug-in that I downloaded but it isn’t recognized yet. (See the green text below..)

So, now I’m exploring how to get an example going in java in the Eclipse IDE and connect to the AVD Emulator….and preferably to connect java examples to the emulator WITHOUT Eclipse which allegedly is possible..

*** I tried adding  ADT Android for Ecplipse Ver 3.7 Indigo again…

This time I did it from within Eclipse Indigo…Using the menu bar [Help], [Install new software] then you have to supply it a URL that I got from this site for Android developers.

http://developer.android.com/sdk/eclipse-adt.html#downloading

  1. Start Eclipse, then select Help > Install New Software….
  2. Click Add, in the top-right corner.
  3. In the Add Repository dialog that appears, enter “ADT Plugin” for the Name and the following URL for the Location:
    https://dl-ssl.google.com/android/eclipse/

Continue following the site steps through 7 and this correctly installs the ADT plug-in into Eclipse Ver 3.7 Indigo IDE.  Previously, I tried downloading the ADT separately and I couldn’t get Eclipse to recognize it using that approach.

________________________________________

Now (in Eclipse) you can use the menu bar to create a [File], the [New], then [Project], then [Android Project].….workspace and so forth…

See http://developer.android.com/guide/developing/projects/projects-eclipse.html#CreatingAProject

*** Next problem…In Eclipse Indigo… Make sure in the menu bar…

[Window], then [Preferences], then [Android] …put the drive and directory path to “android-sdk-windows ” which should have the “tools” folder under it… Now Eclipse can see the various Android emulator versions that you have downloaded from the earlier work in the SDK AVD Manager.

Now the “Build Targets” area has choices to pick from.

Eclipse Ver3.7 Indigo New Android Project With Build Target Android Versions Avail

Eclipse Ver3.7 Indigo New Android Project With Build Target Android Versions Available

*** If you are creating a new android project… A common error is leaving the “Package Name” blank.  The second error is giving it a simple name… You will likely get an error… “Package name must have at least two identifiers.”

You make a correct Package … evidently… by …

If your project name was “NewProject1”, the Package name would be “com.android.NewProject1”

___________________________________

*** Another issue…  You get the java compiled without errors and you “Run” an “Android Application”

and it tries to launch and the 5554 Emulator pop up starts and has “Android_” text and then Android in fancy font and seemingly stalls (often without errors) … and you see this on the lower “console” area of Eclipse.

[2011-06-27 21:01:13 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] ——————————
[2011-06-27 21:01:13 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] Android Launch!
[2011-06-27 21:01:13 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] adb is running normally.
[2011-06-27 21:01:13 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] Performing com.android.Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout.Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayoutActivity activity launch
[2011-06-27 21:01:13 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] Automatic Target Mode: launching new emulator with compatible AVD ‘Android_2_2_api8_AVD’
[2011-06-27 21:01:13 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] Launching a new emulator with Virtual Device ‘Android_2_2_api8_AVD’
[2011-06-27 21:01:23 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] New emulator found: emulator-5554
[2011-06-27 21:01:23 – Android2_2_Proj4_Add2NumbersHVGAAbsoluteLayout] Waiting for HOME (‘android.process.acore’) to be launched…
____________
From reading  Google posts, it seems that it’s not uncommon, to have to hit the Run button a second time in Eclipse if the emulator gets stuck trying to launch, install and run the .apk

**** To turn on line numbers in Eclipse

Eclipse Window Preferences General Editors TextEditors LineNumbers

Eclipse Window Preferences General Editors TextEditors LineNumbers

**** Now I’m stuck trying to get button click events to work without crashing.  The xml gui looks fair but crashes on a button click.

Android 2_2_proj4 Initial Screen

Android2_2_proj4 Initial Screen

Then the “Application stopped unexpectedly” on a button click.

Application Stopped Unexpectedly Button Click

Application Stopped Unexpectedly Button Click

______

The google posts recommend using LogCat in Eclipse to troubleshoot weird errors like this that occur in runtime and may involve the emulator start.

First, add this to the import list at the top of the Java code in Eclipse:

import android.util.Log;
//import android.util.Log;

I add it again as a comment because… When you hit <shift> <ctrl> O and let Eclipse auto add import statements because it often

will delete unused or what it thinks are unneeded imports.

Second, to get the LogCat showing as a console at the bottom of Eclipse, click [Window], then [Show View], then [Other], then [Android] and

[LogCat].

It seems that there is a FATAL exception in main….which is main.xml …..Not sure if it’s in the emulator or versions of Android…or???

I have one app that crashes “Stops Unexpectedly” as you launch it (never even shows the GUI)

and the other launches ok and you see the buttons….but “Stops Unexpectedly” when you click on a button.

Someone has suggested looking at my manifest file ( “Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory.”) for each app….

http://developer.android.com/guide/topics/manifest/manifest-intro.html

Anyone seeing these errors?  Has anyone gotten a complete app example to load, launch and actually run in the emulator without errors?

Dunno

More to come on this as it unfolds.

Dabbling in Google Android App Inventor

June 15, 2011

You launch this from within the Account Settings area of  your Gmail account.

It uses a simplistic gui physical block programming style that is very similar to MIT’s SCRATCH programming language for kids.

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

I started the example that make a kitty.png pic purr a purr.mp3 on a click event.

The blocks are written in Java at the lowest level… even though you assemble the higher level blocks.

Java 6 SDK is required and also contains the JRE.

The “Blocks Editor” is super slow to launch… You click on this file that you download AppInventorForAndroidCodeblocks.jnlp   It opens in java 6.

That launches the android 2.2 emulator and then it takes a good 5 minutes to go from a black screen to a screen with robot and a slide lock… then you drag the slide lock across.

Initial App Inventor Emulator Black Android TextScreen

Initial App Inventor Emulator Black Android TextScreen

Drag Green Lock Right To Unlock App Inventor Emulator Android Phone

Drag Green Lock Right To Unlock App Inventor Emulator Android Phone

Slide Unlock Emulator Ready To Select For Connection After A Few Minutes

Slide Unlock Emulator Ready To Select For Connection After A Few Minutes

I had to stop and restart the .jnlp file a time or two… it’s SLOW and not obvious whether to stop and restart or not.

Android App Inventor Emulator Green Zoom HelloPurrKitty

Android App Inventor Emulator Green Zoom HelloPurrKitty

Since it is horribly slow and difficult to get connection to the emulator, I have moved on for now to trying the Android SDK AVD and Eclipse and it’s ADT Android plug-in for Eclipse… and the emulator without Eclipse if possible.

 

Dabbling in Windows Phone 7 Emulator

June 15, 2011

I’ve been trying this for a few months.  I had done C# .NET and the buttons/labels on XAML with the original Windows Phone 7 emulator.

The VS2010 pro version was required (a free evaluation iso download) and then the Windows Phone 7 development tools iso download.

Note that the .iso is usually a small link at the bottom of the download page.

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

Then they added the option to do VB.NET and I did not get that download added.

Then more recently, they released the “Mango” Windows Phone 7.1 emulator.

First, you must download the VS2010 SP1 .iso (it’s for all versions of VS2010 including the pro. )   And then you download the Windows Phone 7_1 Development Tools.

NOTE: 4 Gig of disk space was required on the Win7 partition and supposedly 3 Gig of memory (although i have 1 Gig) It takes almost 2 hours to install the VS2010 SP1 in addition to however long it takes to download the .iso

Windows Phone 7.1 Mango Emulator Not For Resale

Windows Phone 7.1 Mango Emulator Not For Resale

So far I’m getting errors when i attempt to run code on the Mango emulator….

More to come on this as it unfolds…

I have 1 Gig of memory… although officially it needs 3… not sure if errors are related to this

A Soldier’s Angel – Stevie Nicks (In Your Dreams CD)

June 14, 2011

Check out this cool new song from Stevie Nicks.

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

 

Stevie Nicks - A Soldier's Angel

Stevie Nicks - A Soldier's Angel

This is a really cool new song I came across from Stevie Nicks on the In Your Dreams CD.  Lindsey Buckingham plays guitar on this.

tp://www.youtube.com/watch?v=kFAzUrp__p8&feature=youtube_gdata_player

Here is a posting from someone that saw her show in Los Angeles.

Adam Carolla on Loveline 05/10/2011

May 10, 2011

Get it on!  No choice but to get it on!

Wake the kids and tell the neighbors

@adamcarolla on @loveline Tues 05/10/2011

http://www.lovelineshow.com/

________________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. ________________________________________________

The Ace man on with Dr Drew…. Queue the Peaches and Herb…

Reunited…and it feels so good…

Adam doing Stinky Pinky? and/or Germany or Florida?

Pandigital 7″ Color Novel Ereader – Android 1.5 or 2.0 ?

April 27, 2011

Pandigital 7″ Color Novel Ereader – Android 1.5 (Black bezel color unit)

has a resistive touch screen which needs a stylus stick..,finger touch has to be very hard.

*** The better version is…

Pandigital 7″ Color Novel Ereader – Android 2.0 Eclair (White bezel color unit)

800mhz Samsung s3c6410xh-53 1009 ARM processor running Android 2.0 (Eclair) on a 7″ resistive touch screen

http://www.slatedroid.com/wiki/index.php/Introduction_to_the_Pandigital_Novel

_______________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. _______________________________________________

Android update

http://www.pandigital.net/android

http://www.engadget.com/2010/08/20/pandigital-novel-review/

Hacks

http://www.engadget.com/2010/07/13/hackers-start-hacking-the-pandigital-novel-e-reader/


Coby7″ Stuck on Android 2.1 Why?

April 27, 2011

Then there’s the Coby 7″ ARM1176 800 Mhz Android 2.1 $140 (stuck on 2.1 why…?)

http://www.cobyusa.com/?p=prod&prod_num_id=10494&pcat_id=1013

_______________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. _______________________________________________

ARM1176 ….. 800 Mhz… RISC cpu

http://en.wikipedia.org/wiki/ARM_architecture

Anyone have this? or know what keeps it stuck on Android 2.1 ?

Per comments from others, if you can root the device, you should be able to apply any updates at least… Not sure if these have to be custom developed updates or an actual new version of Android though… Anyone done this?

iPhone 5 Sept 2011

April 20, 2011

iPhone 5 Sept 2011

_______________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. _______________________________________________

iPhone 5 Sept 2011

http://news.yahoo.com/s/nm/20110420/bs_nm/us_apple_iphone

Hon Hai Precision Foxcon Wintek Largan

Make Yourself a Stock – It’s Like Twitter

April 18, 2011

Make yourself a stock… It’s kinda like Twitter.

Buy and sell shares of others in Eaves units.

http://empireavenue.com/?t=49oq2nw

_______________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. _______________________________________________

http://empireavenue.com/?t=49oq2nw

8.8 Honshu Japan Earthquake

March 11, 2011

8.8 Honshu Japan Earthquake and aftershocks

_______________________________________________

Thanks for checking  out my posting.  Check  out the latest at https://mrobvious.wordpress.com No scraping please….. _______________________________________________

USGS Earthquake List

http://earthquake.usgs.gov/earthquakes/recenteqsww/Maps/region/Asia_eqs.php

Live Video in Japan NHK via Ustream —-March 12-15, 2011

http://www.ustream.tv/channel/nhk-gtv2

Translated to English via Ustream (after brief ad)March 12-15, 2011

Katz doing an awesome job! @YokosoNews = Katz and also @miyochika

Katz’s site http://YokosoNews.tv/ and links to other English feeds

http://yokosonews.com/live/

************************************************************

*** Best Live feed below….with Katz san

*** Live feed http://www.ustream.tv/channel/yokosonews

***( New) Tiny Chat http://tinychat.com/yokosonews

************************************************************

 

*** New 7.1 Earthquake at Honshu Japan 04/11/2011

Concerning explosion at one of the nuclear power plants

.

Another Japanese feed (with diagrams of Power Plant)…dunnoMarch 12&13, 2011

http://www.ustream.tv/channel/iwakamiyasumi

.

.

Live video in Japan —- March 11, 2011

http://jibtv.com/program/?page=0

Another Japanese live feed via Ustream (after brief ad) — March 11, 2011

http://www.ustream.tv/channel/tomyp

Original Tsunami wave travel map and hours to propagate RT@W7VOA

March 11, 2011

http://wcatwc.arh.noaa.gov/2011/03/11/lhvpd9/01/ttvulhvpd9-01.jpg

____________________________________________

Nuclear power plant info

Very interesting info about how this style of nuclear reactor works RT @iA “Why i’m not worried about Japan’s nuclear reactors”:

http://morgsatlarge.wordpress.com/2011/03/13/why-i-am-not-worried-about-japans-nuclear-reactors/

IAEA International Atomic Energy Agency FB Page for Japan Nuclear Plants

https://www.facebook.com/iaeaorg

Cool down period

http://www.greenspun.com/bboard/q-and-a-fetch-msg.tcl?msg_id=000GO8

http://www.businessinsider.com/japan-reactors-pose-no-risk-2011-3

_____________________________________________

Volcano Report

Shinmoedake Volcano…yikes…

http://www.nydailynews.com/news/world/2011/03/13/2011-03-13_hundreds_flee_in_japan_after_shinmoedake_volcano_begins_spewing_ash_boulders.html

Volcano cam

http://kirishima-live.jpn.org/

____________________________________________

***** Person Finder ******

http://japan.person-finder.appspot.com/

____________________________________________

Pictures Before and After via ABC News showing devastation

http://www.abc.net.au/news/events/japan-quake-2011/beforeafter.htm

_________________________________________________

RT @W7VOA ————–March 11, 2011

RT @TimeOutTokyo: Shelters have been open to people stranded in Tokyo tonight. The full list here. http://bit.ly/idHCRT #quake full link below

http://www.timeout.jp/en/tokyo/feature/2530/Japan-earthquake-live-report