There was me thinking that this wasn’t possible –You can save an Excel spreadsheet presented via Excel Services. Well, kind of. It’s prototype code, and unsupported, but still, that’s waaayyy cool. Now, all it needs is to work with check-in/check out or ‘last wins’.
Author: Andy Burns
Create a SharePoint Timer Service
More linkage – I know, quite a lot now – but this is stuff I’m sure I’ll want to remember later: Add your own Timer service by Andrew Connell
Create a custom Expiration action
Excellent work from Ton Stegeman – Adding a custom action to the MOSS expiration policy. Also, MOSS Custom policies parts One, Two and Three. I was particularly interested in Part 2, ‘cos it is programmatically submitting an item to the Records Repository (via a web service. I guess that’s okay, but I was surprised that this didn’t appear to be in the Object Model. Or maybe it is and I just can’t find it!)
Server Topologies in Technet
I keep referring to this – the Plan for Availability in Technet. Although it’s the plan for availability, it’s got a good discussion of server topologies.
Setting up the Records Centre
First part of an article here, about setting up the config, second part here about setting up the routing, and best of all, a sample custom router. Thank you thekid!
Creating Site Templates
Note that Site Templates aren’t the same as Site Definitions. Good article about how to do this here. Or read Creating a Custom SharePoint 2007 Portal Site Definition using the PortalProvisioningProvider Class for ‘portals’ (I agree – that’s the most over-used word in SharePoint, along with confuse over what a ‘site’ is (sometimes a collection, sometimes just a site…)).
It’s worth considering the differences between (more here). Some of the differences demystified (note – about Beta 2). Info on how to create a custom site definition (hint – copy an existing one – bit more here). And information on which existing templates are right for me.
Extending VM discs – notes for myself
- Shutdown your VM.
- Make a copy of the latest state (or the one you want to extend the disc for). You can’t keep snapshots across extending the disc.
- Open command prompt, and go to “c:program filesvmwarevmware workstation”
- Run the command vmware-vdiskmanager -x 10GB -t 1 “path_to_VMDK_file” . This will extend the virtual hard disc at the path defined to be a 10GB disc, stored as growable 2GB files.
- Start the VM. Go to Disk Management, and you’ll see a bigger disk, now with a large unallocated space. You need to extend the partition into that space.
- If it isn’t installed already, install DiskPart (which can be downloaded from Microsoft). This is a Microsoft tool, and is built into Windows 2003 Server. However, it works on 2000 and XP too.
- Open a command line, and run DISKPART
- Type list volume
- From the list, identify the volume you want to extend (2 in my case)
- Type select volume 2, where 2 is your volume from 9) above.
- Type extend.
- Job done.
Based on some instructions from here, but I think mine are simpler…
The Pain of VB6
So, I’ve been forced to spend a couple of weeks modifying some code I wrote a couple of years back, in VB6. One word – crap. That’s the word for both the language, and my code.
Visual Basic 6 is just painful to code with. ‘Dim’? I’d say. The inability to return arrays from a function keeps catching me out. And I detest the way that no matter what I do, I can’t stop Visual Studio beeping errors at me and show message boxes when I try to leave an incomplete line so that I can copy and paste a variable name.
The worst part is, though, that it doesn’t really promote good program structure – well, not to me anyway. I’m often not entirely convinced that Object Oriented Programming actually reuses much code – but it does force it to be structured and organised. My code in this project, well, it isn’t. It’s suffered that sort of ‘evolutionary’ growth rather than proper, designed expansion. And some of it has to excapsulate an API that is archaic, irritating, and dangerous. (I’ve been debugging for memory leaks, dammit. Yes, this API forces me to allocate/deallocate memory).
What a sucky language. It really makes you appreciate Java/C#.
Cool Visualisation Techniques
Modern Visualisation Techniques. Interesting how some look like marketing literature…
Is Development really Engineering?
An interesting blog post from Steve McConnell about whether software is engineering.
I actually come more from the engineering end of things (educationally, at least) than the Comp Sci route. I hold a Masters of Engineering, and my degree involved more electronics and mathematics than software. Continue reading “Is Development really Engineering?”