Jon.Shoberg.Net

Misc Items

TechNexion ThunderPack - Signage, Angstrom, and Andriod

by admin on Dec.06, 2009, under Dev Data Tech, Misc Items

So I’m working on a small digital signage project. One of the first challenges is getting a computer setup to run the display and the thought occurred what is the best way to do that. In the advent of low power CPUs I took the dive and purchase an OMAP3 based development board. One of the first goals is to build a digital display appliance.

Have a look at the setup.

I choose the ThunderPack from TechNexion because it included the LCD screen, Wifi, Ethernet, HDMI, and a basic build of the Angstrom Linux distribution.

Pros - So far …

  • Easy to order, fast shipping, responsive to email support
  • Good construction, feels solid when handling it
  • Pretty good software builds to get you up and running
  • Decent documentation, you will need to have moderate linux systems experience though
  • It boots right up and you can start using Angstrom right on the LCD display

Cons - So far …

  • The 1st SD card used had a lot of difficulties getting the file system built (start with one under 2GB)

Thats about it, trying to keep it short and simple. Next up is building Android and seeing how it does…

If there are any questions please let me know.

Leave a Comment :, more...

TSQL - What is running and percent complete

by admin on Oct.05, 2009, under Dev Data Tech, Misc Items

Here is a quick little snippet of TSQL; what is running and that percent complete.  This comes from using dm_exec_requests and the percent complete value there.


select T.text,
R.Status,
R.Command,
DatabaseName = db_name(R.database_id),
R.cpu_time,
R.total_elapsed_time,
R.percent_complete
from sys.dm_exec_requests R
cross apply sys.dm_exec_sql_text(R.sql_handle) T

Leave a Comment :, more...

Facebook Vanity URL

by admin on Jun.15, 2009, under Misc Items

Thats right …. http://facebook.com/jon.shoberg is all mine. Too bad I didn’t got for something like default.aspx (which I kind of like better…).

6-15-2009-9-12-08-am

Leave a Comment more...

Barrett 98Bravo

by Jon on Apr.19, 2009, under Misc Items

Its amazing to see the number of activities the Ohio State Parks service runs. One of those being an outdoor rifle and pistol range in the southern Waldo, Ohio. Yesterday Mike and I went up to sight in his M1 Garand. Aside from me shooting out both legs of the target stand (was aiming for the second one) we had the outstanding opportunity to shoot a Barrett 98 Bravo which fires a .338 Lapua Magnum round. Let me just say this thing is unbelievable! It was putting round after round almost though the same hole. Here is my ‘bulls eye’ shot from the bench and Mike’s too.

Leave a Comment :, , more...

La Bamba Guy

by admin on Apr.10, 2009, under Misc Items

When you are having dinner in a tourist area (Miami Beach) … watch out …

Leave a Comment more...

Avectra Users and Developers Conference - AUDC09

by Jon on Apr.02, 2009, under Misc Items

It’s good to be back from the Avectra Users and Developers Conference for 2009; had an amazing time in the sessions learning about product enhancements, additional functionality, and meeting the friendly and amazingly knowledgeable staff.

I’d say some key takeaways for me would be:

  • Strong focus on web services for integration; makes me excited about developing a mobile app
  • Strong focus on Sharepoint as NetForum’s external presence and great conversation with susqtech.
  • Each staff member REALLY knew their respective area of expertise and showed a willingness to find solutions
  • Really good technical tracks in the conference series
  • Brought back some good information and specifics on looking at the NetForum 3.0 upgrade

Some stuff I’d like to see:

  • Would be nice to have a highly technical session for SQL developers and .Net; maybe sharing with the Q&A practices that Avectra’s developers use. I think that is what makes the ‘Open Developer’s Forum’ so good is because it allows for asking those kinds of questions … getting deep into the tech.
  • OLAP … and this comes from the technical concepts at point above. I think business intelligence (BI) is a hard piece to integrate. From the developer’s perspective though it would be a great benefit to have Avectra put forward an OLAP structure its clients can build their own reporting and BI from. It’s something I’ve seen in other enterprise products such as BlackBaud enterprise (not quite the same market space but I think it plays).
  • Access to power outlets in the conference rooms; on a few occasions it would have been great to pick-up a quick charge.
  • Perhaps there is a way to improve the vetting of the association speakers; not displeased but one or two were a little more of a ‘miss’ than a ‘hit’ as I felt the content could go deeper.

IMG00103

Leave a Comment :, , , more...

Google Latitude

by admin on Mar.11, 2009, under Misc Items

Recently Google released a new service named Latitude. Very simly it takes your location from mobile device or online using iGoogle and Gears and plots it on a map.  From there you can share your current location with friends and contacts who also use google latitude.  There are a number of privacy options on the service; set who and how you want to share location or the option to set a specific location too.

Google Latitude

Not sure how much I’ll be using this or a service like Latitude but its interesting to discover and see how it works.

Leave a Comment more...

Haversine Distance in Miles with TSQL Latitude Longitude

by admin on Mar.05, 2009, under Misc Items

A little non-multimedia post coming your way … a little bit of TSQL goodness for calculating the distance between two latitude and longitude coordinates.


SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
CREATE FUNCTION [dbo].[HaversineDistanceMiles] (
@lat1 float,
@lon1 float,
@lat2 float,
@lon2 float
)
RETURNS float AS
BEGIN

declare @dlon float
declare @dlat float
declare @a float
declare @c float
declare @d float

select @dlon=radians(@lon2)-radians(@lon1)
select @dlat=radians(@lat2)-radians(@lat1)

select @a =square(sin(@dlat/2.0)) + (cos(radians(@lat1)) * cos(radians(@lat2)) * square(sin(@dlon/2.0)))
select @c = 2.0 * atn2(sqrt(@a), sqrt(1.0-@a))
select @d = 3956 * @c

return @d

 

END

Leave a Comment more...

Teenage Audio Test

by admin on Feb.26, 2009, under Misc Items

I my current age of 31 I have successfully passed the teenage audio test.

Train Horns

This sound can generally only heard by people under the age of 25. It has been used as a deterrent device to keep teenagers from loitering in malls and shops, and sounds similar to a buzzing mosquito

Leave a Comment : more...

Twitter in Plain English

by Jon on Feb.19, 2009, under Misc Items

Just recently I was in an interesting meeting discussing the ubiquitous topic of social media. In the advent of millions of people using Facebook, LinkedIn, and Twitter it’s interesting to hear what’social media means to people and their interpretation of its value. My interpretation of value in social media is the opportunity for technology to expose the interesting details of our day to day lives which are commonly hidden to others because we are at work, traveling, or any other situation where traditional or personal communication doesn’t readily keep us connected.  By no means is my interpretation ground breaking but does serve as a segue to an interesting question.

What is the best to expose the interesting details of our lives or organization and create a sense of connectedness; what should those details be?  For me it’s this blog because I can controll the format, content, and have ownership. Sure I use Flickr and Facebook but only for a point of contact and things I have no problem with existing and living in a public domain.

As a slight tangent … I’m definitely a fan of CommonCraft and their style of presentation; they’ve basically built a small media company based on the Back of the Napkin style of presentation. Staying with the topic of social media they’ve done a nice clip about Twitter in their ‘plain english’ format.  It’s mostly about the service itself but really describes the value point of social media I previously mentioned.

Leave a Comment :, , more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!