Technical - LeRoy Family Blog https://www.leroynet.com A history of major family events and travels Sun, 01 Mar 2020 22:15:38 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.2 India Work Trip https://www.leroynet.com/2019/11/23/india-work-trip/ Fri, 22 Nov 2019 20:54:00 +0000 https://www.leroynet.com/?p=4004 I had to travel to India for work; why else go there, right?  

I visited Mumbai, Pune, Bangalore, and Hyderabad.  It was a very long week and crazy busy.

 

The post India Work Trip first appeared on LeRoy Family Blog.

]]>
GOES Crawler https://www.leroynet.com/2016/08/03/goes-crawler/ Wed, 03 Aug 2016 13:35:49 +0000 https://www.leroynet.com/?p=2877 I’m trying to register for Global Entry.  This is a two-step process. First you have to … GOES CrawlerRead more

The post GOES Crawler first appeared on LeRoy Family Blog.

]]>
I’m trying to register for Global Entry.  This is a two-step process. First you have to fill-out the forms for review by customs.  Second, you have to appear for an in-person interview.

The forms I completed took nearly a week for customs to review.  Now I have to register for the interview.  The first available time is May of 2017, OMG!  I called them to confirm and they said, yes this is the earliest.  Your best bet, because people cancel frequently, is to keep checking the website for an opening.  Of course, who has time to check a website eight times a day.  So I wrote this program to crawl the site hourly.  Now, I just run the app when it finds an opening, it emails me to go reschedule my appointment.

I can’t imagine why you would but, you can download the app here:

GOESCrawler

 

 

 

 

 

 

The post GOES Crawler first appeared on LeRoy Family Blog.

]]>
Raspberry Pi Ideas https://www.leroynet.com/2012/12/11/raspberry-pi-ideas/ Tue, 11 Dec 2012 22:38:55 +0000 https://www.leroynet.com/?p=1442 Auto-copy pictures from SmartPhone when it enters room. Maybe with NFC? Sense when people get home … Raspberry Pi IdeasRead more

The post Raspberry Pi Ideas first appeared on LeRoy Family Blog.

]]>
Auto-copy pictures from SmartPhone when it enters room. Maybe with NFC?

Sense when people get home and text me.

Something for the office to know when people arrive, maybe NFC.

The post Raspberry Pi Ideas first appeared on LeRoy Family Blog.

]]>
Bug in my code https://www.leroynet.com/2012/06/03/bug-in-my-code/ Mon, 04 Jun 2012 01:36:22 +0000 https://www.leroynet.com/?p=1281 Just spent countless hours over the past 10 days fighting a single bug in my next … Bug in my codeRead more

The post Bug in my code first appeared on LeRoy Family Blog.

]]>
Just spent countless hours over the past 10 days fighting a single bug in my next app. If you restarted the game, the app crashes. Took forever to figure out why. Turns out I was releasing memory that I shouldn’t have. That’s what I get for being a tidy programmer! UGH!

See yellow block at the end of the snippet below.

-(id) initWithParentNode:(CCNode*)parentNode Player:(NSInteger)player Icon:(NSInteger)icon Color:(NSInteger)color{
 
        // always call "super" init
        // Apple recommends to re-assign "self" with the "super" return value
        if( (self=[super init])) {             
       
        CGSize winSize = [[CCDirector sharedDirector] winSizeInPixels];
 
        NSString *strFile = [[NSString alloc] init];
       
        if ((color == -1) && (icon == -1))
            strFile = @"player_silver_car.png";
        else {
            switch (color)
            {
                case 0:
                    strFile = @"player_blue_";
                    break;
                case 1:
                    strFile = @"player_yellow_";
                    break;
                case 2:
                    strFile = @"player_red_";
                    break;
                case 3:
                    strFile = @"player_green_";
                    break;
            }
 
            switch (icon)
            {
                case kPlayerChicken:
                    strFile = [strFile stringByAppendingString:@"chicken.png"];
                    break;
                case kPlayerBoard:
                    strFile = [strFile stringByAppendingString:@"board.png"];
                    break;
                case kPlayerTruck:
                    strFile = [strFile stringByAppendingString:@"truck.png"];
                    break;
                case kPlayerCar:
                    strFile = [strFile stringByAppendingString:@"car.png"];
                    break;
            }
        }
       
        playerLap = 1;
        playerSwipes = 0;
        playerSprite = [CCSprite spriteWithFile:strFile];
       
        // Get Audio File
        audioSoundFile = [self getAudioFile:icon];
 
        // Load the Lap Sprites
//        CCFadeOut *fo = [CCFadeOut actionWithDuration:.1];
 
        lapSprite1 = [CCSprite spriteWithFile:@"lapindicator1.png"];
        lapSprite1.position = CGPointMake(winSize.width/2, winSize.height/2);
        lapSprite1.opacity = 0;
        lapSprite2 = [CCSprite spriteWithFile:@"lapindicator2.png"];
        lapSprite2.position = CGPointMake(winSize.width/2, winSize.height/2);
        lapSprite2.opacity = 0;
        lapSprite3 = [CCSprite spriteWithFile:@"lapindicator3.png"];
        lapSprite3.position = CGPointMake(winSize.width/2, winSize.height/2);
        lapSprite3.opacity = 0;
 
        [parentNode addChild:lapSprite1];
        [parentNode addChild:lapSprite2];
        [parentNode addChild:lapSprite3];
       
//        [lapSprite1 runAction:fo];
//        [lapSprite2 runAction:fo];
//        [lapSprite3 runAction:fo];
//        
        // Get start position from the bundle
        RaceLayer *rl = (RaceLayer*)parentNode;
        if (player == 1)
            startPoint = rl.currentTrack.startPosition1;
        else
            startPoint = rl.currentTrack.startPosition2;
        rl = nil;
 
        [playerSprite setPosition:startPoint];
             
        [parentNode addChild:playerSprite z:10 tag:kTagSpritePlayer + playerNumber];
        playerSprite.rotation = -90;
 
        playerStuckCount = 0;
        soundOn = true;
/*
 *   Keeping this here for posterity.  
 *   This one line actually creates a bug that prevents the screens from being reloaded
 *   It took me part-time work over 10 days to find this one error.  
 *   I had to completely rip the code apart and slowly add parts back until I found the bug.
 *   COCOS2D caches images so it only loads them once.
*    My assumption for the error is that by releasing the filename, when COCOS2D checks to see if the image is cached,
*    the memory has been released and it throws a "BAD_ACCESS" error but does NOT say why.
 *
        [strFile release];
*/        
        // Manually schedule update via the undocumented CCScheduler class.
        [[CCScheduler sharedScheduler] scheduleUpdateForTarget:self priority:0 paused:NO];
    }
   
    return self;
}

The post Bug in my code first appeared on LeRoy Family Blog.

]]>
Social Business Article https://www.leroynet.com/2012/05/15/social-business-article/ Tue, 15 May 2012 16:56:09 +0000 https://www.leroynet.com/?p=1255 My story on IBM social business and Sogeti’s experience http://paper.li/tag/ibmexperience. Good short read on what I … Social Business ArticleRead more

The post Social Business Article first appeared on LeRoy Family Blog.

]]>
My story on IBM social business and Sogeti’s experience http://paper.li/tag/ibmexperience. Good short read on what I do.

The post Social Business Article first appeared on LeRoy Family Blog.

]]>
Mobile Commerce Webinar https://www.leroynet.com/2011/02/17/mobile-commerce-webinar/ Fri, 18 Feb 2011 00:48:21 +0000 https://www.leroynet.com/?p=741 A colleague and I created this recording about Mobile Commerce. It’s long but pretty good.

The post Mobile Commerce Webinar first appeared on LeRoy Family Blog.

]]>
A colleague and I created this recording about Mobile Commerce. It’s long but pretty good.

The post Mobile Commerce Webinar first appeared on LeRoy Family Blog.

]]>
The Most Interesting Man In Technology https://www.leroynet.com/2010/08/30/the-most-interesting-man-in-technology/ Mon, 30 Aug 2010 14:05:34 +0000 https://www.leroynet.com/?p=673 This is a video Nathan put together for a contest at Sogeti. It’s a parody of … The Most Interesting Man In TechnologyRead more

The post The Most Interesting Man In Technology first appeared on LeRoy Family Blog.

]]>
This is a video Nathan put together for a contest at Sogeti. It’s a parody of the Dos Equis commercial. The concepts were created by me and Nathan with some help from Lynn. The actor is our neighbor, David Allison. He’s in advertising, a giant ham and was a huge help putting this together.

I hope you enjoy watching it as much as we enjoyed putting it together.

The post The Most Interesting Man In Technology first appeared on LeRoy Family Blog.

]]>
Turning the Technology Leadership Tables https://www.leroynet.com/2010/05/15/turning-the-technology-leadership-tables/ Sat, 15 May 2010 23:46:52 +0000 https://www.leroynet.com/?p=611 Turning the technology tables Has anyone else noticed the major innovation in technology has shifted from … Turning the Technology Leadership TablesRead more

The post Turning the Technology Leadership Tables first appeared on LeRoy Family Blog.

]]>
Turning the technology tables

Has anyone else noticed the major innovation in technology has shifted from corporate America to the consumers? I might be slow but I just discovered this when talking to a client about Social Networking. The technology we use at home has become so ubiquitous and easy to use we don’t even notice it. However, when we go to work, we don’t get that same experience. The technology is dated and limited in capability.

Because of the high-cost of entry, corporation’s introduced us to PC’s. About that same time email burst onto the scene. Those days of business leadership in IT are long gone. Two easy examples are:

  • A modern enterprise organization needs social networking like LinkedIn or Facebook because college graduates entering the workforce are demanding it; they’d rather give up email than Facebook.
  • Look up your favorite corporation in the AppStore, they’ll probably be there. iPad and all types of mobility solutions are coming on fast and furious. Obviously, this didn’t come from corporate innovation; it’s driven by the consumer experience.

Customers are savvy and so are employees. I yearn for the days of leadership in IT.

In the 80’s / 90’s – Enterprise IT led the push for IT.

  • PC – companies had to
  • Email
  • Internet
  • Productivity (word processors)

2000’s – Focus on Y2K

  • Internet enters every household
  • Leverage the power of RIA and SOA
  • Beginning of social application begins
  • 3G and iPhone

2010 – Consumer mentality shift

  • Facebook
  • Twitter
  • Mobility

The post Turning the Technology Leadership Tables first appeared on LeRoy Family Blog.

]]>
Turning The Technology Leadership Tables https://www.leroynet.com/2010/05/15/603/ Sat, 15 May 2010 23:37:09 +0000 https://www.leroynet.com/?p=603 Turning the technology tables Has anyone else noticed the major innovation in technology has shifted from … Turning The Technology Leadership TablesRead more

The post Turning The Technology Leadership Tables first appeared on LeRoy Family Blog.

]]>
Turning the technology tables

Has anyone else noticed the major innovation in technology has shifted from corporate America to the consumers? I might be slow but I just discovered this when talking to a client about Social Networking. The technology we use at home has become so ubiquitous and easy to use we don’t even notice it. However, when we go to work, we don’t get that same experience. The technology is dated and limited in capability.

Because of the high-cost of entry, corporation’s introduced us to PC’s. About that same time email burst onto the scene. Those days of business leadership in IT are long gone. Two easy examples are:

  • A modern enterprise organization needs social networking like LinkedIn or Facebook because college graduates entering the workforce are demanding it; they’d rather give up email than Facebook.
  • Look up your favorite corporation in the AppStore, they’ll probably be there. iPad and all types of mobility solutions are coming on fast and furious. Obviously, this didn’t come from corporate innovation; it’s driven by the consumer experience.

Customers are savvy and so are employees. I yearn for the days of leadership in IT.

In the 80’s / 90’s – Enterprise IT led the push for IT.

  • PC – companies had to
  • Email
  • Internet
  • Productivity (word processors)

2000’s – Focus on Y2K

  • Internet enters every household
  • Leverage the power of RIA and SOA
  • Beginning of social application begins
  • 3G and iPhone

2010 – Consumer mentality shift

  • Facebook
  • Twitter
  • Mobility

Technology Timeline

The post Turning The Technology Leadership Tables first appeared on LeRoy Family Blog.

]]>
Hosted Sites https://www.leroynet.com/2009/07/30/hosted-sites/ Thu, 30 Jul 2009 12:33:41 +0000 https://www.leroynet.com/?p=350 I moved my blog from the server in my basement to a real hosting provider recently. … Hosted SitesRead more

The post Hosted Sites first appeared on LeRoy Family Blog.

]]>
I moved my blog from the server in my basement to a real hosting provider recently. The move was amazingly simple. The performance result was astounding. Using my home server, the picture download was slow and now those same downloads take just seconds.

Of course the place to start is finding a hosting company. If you search the Net, you’ll find dozens of companies at very low prices. I reviewed several options and settled on BlueHost.com. My package was $4.95 for 24 months. One thing I found rather ironic, is so many of the hosting companies are actually the same entity.

Fortunately, I use WordPress, one of the best Blog tools available. Bluehost uses a scripting system to configure many different packages, including WordPress. Moving my blog from site to another was just too easy. There is an import/export utility that made the migration effortless. Viola, a better blog!

Having my site hosted also removes the concern about keeping my server running. The one issue I might have is how to handle backups but that can be automated too.

The post Hosted Sites first appeared on LeRoy Family Blog.

]]>