Friday, November 30, 2012

Google Calendar - last weekday repeating event


I wanted to add a reminder to do my timesheet on the last business day of every month, but there's no easy way to do it within Google Calendar itself.  An anonymous post here worked perfectly:

Steven Occhipinti: Google Calendar - Repeating an event on the last <weekday> of the month


BEGIN:VCALENDAR
BEGIN:VEVENT
DTSTART:20120131
DTEND:20120131
RRULE:FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1;WKST=SU
SUMMARY:Payday
END:VEVENT
END:VCALENDAR

Save the above to a .ics file. In google next to other calendars choose import calendar.

Wednesday, November 21, 2012

Deleting networks on Windows 8

Manually added a wifi network on Windows 8, but it wasn't configured right.  Couldn't see how to delete that network until I found this thread that had this quote:

"This was driving me crazy today, there is no “manage wireless networks” in Windows 8, not sure why. So once you set up a network you are not able to alter it unless it is broadcasting near you and you set it up with the right security. Well I found a fix, if you go to device manager and uninstall your wireless network card and then reinstall it (should only take about 20 seconds) it will reset your network profiles, allowing you to recreate one that may be setup incorrectly. Hope this helps."


Friday, October 19, 2012

Script loading with headjs

From headjs.com:
"Load scripts like images. Use HTML5 and CSS3 safely. Target CSS for different screens, paths, states and browsers. Make it the only script in your HEAD. A concise solution to universal issues."

Saturday, October 13, 2012

Android and user-agents

Changing the user agent on Chrome:
  1. Open Developer Tools (right-click-Inspect, or Menu->Tools->Developer Tools, or Ctrl+Shift+I).
  2. Click the Settings gear icon on lower right of the Developer Tools window.
  3. Go to Overrides tab, check "User agent" and select the device from the dropdown.
List of user-agents at user-agent-string.info.

Wednesday, October 3, 2012

Restoring a content database from old to newer version of SharePoint 2010

Assuming the source (say, production) server has an older update of SharePoint, and you need to copy one of its site collections to a development environment that has a later update.

Based on one of the answers in this thread:
  1. Backup the WSS Content Database using SQL Server Management Studio,
  2. Restore the database backup to the target server using SQL Server Management Studio,
  3. Make sure the farm login and SharePoint service login have db owner rights to the restored database.
  4. Go to Central Admin of the dev farm and create a new web application, and enter the name of the restored database instead of creating a new one.
  5. Go to "Change Site Collection Administrators" and enter valid logins. 
  6. On Central Admin, go to Upgrade and Migration -> Review database status.  Check if the content database has this note:  "Database is in compatibility range and upgrade is recommended."  See possible reasons.
    [update 05/22/2013: added this step]

Other useful info:

Friday, September 7, 2012

Friday, July 27, 2012

Steam and Avast false positives

From an Avast forum thread:
"Remember to get Steam service to work you would need to add the file/s that have been given the false infection report; too both the 'Scan exclusion list' and the 'Real time shield' - 'File system shield' - 'Expert mod' - exclusion list."

Sunday, June 17, 2012

Responsive Web Resources

Issues with percentages:

Wednesday, June 6, 2012

How to open a Victorinox Swiss Army watch with a snap off case back

From a comment by Nick Farley in this thread:
"The easiest way to open them is to gently rest the case opener blade in the tiny gap between the case and the back and smartly tap the case opener with a hammer. If the blade has been properly positioned the back will either pop off or reveal a larger gap which makes opening the case much easier. This method minimizes the chances of marking either the case back or the case itself, which is hard plastic."

Friday, June 1, 2012

Tuesday, May 29, 2012

Monday, May 21, 2012

How to Delete hiberfil.sys When Hibernation is Not Supported by Firmware

When "powercfg -h off" doesn't work, then disable it using the registry (usual warnings about possibly messing up your registry):

Run regedit, and browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power.
Change the value for "HibernateEnabled" to 0 (zero).
Click OK and restart.

(See article by Fergus Macdonald.)

CSS media queries

Article on CSS Media Queries & Using Available Space by Chris Coyier.

Daily T-Shirt Roundup

To check out those limited-run shirts:
TShirt Roundup

Monday, April 30, 2012

jQuery delay anything other than jQuery's effect functions

Stefan Siebel says here:
"Taking a closer look at the delay function showed me that only functions that are queued in jQuery’s default 'fx' queue are delayed by a delay-call like the one [here]. If you want to delay e.g. the trigger function you either need to queue it in the fx-queue or in a separate queue."

Friday, April 20, 2012

jQuery fadeIn and IE7-8 opacity

FadeIn on an absolutely positioned div with opacity=80 wasn't working on IE7-8.  Found the solution on stackoverflow:  set filter on the element before calling fadeIn.  For example:

$("#testdiv").css('filter', 'alpha(opacity=80)').fadeIn();

Friday, April 13, 2012

Courses at Tuts+

Courses at Tuts+ cover various topics, including html & css, html5 & css3, jquery, photoshop, web design, photography.

Wednesday, April 11, 2012

10 Rare HTML Tags You Really Should Know

See 10 Rare HTML Tags You Really Should Know (with descriptions and live demos):
  • <cite>
  • <optgroup>
  • <acronym>
  • <optgroup>
  • <address>
  • <ins> and <del>
  • <label>
  • <fieldset>
  • <abbr>
  • rel
  • <wbr>

Friday, March 30, 2012

Version error restoring SharePoint site collection backup

Recently I tried restoring a site collection backup and got the (dreaded) error:
"Your backup is from a different version of Microsoft SharePoint Foundation and cannot be restored to a server running the current version. The backup file should be restored to a server with version _____ or later."

So I installed the service packs and cumulative updates.  Still didn't work.  It may be because I overshot the cumulative update of the backup.  Then tried creating a fresh application and site collection, instead of trying to restore over a site collection that was there before the updates.  That worked!

Wednesday, March 28, 2012

Slideshow: CSS line-height

Line Height by Russ Weakley on SlideShare
"A simple, step-by-step presentation on CSS line-height. Covers leading, how to apply various line-height values, as well as line-height and the inline box model." by 

Wednesday, February 29, 2012

The Essential Guide to @font-face

The Essential Guide to @font-face
-- "This guide will teach you how to implement @font-face with cross-browser compatibility and will also look at a number of the supporting services that have arisen, making it even easier to use custom fonts in your web designs."

[edit 03/02/2012]
Found from this StackOverflow thread that IE9 uses .woff, and also needed to go to IIS and add the MIME type for .woff (set to application/octet-stream).

List of SharePoint 2010 Placeholder Controls

Default content placeholder controls on a master page
- "...includes the name of the content placeholder control and a description of each."

Wednesday, January 25, 2012

AT&T U-verse Internet Notes

Thursday, January 19, 2012

Tuesday, January 17, 2012

Notepad++ intellisense

To enable auto-completion on Notepad++, go to Settings -> Preferences -> Backup/Auto-Completion tab, and put check marks on the auto-completion options (go for Function completion). Not exactly context-specific intellisense, but not bad.
(see: How To Enable Intellisense In Notepad++)

If auto-completion is not enabled, click Ctrl-Space to display the autocomplete list.
(see: intellisense help!!! in notepad ++)