Skip to main content
 

Interesting development - retail 3D printing and right in my neighborhood.

Interesting development - retail 3D printing and right in my neighborhood.

[And nice to see a fledgling business using Google+ Local and Pages together.]

 

Hi, we are having problems on our Google page 1+ dropped from almost 12.000 to 720 and it's stuck.

Hi, we are having problems on our Google page 1+ dropped from almost 12.000 to 720 and it's stuck. Our followers are complaining on me because of that lol. Can you help me? I can't see if it is a temporary common issue. Thanks in advance. Cheers!

 ps: nothing was changed and happened from night to day

 

 

 

TIL about http://instacod.es/

TIL about http://instacod.es/

And here's a particularly fun example for the CSS geeks following me.

 

Recommended.

Recommended.  Surprised East Bay Express only has 66 followers so far..  Maybe they can link their site and add a Follow button on their main site....

 

Very true...

Very true...

Originally shared by East Bay Express

Don’t know which café is best for working (or people watching)? We’ve got a flowchart for you: http://buff.ly/1bG1LKl

 

Mystery pic: what is it?

Mystery pic: what is it?

 

Parameterized tests in Junit 3 -- another Java

Adding some experimental code that modifies a junit3 test?  Yearning for Junit4 @RunWith(Parameterized.class) annotation?

For simple things like an experiment flag you can do this:

Add the flag to the base test class.

   boolean experiment = false;

Create a subclass of your test and change the value in your setUp method:

 class FooWithExperimentTest extends FooTest {

 @Override
 protected void setUp() throws Exception {
    this.experiment = true;
    super.setUp();
  }
}

Your subclass will run with the varying value.









 

ProtoAssert is a java testers best friend.

ProtoAssert
  .assertThat(result)
  .ignoringField(...)
  .isEqualTo(expected);









 

Listening to the new Deltron 3030 Album.  I'm not disappointed.

Listening to the new Deltron 3030 Album.  I'm not disappointed.

Folks in the Bay Area can catch an in-store appearance at Amoeba records in San Francisco today at 5pm.

 

TAP submit speedup 

- You mail a CL
- The presubmit automatically starts a TAP run.
- You get an email with the results.
- You did *not* change the CL after you mailed it.

If all of the above is true, use the TAP base with *--rerun* when submitting to save time.  The base is in the email TAP sends you and it looks like this:

  OCL:53489329:BASE:53489326:1380560146993









 

Here's an interesting site documenting a startup's move from San Francisco to Oakland.

Here's an interesting site documenting a startup's move from San Francisco to Oakland.

 

 

Been enjoying sludge-free french press coffee ever since we replaced our old Bodum press with the new Espro press.

Been enjoying sludge-free french press coffee ever since we replaced our old Bodum press with the new Espro press.  It uses double gold filters to make a truly smooth brew.  Highly recommended.

Here's nifty demo from the folks at Tested and you can find them at Williams-Sonoma 

 

 

 

NYC Googlers -- recommendations on laptop repair?

My sister-in-law spilled Sierra Nevada on her 2010 MacBook Pro and I'm trying to help her.  I found http://http://www.laptopmd.com/ and they quoted 65 to clean the motherboard and replace the keyboard.

She's living on grants and piece work so if you know of a better deal let me know.


http://www.laptopmd.com/#header






 

When I have dental work done I make sure it's completed under the watchful gaze of  Hopper, Schwartzenegger and...

When I have dental work done I make sure it's completed under the watchful gaze of  Hopper, Schwartzenegger and Rondstadt. **

** turns out the dentist's brother is a celebrity photographer.

http://www.michaelchildersphotography.com/

 

 

 

Somethings wrong when fiber to the home comes to rural Minnesota before the bay area...

[This is a little town 1200 people about 30 miles from Rochester MN]


http://www.kmtel.com/internet/high-speed/






 

SVG, it's VRML for flatland.

Hacking on svg is bringing back memories of another markup language with multiple coordinate systems..

I am writing up a little guide on how to get productive with SVG so others can benefit from my pain.


http://www.wiley.com/legacy/compbooks/vrml2sbk/ch06/06fig09.htm






 

Protip: Use Optional#asSet() to populate collections from optional values.

Was annoyed with lots and lots of code that looks like this:
   Optional<Foo> foo = getFoo();
   if (foo.isPresent()) {
     collection.add(foo.get());
   }

Turns out there's asSet which lets you write code like this:

  collection.addAll(getFoo().asSet());









 

 

Title

Hi

Joslyn Biever, here's the event I was talking about.   Mary Grove and Steve Grove are doing great work with Google+ for entrepreneurs (see http://google.com/entrepreneurs )

[2nd time around, this time, not public (!)  Shouldn't be posting after midnight....]

Originally shared by Mary Grove (Mary Himinkool)

An amazing day underway at CoCo at Google for Entrepreneurs youth training day. 75 impressive teens here from the STEPUP program. So inspired by the talent and passion in the room.

 

Greetings Googlers & Gophers!

Greetings Googlers & Gophers!

The U of MN Engineering meetup was great fun.  It was nice to meet other Alumni and learn more about the great things going on back in Minnesota.

Googlers - I don't have all of your non-work accounts here, please feel free to follow me and I'll tag/mention your accounts here.

Gophers - If you ever need help with Google+ you can feel free to contact me.

 

University of Minnesota alumni meetup in full swing.

University of Minnesota alumni meetup in full swing.

Was asked if there will be a version of Gopher for Glass :)

 

How to make your java *testing* rules test-only.

Here's a crude script you can use to automatically set testonly=1 on _testing_ targets that qualify (and tells you why others cannot be testonly)  If there's interest I'd be happy to clean this up and put it somewhere...


 DEPS=
 for XX in ; do
  DEPENDS_ON=

  echo "PROCESSING - "
  TESTONLY_NUMDEPS=1
  if [ == 1 ]; then
    buildozer 'set testonly 1'
    buildozer fix
    echo "ADDED testonly=1 to target  "
  else
    echo "FAILED to add testonly=1  for target "
    echo ""
  fi
 done









 

How to make your java *testing* rules test-only.

Here's a crude script you can use to automatically set testonly=1 on _testing_ targets that qualify (and tells you why others cannot be testonly)  If there's interest I'd be happy to clean this up and put it somewhere...


 DEPS=blaze-bin/devtools/deps/depserver/query/depends_on  --testonly=0 `

  echo "PROCESSING - "
  TESTONLY_NUMDEPS=`echo ""|wc -l`
  if [ == 1 ]; then
    buildozer 'set testonly 1'
    buildozer fix
    echo "ADDED testonly=1 to target  "
  else
    echo "FAILED to add testonly=1  for target "
    echo ""
  fi
 done









 

After cleaning up Google+ Games I moved up to #221 on the all-time code deleter list.

Should break #200 once the chili removal CLs are all submitted and accounted for..

For future me, here's the dremel to find out..

define table stats /cns/pb-d/home/omoikane/change_stats/columnio/changes-*
SELECT user, SUM(file.deleted) AS lines FROM stats GROUP BY user ORDER BY lines DESC LIMIT 225;









 

*Two hundred dollar bid, now three, now three hundred, will ya give me three?*

_I researched some of your information online and you seem like an analytical person, so I thought I'd hit you with some numbers that show why Developer Auction is hands down the best tool for finding your next job - if and when you're ready to look._

_We just successfully completed our 13th auction, where 90 engineers received offers with a total value of 3,147,111. The average offer for a software engineer on Developer Auction is 24,816.33. Over 600 companies like Twitter, Klout, and UberConference have used our platform to hire top tech talent. On Developer Auction, you'll receive compensation, bonus, and salary information from employers first, and interview second, making DA the best place for you to find your next career opportunity._

_Our next auction starts August 19th. If you click the link below and create a profile, once it's complete, we'll review it for inclusion. Even if you're not looking to change jobs right now, if you build a profile, we'll keep you in mind for when you're ready to make a change._


https://plus.sandbox.google.com/photos/107786897865850743842/albums/5912431615632055697/591243162378...






 

This heartwarming story has it all:

This heartwarming story has it all:

- cute puppy

- good samaritan windsurfers

- and a guy that commutes to work in a boat.

 

They may have killed Bugs of the week at TGIF, but it makes a nice addition to snippets...









 

b/10261931 filed...

@100046111226547636851


http://hangoutsnitch.com/






 

Eye-opening. I'll never look at a FedEx logo the same way again.

Eye-opening. I'll never look at a FedEx logo the same way again.

Also realized for the first time that the Brewers glove logo was constructed with an an M and a b.

 

Google TV wins over the Chromecast for live YouTube streams... Not sure why. I can watch via the GTV browser.

Google TV wins over the Chromecast for live YouTube streams... Not sure why. I can watch via the GTV browser.

The Postal Service is playing now... 2nd to last show.

 

It's like Twin Peaks by the Sea.

It's like Twin Peaks by the Sea.

You have the outside investigator (David Tennant, with stubble), a dead body, and a cast of characters that seem to have plenty of secrets. 

Intrigued about what they'll come up with in the follow on episodes.

No spoilers please...

 

Was actually thinking of doing this with some of the google-feedback code internally so we could automate regression testing of widgets...

Right now I have old iframe on the left, new on the right and can quickly eyeball it, but would love to have a computer do the boring stuff..


https://github.com/BBC-News/wraith#__sid=0






 

Latex in Google+?

.P
I say no, at least not until we have support for
.B  "nroff"
 macros
.br
.br


https://productforums.google.com/forum/?_escaped_fragment_=topic/google-plus-discuss/O9ZEvS5jmho






 

With our embeds framework combined with our existing embeds (youtube, maps, docs, etc)  we could blow this out of the water.

@107106902560384103150 -- what's up with Lego Embeds?



http://allthingsd.com/20130731/towards-a-more-public-social-network-facebook-rolls-out-embedded-post...






 

 

 

 

Not addressed: where did that rogue UPDATE come from?

Not addressed: where did that rogue UPDATE come from?

Takeaway: make nice with your hosting company -- they might save your bacon at some point.

 

 

Nice writeup of Jeff Dean "Google's Unsung Hero" in Inventing Tomorrow, a University of Minnesota alumni mag.

Nice writeup of Jeff Dean "Google's Unsung Hero" in Inventing Tomorrow, a University of Minnesota alumni mag.  Sadly there are no Jeff Dean Facts listed.

 

A song about gentrification in San Francisco...  It pains me to see Google vilified in this way when it enables so much (including this content itself)

Sadly I don't hold out much hope for technology fixing the dysfunctional housing situation in the Bay Area.

[And where's my soundcloud embed  @112474028169763877889 ??]

Also if you decide to watch the youtube video remember that _This video has been age-restricted based on our Community Guidelines_


http://soundcloud.com/persia415/persia-google-google-apps-apps






 

The *Victory Baby* MBA (spotted in our support forums)  


http://60daymba.com/






 

moderator status, just in case I get hit by a bus or something else that would require a post-mortem :)

moderator status, just in case I get hit by a bus or something else that would require a post-mortem :)