Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

outer

An iPhone Case That Poops Flash Drives [IPhone]
Saturday, 24 December 2011 17:00
The second addition to ego&company's Hybrid Series line of iPhone cases is the aptly named USB. Because besides providing a protective plastic outer shell, the case also stores a thin flash drive in its—umm—posterior. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/TKeuAQ104LU/an-iphone-case-that-poops-flash-drives

 
Where No Google Android Has Gone Before [Video]
Wednesday, 22 December 2010 17:40
It's not easy being an Android. Sure, you're cute enough as a logo, but it's still the phones that get most of the attention. Until this little guy took matters into his own hands, and into outer space. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/ZFN7MxlautU/where-no-google-android-has-gone-before

 
funteim
Monday, 19 July 2010 04:24
Coverts a few dates into utc format by reading the timezone from the registry as well as joining different tables depending on data


DECLARE @UTCOffset INTEGER

EXEC master..xp_regread
'HKEY_LOCAL_MACHINE',
'SYSTEM\CurrentControlSet\Control\TimeZoneInformation',
'ActiveTimeBias',
@UTCOffset OUTPUT

SELECT ext.taskid, ext.uidl, ext.dateStart, ext.dateEnd, ext.subject, ext.detail, ext.reminder, ext.reminderDate, ext.dateModified

/*convert datefields to utc*/
,DATEADD(MINUTE, @UTCOffset, ext.datestart ) as UTCdatestart
,DATEADD(MINUTE, @UTCOffset, ext.dateend ) as UTCdateend
, CASE WHEN NOT ext.dateModified IS NULL THEN DATEADD(MINUTE, @UTCOffset, ext.datemodified )
ELSE DATEADD(MINUTE, @UTCOffset, ext.datecreated )
END AS UTCdatemodified
,DATEADD(MINUTE, @UTCOffset, ext.reminderdate ) as UTCreminderdate
,DATEADD(MINUTE, @UTCOffset, ext.recurrenceStartDate ) as UTCrecurrenceStartDate
,DATEADD(MINUTE, @UTCOffset, ext.recurrenceEndDate ) as UTCrecurrenceEndDate

FROM extask ext
/*taskType 1 */
LEFT OUTER JOIN jobSeeker_activity jsa ON jsa.act_id = ext.activityID AND ext.taskType = 1
LEFT OUTER JOIN activity_entry_type aet ON aet.typeTitle = jsa.[type] AND aet.clientID = 621
LEFT OUTER JOIN jobSeekerActivityReason jsr ON jsr.jobSeekerActivityReasonID = jsa.jobSeekerActivityReasonID AND jsr.clientID = 621

/*tasktype 2*/
LEFT OUTER JOIN companyActivities cac ON cac.ActivityID = ext.activityID AND ext.taskType = 2
LEFT OUTER JOIN companyActivityType cat ON cat.activityTypeID = cac.typeID AND cat.clientID = 621
LEFT OUTER JOIN companyActivityReason car ON car.companyActivityReasonID = cac.companyActivityReasonID AND car.clientID = 621

WHERE taskType IN (1,2) --Only tasks with a activity
AND (
aet.isOutlookAppointment = 1
OR jsr.isOutlookAppointment = 1
OR cat.isOutlookAppointment = 1
OR car.isOutlookAppointment = 1
)
AND ext.clientidfk = 621
AND ( CASE
WHEN NOT ext.dateModified IS NULL THEN DATEADD(MINUTE, @UTCOffset, ext.dateModified)
ELSE DATEADD(MINUTE, @UTCOffset, ext.dateCreated)
END) >= 621

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/9PrLWg9d0U0/11897

 


Taxonomy by Zaragoza Online