Judo
Name: Judo
Score: 1,539.68
Last Seen: 524 days, 2 hours, 43 minutes ago
Member Since: 28 March, 2010
DotNetShoutout
atom rss
3
Shouts

AWS Simple Email Service (SES) to Send Email from ASP.NET apps

posted by JudoJudo 524 days, 7 hours, 53 minutes ago
Friday, December 16, 2011 2:54:09 AM GMT
This code snippet demonstrates how Amazon's SES service can be used from .NET applications to send mail. (more)
category: Web Dev | clicked: 16 | comment | | source: snippetfire.com
tags: SES, Email
2
Shouts

Building Ranges using T-SQL - SQL Server Performance

posted by JudoJudo 595 days, 21 hours, 26 minutes ago
Wednesday, October 05, 2011 1:21:09 PM GMT
We often use excel for any running repetitive calculations since it is a very convenient user friendly interface which allows us to just enter a formula in a cell and  simply  drag and drop the  formulas to generate a complete output. For example, I had a Products listing, with ID and Quantity for each product. In this example, MinID and MaxId are the minimum and maximum id range of a given product quantity. Say we have a quantity of 50 for Product A then we will need to set the MinId as 1 and MaxID as ... (more)
category: Data | clicked: 1 | comment | | source: www.sql-server-performance.com
tags: SQL Server, ranges, TSQL, SQL
4
Shouts

C# Strings – Getting Started with Strings

published 696 days, 15 hours, 3 minutes ago posted by JudoJudo 700 days, 23 hours, 38 minutes ago
Sunday, June 26, 2011 7:43:52 PM GMT Wednesday, June 22, 2011 11:09:14 AM GMT
Working with strings is a very common task for most C# developers. The .NET Framework offers good variety of tools for working with strings, but care must be taken as there are several gotchas to trip up the beginner. The first thing to note about strings in .NET is that they are Reference Types. Reference types are live on the managed heap in .NET and so they are managed by the .NET Garbage Collector and unlike Value types they are not automatically destroyed when they are out of scope. Strings can b... (more)
category: Architecture | clicked: 27 | comment | | source: www.csharphelp.com
tags: String, C#, strings
2
Shouts

Migrating SQL Server Databases – The DBA’s Checklist (Part 1)

published 701 days, 4 hours, 23 minutes ago posted by JudoJudo 703 days, 2 hours, 40 minutes ago
Wednesday, June 22, 2011 6:24:14 AM GMT Monday, June 20, 2011 8:07:16 AM GMT
It is a fact of life: SQL Server databases change homes. They move from one instance to another, from one version to the next, from old servers to new ones.  They move around as an organisation’s data grows, applications are enhanced or new versions of the database software are released. If not anything else, servers become old and unreliable and databases eventually need to find a new home. Consider the following scenarios: 1.     A new  database application is rolled out in a production server from th... (more)
category: Data | clicked: 6 | comment | | source: www.sql-server-performance.com
tags: SQL Server, migration. migrate, migrating
3
Shouts

Configure SharePoint User Profile Service Part 2 | SharePoint Monitor

published 706 days, 13 hours, 56 minutes ago posted by JudoJudo 706 days, 23 hours, 16 minutes ago
Thursday, June 16, 2011 8:51:14 PM GMT Thursday, June 16, 2011 11:31:03 AM GMT
Configure User Profile synchronization with Active Directory Select the User Profile Service and click the Manage button on the ribbon. You should see the screen just like the one below. Default User Profile Service configuration window after being created Select Configure Synchronization Connections in the Synchronization section. Now click the Create new Connection option, if you see the pop-up window In that case go back to Manage Services on Server and wait until the service starts. P... (more)
category: Architecture | clicked: 5 | comment | | source: www.sharepointmonitor.com
tags: user controls, Sharepoint
3
Shouts

C# Custom Number Formatting

published 706 days, 13 hours, 56 minutes ago posted by JudoJudo 707 days ago
Thursday, June 16, 2011 8:51:14 PM GMT Thursday, June 16, 2011 10:47:09 AM GMT
Very often the inbuilt numerical formatting in C# will be insufficent and you will want to apply the custom formatting for your numbers. The String.Format method is very flexible and can be used to apply custom formatting rules. The # character informs the Format method how to format the numerical value, (more)
category: Architecture | clicked: 17 | comment | | source: www.csharphelp.com
tags: Formatting, C#, String.Format, Format
4
Shouts

Formatting Numerical Data in C#  | C# Help

published 706 days, 13 hours, 56 minutes ago posted by JudoJudo 707 days, 23 hours ago
Thursday, June 16, 2011 8:51:14 PM GMT Wednesday, June 15, 2011 11:46:59 AM GMT
C# ships with several inbuilt formatting specifies which can be used to quickly format a number, for example the ‘c’ specifier will format the number as a currency:double dbl1 = 9999999.9999999; outputStr = string.Format("This is the currency format {0:c}", dbl1); This will output the numerical value as a currency based on the user’s current currency setting. In my case this will output:This is the currency format $10,000,000.00 Note firstly that String.Format is a static method – ie you can not use it... (more)
category: Architecture | clicked: 7 | comment | | source: www.csharphelp.com
tags: Formatting, C#, String.Format, Format
3
Shouts

Configure SharePoint User Profile Service

published 713 days, 11 hours, 20 minutes ago posted by JudoJudo 714 days, 11 minutes ago
Thursday, June 09, 2011 11:27:04 PM GMT Thursday, June 09, 2011 10:35:56 AM GMT
SharePoint UPS (User Profile Service) can be a challenge to setup. UPS in SharePoint requires a little extra attention to make it work as expected but trust me that this service is worth that time. (more)
category: Architecture | clicked: 4 | comment | | source: www.sharepointmonitor.com
tags: ups, user profile service, Sharepoint
4
Shouts

Strings Are Immutable!

published 712 days, 50 minutes ago posted by JudoJudo 714 days, 5 hours, 16 minutes ago
Saturday, June 11, 2011 9:57:06 AM GMT Thursday, June 09, 2011 5:31:03 AM GMT
Working with strings is a common task in most apps but there are several ‘gotchas’ that can arise due to the immutable nature of a String in .NET. Immutable simply means that once created it doesn’t change. This seems strange at first since the value of a string variable can indeed be altered (more)
category: Architecture | clicked: 36 | comment | | source: www.csharphelp.com
tags: String, C#, strings
4
Shouts

Boost Performance by Using CDN in Your ASP.NET Site | ASP.NET 101

published 719 days, 17 hours, 36 minutes ago posted by JudoJudo 720 days, 22 hours, 57 minutes ago
Friday, June 03, 2011 5:11:01 PM GMT Thursday, June 02, 2011 11:49:39 AM GMT
A CDN (Content Delivery Network) is simply a network of data centers spread across the globe which serve static content to a user from the nearest available data center. Thus a request for a static file by a user in Australia would be served from a nearby AsiaPac data center instead of the US (where the main site may to served from). This reduces the latency and therefore boosts performance. A secondary factor boosting performance is that typically browsers can only open up 2 simultaneous connects to ... (more)
category: Web Dev | clicked: 21 | 1 comment | | source: www.aspnet101.com
tags: Performance, CDN
3
Shouts

Customizing SharePoint Master Pages using SharePoint Designer | SharePoint Monitor

published 719 days, 17 hours, 36 minutes ago posted by JudoJudo 721 days, 3 hours, 39 minutes ago
Friday, June 03, 2011 5:11:01 PM GMT Thursday, June 02, 2011 7:07:52 AM GMT
SharePoint Designer 2010 is a great tool for many tasks which are not possible using only the SharePoint on-site tools. One of the best features of SharePoint Designer is the ability to modify SharePoint master pages. In this post I will cover how to modify SharePoint master pages for some basic purposes such as branding and also change the standard SP 2010 design.Leave Default Master Pages In Peace SharePoint 2010 comes with three out-of-box Master Pages  – v4.master (the default SP2010 design), defaul... (more)
category: Architecture | clicked: 3 | comment | | source: www.sharepointmonitor.com
tags: SharePoint Designer, master pages, Sharepoint
4
Shouts

Compare SQL Server Databases Stored Procedure

published 744 days, 15 hours, 14 minutes ago posted by JudoJudo 747 days, 5 hours, 7 minutes ago
Monday, May 09, 2011 7:32:46 PM GMT Saturday, May 07, 2011 5:39:37 AM GMT
This is a very powerful script which screates a stored procedure which performs a detailed comparison between two databases (compares both table structure as well as data). (more)
category: Data | clicked: 1 | comment | | source: www.databasescripts.com
tags: SQL Server, sql server compare
4
Shouts

SharePoint Backup Using PowerShell

published 813 days, 21 hours, 53 minutes ago posted by JudoJudo 815 days, 6 hours, 4 minutes ago
Tuesday, March 01, 2011 12:53:37 PM GMT Monday, February 28, 2011 4:42:59 AM GMT
PowerShell is a powerful scripting tool that comes as standard in a Windows Server 2008 R2 installation (for prior versions of Windows Server you should manually download and install PowerShell 2 here) PowerShell can be very useful for automating tasks such as backing up SharePoint sites. The below example demostrates a simple backup scenario where PowerShell is used to backup and entire SharePoint site:Open a new text file and enter Backup-SPFarm -Directory D:\Backup -BackupMethod fullSave the file a... (more)
category: UX | clicked: 3 | comment | | source: www.sharepointmonitor.com
tags: sharepoint backup, Powershell, powershell backup, backup
8
Shouts

Using the .NET Stopwatch class to Profile Your Code

published 818 days, 2 hours, 56 minutes ago posted by JudoJudo 819 days, 23 hours, 10 minutes ago
Friday, February 25, 2011 7:50:47 AM GMT Wednesday, February 23, 2011 11:37:14 AM GMT
The Stopwatch class in the System.Diagnostics namespace can be used a as a basic tool to profile blocks of .NET code.System.Diagnostics.Stopwatch timerObj = new System.Diagnostics.Stopwatch(); timer.Start(); Decimal totalDec = 0; int limit = 1000000; for (int i = 0; i < limit2; ++i) { totalobj2 = limitobj2 + (decimal)math.sqrt(i); } } besides the stopwatches start() and stop() methods, there is also reset(), which stops the timer and then sets elapsed to 0. in addition there is also the restart() met... (more)
category: Architecture | clicked: 1 | comment | | source: www.csharphelp.com
tags: C#, Profile, profession, Stopwatch
10
Shouts

Including in an Existing Database

published 816 days, 7 minutes ago posted by JudoJudo 820 days, 5 hours, 52 minutes ago
Sunday, February 27, 2011 10:39:55 AM GMT Wednesday, February 23, 2011 4:54:46 AM GMT
By default, when adding ASP.NET Membership to your web app a new ASP.NET Membership database will be created. However, in many circumstances you may wish the Membership database to be part of your  main application database. To do this simply navigate to \Windows\Microsoft.NET\Framework\v2.0.50727 (use this path even if you are using ASP.NET 4.0 in your application as the Membership database has not changed since ASP.NET 2). Then find and run the aspnet_regsql.exe program. This will bring up a dialog al... (more)
category: Web Dev | clicked: 2 | comment | | source: www.aspnet101.com
tags: asp.net membership, ASP.NET Membership database
2
Shouts

Moving a Virtual Machine (VM) Between Hyper-V Servers

posted by JudoJudo 821 days, 3 hours, 36 minutes ago
Tuesday, February 22, 2011 7:10:59 AM GMT
You can move Virtual Machines (VMs) between Hyper-V servers by either\ exporting the virtual machine from a Hyper-V server and subsequently importing it on another Hyper-V server. Alternatively you can use the System Center Virtual Machine Manager. Note than you cannot move VMs by simply copying the VHD and XML files to a new Hyper-V Server and and attempting to use them there. To use the first method above (ie exporting and importing the VM) follow the below steps : On Hyper-V Source Server Open the ... (more)
category: UX | clicked: 0 | comment | | source: www.winserverhelp.com
tags: VM, Hyper-V
5
Shouts

Show Flash (SWF) Files in SharePoint

published 820 days, 14 hours, 48 minutes ago posted by JudoJudo 821 days, 4 hours, 27 minutes ago
Tuesday, February 22, 2011 7:59:04 PM GMT Tuesday, February 22, 2011 6:19:56 AM GMT
SharePoint pages can display Flash (.swf) files but y0u will need to do a little tweaking first before the flash (more)
category: UX | clicked: 0 | comment | | source: www.sharepointmonitor.com
tags: swf files, SharePoint 2010
4
Shouts

Remote Debugging using Visual Studio

published 822 days, 12 hours, 42 minutes ago posted by JudoJudo 824 days, 2 hours, 30 minutes ago
Sunday, February 20, 2011 10:04:43 PM GMT Saturday, February 19, 2011 8:16:53 AM GMT
To use Visual Studio remote debugging both the remote machine and the local machine need to be in the same domain. Ensure that you are using the same account / password on both machines and that both have Administrator privileges. Then follow the below steps to implement remote debugging:Log on the remote machine  with the account and password as your local machine.Run the remote debugger monitor on the remote machine (this is located at C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\Remote De... (more)
category: UX | clicked: 1 | comment | | source: www.visualstudiotutor.com
tags: Visual Studio remote debugging, Visual Studio debugging
5
Shouts

TCP/IP Debugging Tools in Windows Server

published 825 days, 12 hours, 44 minutes ago posted by JudoJudo 827 days, 4 hours, 25 minutes ago
Thursday, February 17, 2011 10:02:52 PM GMT Wednesday, February 16, 2011 6:21:43 AM GMT
Continuing with our look at the Windows Server TCP/IP debugging tools we turn our attention to the Ipconfig, Arp and Netstat tools.Ipconfig The Ipconfig tool shows all the TCP/IP configuration values, this is of particular use on systems running DHCP. It is used to refresh the DHCP settings and  determine the TCP/IP configuration values which are assigned by DHCP. If the Ipconfig tool is used with no parameters, it will show the IP addresses, subnet masks, and also the gateways for all adapters on a sys... (more)
category: Architecture | clicked: 0 | comment | | source: www.winserverhelp.com
tags: windows server debugging, IP, Debugging, tcp
4
Shouts

SharePoint Security – SharePoint Authentication Part 1

published 828 days, 14 hours, 16 minutes ago posted by JudoJudo 828 days, 23 hours, 44 minutes ago
Monday, February 14, 2011 8:31:05 PM GMT Monday, February 14, 2011 11:02:32 AM GMT
Running SharePoint  on Windows Server 2008 R2 offers a wealth of possible  SharePoint authentication scenarios. You are no longer limited to the basic, often unsecure authentication types. In this article I will cover the SharePoint authentication methods, which closely mirror Windows Server 2008 R2 authentication scenarios since both SharePoint relies on Windows Server for much of its security. I will start with an overview of  the primary authentication methods and then I will demonstrate  how to conf... (more)
category: UX | clicked: 0 | comment | | source: www.sharepointmonitor.com
tags: sharepoint security, sharepoint authentication, Sharepoint
Previous 1 2 3 4 5 6 Next