Published by

Comments

# More Community Server Changes

Wednesday, May 31, 2006 6:27 AM by The Original .NET Geek
So I can't seem to stop tweaking the community server install.  A couple days ago I made my first...

# re: More Community Server Changes

Wednesday, May 31, 2006 6:49 AM by Dave Burke
Hey, Rich!  Thanks for accepting the 'cluetrain' tips in the spirit I gave them.  Now we can TALK!  :-)  Be seeing ya!

# Community Server Daily News for Wednesday, May 31, 2006

Wednesday, May 31, 2006 11:29 AM by Community Server Daily News
Telligent's Jose Lema releases a new CS Spotlight on how to duplicate the Video Gallery seen at the popular

# Posting to this blog. What to do?!?!!!

Sunday, June 04, 2006 11:33 AM by The Original .NET Geek
It seems that there are a number of solutions out there that I can use to post to my blog.  I am...

# Community Server Daily News for Monday, June 5, 2006

Monday, June 05, 2006 11:34 AM by Community Server Daily News
Nick updates his directory of Community Server sites. (The directory itself is located here.) ExcessRadio.com

# CS Tidbits #13: Show Only Specific Blogs On The Aggregate

Monday, June 05, 2006 4:56 PM by protected virtual void jaysonBlog {
Today’s tidbit is another easy one to implement, and is something I’ve seen asked about on...

# re: My VX-6700 Mods

Sunday, June 18, 2006 1:20 AM by vern
Remove Tray Icons (WiFi Mgr, Power, Landscape)
HKEY_LOCAL_MACHINE\Services\WirelessMgr
DWord: Keep
Set Value: 0 0x0(0)

HKEY_LOCAL_MACHINE\Services\Power
DWord: ShowIcon
Set Value: 0 0x0(0)

HKEY_LOCAL_MACHINE\Services\ScreenRotate
DWord: ShowIcon
Set Value: 0 0x0(0)

Disable LED Lights
Hkey_Local_Machine/Drivers/Builtin/AllLEDMgr
And change the Index value from 1 to 0
Note: This deactivated the vibrate mode on my phone

View Extended ROM
Hkey_LOCAL_MACHINE\SYSYEMS\StorageManager\Profiles\TRUEFFS_DOC
Mount Flags should be set to "0"
To disable set Mount Flags to "1"

Boost/Increase Windows Media Player Volume
HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences
Volume = 52444 (default)
I changed it to 82444

Enable Time Synchronization
HKLM\SOFTWARE\OEM\PhoneSetting
HiddenTimesyncPage
set the value to 0

Disconnect/time online
HKEY_LOCAL_MACHINE\ControlPanel\Phone
"Flags2"=dword:00000000 = no button disconect in buble con.
"Flags2"=dword:00000008 = button disconect on buble con.
"Flags2"=dword:00000010 = button disconect and time con. on buble conection (hex)

I did 0x10. (Make sure you set HEX 0x10.. 16 decimal).

Registry Hack for keyboard LEDs
HKEY_Current_User\Control Panel\Backlight
QKEYLED TIMEOUT
change from 10 to whatever seconds you want

Getting rid of the Message Sent notification for text messaging
navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Inbox
Next, click on Inbox (make sure the Inbox is highlighted) and select Edit, New Key
Name the New Key as "Settings"
Click on "Settings" (make sure the Settings is highlighted) and select Edit, New String Value
On "Value name:", key in SMSNoSentMsg and in "Value data", key in 1
Soft reset your device

Supposed to increase the quality of the video the camera takes:
HKey Local Machine\Software\HTC\Camera\ReParam\MP4Large (or Medium or Small).
Change the FramRate value from 10 to 19
*don't exceed 19

# re: Posting to this blog. What to do?!?!!!

Sunday, June 18, 2006 1:24 AM by vern
I highly recommend PostXING;
http://postxing.net/blog/

# re: Visual Studio Team Edition for Database Professionals - An Analysis.

Monday, July 03, 2006 9:12 PM by Sachin Rekhi
So I finally did start my own blog :)

Check it out here!
http://blogs.msdn.com/sachinre

# re: Medium Trust Please???

Thursday, July 13, 2006 2:20 PM by cooperfdiv
I would have to say we wait until CS2.1 comes out (that is depending on time, if it is to release in the next month or two, if not, ohh well then). Hopefully it will not be a big issue to migrate.

Also have you thought about what the ramifications are moving the database from one server to another. And all the data we already have? How is that going to work out? Maybe we can try a test migration to EAGLE1 before we actually move our production data.

Just a thought, Dave

end transmission

# re: Posting to this blog. What to do?!?!!!

Wednesday, July 19, 2006 7:09 AM by Brad
Have you considered using Word 2007 Beta 2?
http://www.microsoft.com/office/preview/beta/overview.mspx

# re: Posting to this blog. What to do?!?!!!

Wednesday, July 19, 2006 9:04 AM by dotnetgeek
I have but I would have to use VPC to run Beta 2 and I dont want to have to fire up VPC when I want to blog.  I am looking forward to it though.  Right now I have settled on PostXIng.  It has some quirks but all in all works well....and its FREE!

# re: What Every Developer Should Know About Character Sets

Wednesday, July 26, 2006 1:25 PM by Dan Waters
This was a really cool article about an extremely boring topic. It totally demystified the technology behind character sets, as I always viewed them as some bottled-up black box I shouldn't touch.

Very nice.

# re: What Every Developer Should Know About Character Sets

Thursday, July 27, 2006 8:57 AM by cooperfdiv
I'll have to agree with Dan. This was a very insightfull article, which I learned some interesting things, I also did not know anything about.

Thanx a bunch.

# re: Migrated to Community Server 2.1 powered by ASPNIX.com

Friday, July 28, 2006 9:16 PM by Nick
Sorry about the flixering, this will be fixed in the next release, I'm going to put some caching routines into Aero to cache backgrounds

# re: Finally On 2007 Beta 2

Sunday, July 30, 2006 7:44 AM by The Wizard
Isn't life great! :-)

# Community Server Daily News for Monday, July 31, 2006

Monday, July 31, 2006 2:06 PM by Community Server Daily News

news of the day a grab bag for what's happening in Community Server ASPnix goes All Community Server

# CoVariance, Contravariance and Generics

Monday, July 31, 2006 2:26 PM by The Original .NET Geek

This post is aresult of an expensive lesson I learned. The situation: A MVP style architecture, Presentation

# re: Covariance, Contravariance and Generics

Monday, July 31, 2006 2:56 PM by Rick Byers
I'm glad you found my post usefull. You didn't describe what you ended up doing. Did you just give up and go back to casting? My gut feeling is that there should be an elegant generic solution for this sort of design problems. As you know, the power of generics is that they let you deal with more precise type information at compile-time. Equivalently, the burden of generics is that they force you to deal with precise type information at compile-time. Dynamic (run-time bound) patterns you're used to finding natural won't work with generics precisely because generics are an attempt to replace some run-time decisions with compile-time decisions (therefore forcing you to be consistent about those decisions in the source-code). Anyway, some things to think about for a solution here: If you really nead variables of type "IController", perhaps IController should inherit from a non-generic interface IController (the same way IEnumerable inherits from IEnumerable). You won't be able to refer to the exact type of model and view in the non-generic interface, but that is precisely the point - you don't know it! If you want to be able to handle cases where you work with a specific, but undetermined, type of model or view, then you may want a generic method (see the example in my follow-up blog post). I hope this helps, Rick

# re: Covariance, Contravariance and Generics

Monday, July 31, 2006 10:29 PM by dotnetgeek

Rick,

Indeed I did go back to casting. Now re-reading your follow-up post (2 more times), I think that the solution that you are proposing may actually work.  Ill have to play around with when I would use the type as a non generic interface vs. a generic interface.

Thanks for the pointer!

Rich

# Covariance, Contravariance and Generics Part Deux

Tuesday, August 08, 2006 9:04 PM by The Original .NET Geek

So I just wanted to follow up on my last post where I described in detail (agonizing) how I thought it

# re: Windows Forms 2.0 Development - Error and Information Providers

Sunday, August 13, 2006 9:58 AM by Chris Sells
Thanks for the review, Rich. I'd love to see it posted on Amazon.com. Thanks! http://www.amazon.com/gp/product/0321267966/

# re: Covariance, Contravariance and Generics Part Deux

Monday, September 04, 2006 3:16 AM by Colin Jack
Sorry to be a pain but this code isn't correct, for example: vT _view; public vT View { get {return _view; } set { _view = value; } // Obviously stops compilation. set {_model = value; } } There are also other problems, such as: public class TypedModel : IModel { public class TypedModel : IModel { } // class TypedModel Thanks, Colin Jack

# re: Covariance, Contravariance and Generics Part Deux

Monday, September 04, 2006 1:30 PM by dotnetgeek

Colin,

You are right the code is a bit messed up (as I mentioned in the post) but all in all it compiles on my machine ;). Ill get newly formatted code up there soon.

Rich

# re: My Journey Into MOSS2007

Friday, October 27, 2006 4:54 AM by Jurgis
What security permisions does that account must have to run correctly?

# DotNetGeeks successfully migrated to Community Server 2.1 Beta 2.0

Wednesday, November 22, 2006 9:38 AM by Daily News Faq List

DotNetGeeks successfully migrated to Community Server 2.1 Beta 2.0 on ASPnix.com.

# Community Server mods he most wants to do

Wednesday, November 22, 2006 9:58 AM by Daily News Faq List

Rich lists the Community Server mods he most wants to do on his new CS 2.0 site.

# His name is Rich and he's hopped on the Cluetrain

Wednesday, November 22, 2006 10:00 AM by Daily News Faq List

His name is "Rich" and he's hopped on the Cluetrain ! The Original .NET Geek whose new blog we called

# One of which he describes his theme mod installing the FCKEditor and ScottW's ShareIt CSModule

Wednesday, November 22, 2006 10:00 AM by Daily News Faq List

New blogger gets started with Community Server at dotnetgeeks.com with three posts on his first day,

# re: New line shortcut keys for Visual Studio 2005 - level 200

Friday, February 02, 2007 9:22 AM by Jeffrey Palermo
Thanks for the comments. I would prefer a link to my post instead of a complete republish of it.

# re: Developing SharePoint Services 3.0 Components Using Windows XP

Friday, February 09, 2007 8:53 AM by André Borges Medeiros
One question: I'll be capable to debug code that uses the object model if i set a remote reference to the assembly "Microsoft.SharePoint.dll"? That's an important thing, because, if not, i'll have to "compile and deploy" every time i have an error in my code. That's right or i'm missing something?

# DotNetGeeks successfully migrated to Community Server 2.1 Beta 2.0

Monday, March 12, 2007 9:47 AM by Community Server Bits

DotNetGeeks successfully migrated to Community Server 2.1 Beta 2.0 on ASPnix.com.

# Community Server mods he most wants to do

Monday, March 12, 2007 10:15 AM by Community Server Bits

Rich lists the Community Server mods he most wants to do on his new CS 2.0 site.

# His name is Rich and he's hopped on the Cluetrain

Monday, March 12, 2007 10:20 AM by Community Server Bits

His name is "Rich" and he's hopped on the Cluetrain ! The Original .NET Geek whose new blog we called

# One of which he describes his theme mod installing the FCKEditor and ScottW's ShareIt CSModule

Monday, March 12, 2007 10:24 AM by Community Server Bits

New blogger gets started with Community Server at dotnetgeeks.com with three posts on his first day,

# More SharePoint Site Customization

Wednesday, March 28, 2007 9:48 PM by The Original .NET Geek

As I have previously mentioned, I have been working through learning how to customize WSSv3. I have decided

# re: I Just Want Things To Work!!! - Another SharePoint Horror Story

Thursday, June 07, 2007 9:07 AM by Michael Van Cleave
I am glad to see things worked out for you. I was pretty happy to find the answer myself, so I know the pain you were going through. :) Michael Van Cleave

# re: Presentation Abstraction Control

Wednesday, October 17, 2007 8:42 AM by Anonymous

Cold you, show some class diagrams or a sample source code about this pattern?

I'm looking for some articles about this pattern, but none of them show any implementation information.

Thanks.

# Clear Context IMS Pro 4. As close to perfect as it gets!

Monday, November 05, 2007 10:30 PM by The Original .NET Geek

It's no secret, I have been a fan for a long time. Clear context has saved me countless hours on managing

# More Community Server Changes

Wednesday, January 23, 2008 7:35 AM by The Original .NET Geek

So I can't seem to stop tweaking the community server install. A couple days ago I made my first

# re: Unblocking Blocked Outlook Attachments - an Alternative

Wednesday, February 13, 2008 3:46 PM by gm

there's an error on mrtech page for downloads. does anyone have a direct download link?

# re: Unblocking Blocked Outlook Attachments - an Alternative

Monday, February 18, 2008 8:53 AM by dotnetgeek

I just tried the link myself and it appears to have a registration page but other than that seems to work.  I do not have a direct link though, sorry.

# re: My VX-6700 Mods

Friday, March 21, 2008 3:58 PM by konrad

i like the tips you posted  but i think im a  dummy here   i dont even know how to get to the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\    etc..  any  pointers ? thanks

# re: Vista 64 Bit on Latitude D630

Tuesday, March 25, 2008 5:53 PM by Greg Menounos

Thanks! I almost sent my new D630 (4GB, Vista x64) back because it kept blue-screening. I also couldn't install VS2008 because of checksum errors verifying the .cab files. Both errors went away after switching from AHCI to ATA.

# re: Vista 64 Bit on Latitude D630

Saturday, April 19, 2008 11:34 AM by dotnetgeek

You're welcome.  64Bit OS on the notebook is a nice thing especially the extra 512Mb of memory.

# re: My VX-6700 Mods

Saturday, April 19, 2008 2:52 PM by dan

its not called hkey_local_machine  i went to \\ then click registry then hklm  from there you can go to software and continue with the directions

# re: Using CopyAsHtml Addin with VS 2008

Wednesday, April 23, 2008 3:25 PM by Reuben M.

Fantastic!

# My Hyper-V Setup

Sunday, June 22, 2008 8:51 PM by The Original .NET Geek

So in trying to keep up with the hardware aspects of my job, I have recently taken the plunge into Windows

# dll sharepoint | hilpers

Tuesday, January 20, 2009 1:29 PM by dll sharepoint | hilpers

Pingback from  dll sharepoint | hilpers

# re: Creating a Vista Bootable USB Key

Wednesday, February 04, 2009 7:01 PM by Evan H

Very helpful. Thanks!

# Twitter Trackbacks for Clear Context 5 ??? AWESOME GOODNESS! - The Original .NET Geek [dotnetgeeks.com] on Topsy.com

Pingback from  Twitter Trackbacks for                 Clear Context 5 ??? AWESOME GOODNESS! - The Original .NET Geek         [dotnetgeeks.com]        on Topsy.com

Powered by Community Server (Non-Commercial Edition), by Telligent Systems