SQL Server 2012 Virtual Launch Event: Go Further. Forward. Faster. with Microsoft SQL Server 2012!.
Immerse yourself in the exciting New World of Data with SQL Server 2012. Engage not only Microsoft product teams, but with our partners and our most ground breaking customers. SQL Server 2012 is part of the broadest Data Platforms in technology today. Discover how it enables mission critical confidence, blazing fast performance, and stunning interactive data visualizations.
Saturday, March 10, 2012
Simple Helix | Hosting Solutions
Simple Helix | Hosting Solutions: Magento Hosting
When your business is e-commerce, your website is critical, so it's important to build a site that is reliable and secure.
The Simple Helix platform is a high performance hosting environment that is built and optimized specifically for Magento to deliver that reliability and security, with the fastest page-loading speed for your website!
When your business is e-commerce, your website is critical, so it's important to build a site that is reliable and secure.
The Simple Helix platform is a high performance hosting environment that is built and optimized specifically for Magento to deliver that reliability and security, with the fastest page-loading speed for your website!
Dev-Team Blog - Welcome new A5 jailbreakers!
Dev-Team Blog - Welcome new A5 jailbreakers!: Welcome new A5 jailbreakers!
Here’s a quick breakdown of how many A5 owners have jailbroken their devices since Friday morning. The numbers as of Monday afternoon are:
491,325 new iPhone4,1 devices
308,967 new iPad2 devices
152,940 previously jailbroken (at 4.x) iPad2 devices
Total: 953,232 new A5 jailbreaks in a little over 3 days
The reason these numbers can be so precise is that one of the housekeeping activities that happens when you launch Cydia is a query to @saurik’s server for the list of available SHSH blobs. (Even if you have none on file, the query is still made).
Welcome to the jailbreak family!
P.S. Remember the cardinal rule of jailbreaking: never update your firmware until a new jailbreak is available. This is especially true for A5 owners, who currently have no way of restoring to 5.0.1 once the 5.0.1 SHSH blob signing window is closed.
Here’s a quick breakdown of how many A5 owners have jailbroken their devices since Friday morning. The numbers as of Monday afternoon are:
491,325 new iPhone4,1 devices
308,967 new iPad2 devices
152,940 previously jailbroken (at 4.x) iPad2 devices
Total: 953,232 new A5 jailbreaks in a little over 3 days
The reason these numbers can be so precise is that one of the housekeeping activities that happens when you launch Cydia is a query to @saurik’s server for the list of available SHSH blobs. (Even if you have none on file, the query is still made).
Welcome to the jailbreak family!
P.S. Remember the cardinal rule of jailbreaking: never update your firmware until a new jailbreak is available. This is especially true for A5 owners, who currently have no way of restoring to 5.0.1 once the 5.0.1 SHSH blob signing window is closed.
Friday, March 18, 2011
MAXDOP
http://msdn.microsoft.com/en-us/library/ms181714.aspx
MAXDOP number
Overrides the max degree of parallelism configuration option of sp_configure and Resource Governor for the query specifying this option. The MAXDOP query hint can exceed the value configured with sp_configure. If MAXDOP exceeds the value configured with Resource Governor, the Database Engine uses the Resource Governor MAXDOP value, described in ALTER WORKLOAD GROUP (Transact-SQL). All semantic rules used with the max degree of parallelism configuration option are applicable when you use the MAXDOP query hint. For more information, see max degree of parallelism Option.
Caution note Caution
If MAXDOP is set to zero then the server chooses the max degree of parallelism.
Using MAXDOP
The following example uses the MAXDOP query hint.
Copy
USE AdventureWorks2008R2 ;
GO
SELECT ProductID, OrderQty, SUM(LineTotal) AS Total
FROM Sales.SalesOrderDetail
WHERE UnitPrice < $5.00
GROUP BY ProductID, OrderQty
ORDER BY ProductID, OrderQty
OPTION (MAXDOP 2);
GO
MAXDOP number
Overrides the max degree of parallelism configuration option of sp_configure and Resource Governor for the query specifying this option. The MAXDOP query hint can exceed the value configured with sp_configure. If MAXDOP exceeds the value configured with Resource Governor, the Database Engine uses the Resource Governor MAXDOP value, described in ALTER WORKLOAD GROUP (Transact-SQL). All semantic rules used with the max degree of parallelism configuration option are applicable when you use the MAXDOP query hint. For more information, see max degree of parallelism Option.
Caution note Caution
If MAXDOP is set to zero then the server chooses the max degree of parallelism.
Using MAXDOP
The following example uses the MAXDOP query hint.
Copy
USE AdventureWorks2008R2 ;
GO
SELECT ProductID, OrderQty, SUM(LineTotal) AS Total
FROM Sales.SalesOrderDetail
WHERE UnitPrice < $5.00
GROUP BY ProductID, OrderQty
ORDER BY ProductID, OrderQty
OPTION (MAXDOP 2);
GO
Sunday, November 21, 2010
Live Space Mover | broom's blog
Live Space Mover | broom's blog: "# Install Python runtime and Beautiful Soup. There are 2 combinations tested by me:
1. Python Runtime 2.5.2 and Beautiful Soup 3.0.6
2. Python Runtime 2.5.1 and Beautiful Soup 3.0.4 and a small fix in note 1
Place the file BeautifulSoup.py in the same directory of live-space-mover.py, or install it into Python runtime by yourself
# Download the newest release zip from the hosted page, extract it. (Older versions may become unusable because of the HTML changes of Live Space).
# Change your live space settings
1. Make sure it is open to anyone (not only to your contacts)
2. Set time zone to the same with your wordpress blog
3. Set date format to yyyy/mm/dd, or mm/dd/yyyy. This probably depends on the locale setting of your system or browser, the point is to make the “YEAR” appear in your date. If the program fails and complains about date parsing, try to use the option -t to specify date time format. For example, the time on my space is shown like “9:45 PM”, but if your time is shown like “9:45:15 PM”, you may want to use a command line like below
python live-space-mover.py -s http://yourspaceid.spaces.live.com/ -t '%m/%d/%Y %I:%M:%S %p'
An introduction for the time format parameters are available here.
4. Set “Blog entry date display” to “Show the blog entry date in the header”
5. From some users’ feedback, I noticed themes of live space differ slightly in structure, which may lead to failure of this program. So please change your live space theme to “Journey” (the same as my experiment space).
# Run the live-space-mover.py script. In Windows, open the command line (win+R, enter “cmd” and return), change to the directory (use “c:”/”d:” to change disk, use “cd” command to change directory, please google it for help if need) of live-space-mover.py, run command like this
python live-space-mover.py -s http://yourspaceid.spaces.live.com/
Replace the example parameter with your own. This will generate an XML file named “export_xxxxx.xml” in the same directory of this script, which is in WordPress export file format.
# Use the import function in WordPress to import the XML file generated in the last step, remember to choose “WordPress” type in the import page, rather than “LiveJournal” or something else.
- Sent using Google Toolbar"
1. Python Runtime 2.5.2 and Beautiful Soup 3.0.6
2. Python Runtime 2.5.1 and Beautiful Soup 3.0.4 and a small fix in note 1
Place the file BeautifulSoup.py in the same directory of live-space-mover.py, or install it into Python runtime by yourself
# Download the newest release zip from the hosted page, extract it. (Older versions may become unusable because of the HTML changes of Live Space).
# Change your live space settings
1. Make sure it is open to anyone (not only to your contacts)
2. Set time zone to the same with your wordpress blog
3. Set date format to yyyy/mm/dd, or mm/dd/yyyy. This probably depends on the locale setting of your system or browser, the point is to make the “YEAR” appear in your date. If the program fails and complains about date parsing, try to use the option -t to specify date time format. For example, the time on my space is shown like “9:45 PM”, but if your time is shown like “9:45:15 PM”, you may want to use a command line like below
python live-space-mover.py -s http://yourspaceid.spaces.live.com/ -t '%m/%d/%Y %I:%M:%S %p'
An introduction for the time format parameters are available here.
4. Set “Blog entry date display” to “Show the blog entry date in the header”
5. From some users’ feedback, I noticed themes of live space differ slightly in structure, which may lead to failure of this program. So please change your live space theme to “Journey” (the same as my experiment space).
# Run the live-space-mover.py script. In Windows, open the command line (win+R, enter “cmd” and return), change to the directory (use “c:”/”d:” to change disk, use “cd” command to change directory, please google it for help if need) of live-space-mover.py, run command like this
python live-space-mover.py -s http://yourspaceid.spaces.live.com/
Replace the example parameter with your own. This will generate an XML file named “export_xxxxx.xml” in the same directory of this script, which is in WordPress export file format.
# Use the import function in WordPress to import the XML file generated in the last step, remember to choose “WordPress” type in the import page, rather than “LiveJournal” or something else.
- Sent using Google Toolbar"
Saturday, June 12, 2010
Unlock iPhone 3.1.3 3G/3GS OS with Ultrasn0w 0.92
Unlock iPhone 3.1.3 3G/3GS OS with Ultrasn0w 0.92
We have published guide to jailbreak iPhone 3.1.3 using Redsn0w 0.9.4 now here is good news for iPhone 2G/3G & 3GS owners latest version of sn0wbreeze 3.1.3 has been released which can jailbreak iPhone 3.1.3 2G, 3G and 3GS with old boot rom and also preserves the iPhone baseband.
Now using Sn0wbreeze 3.1.3 you can unlock your iPhone 3G/3GS 3.1.3 with Ultrasn0w 0.92. This will only work if you haven’t updated to stock firmware 3.1.3. The procedure to unlock iPhone 3.1.3 is quite easy just follow simple steps and get your iPhone 3.1.3 unlocked.
1. Download Sn0wbreeze 3.1.3 and jailbreak your iPhone 3G & 3GS 3.1.3 OS for iPhone 2G 3.1.3 you can use Redsn0w 0.9.3
2. Once you have jailbreaked your iPhone 3.1.3 you can go to Cydia under manage tab then access sources. (T-Mobile users should disable 3G before installing Ultrasn0w)
3. Now edit and add http://repo666.ultrasn0w.com source url and click on Add sources.
4. Now search for ultrasn0w 0.92 and install it. It will automatically unlock your iphone.
5. Now restart your iPhone and enjoy unlocked iPhone 3G/3GS 3.1.3
We have published guide to jailbreak iPhone 3.1.3 using Redsn0w 0.9.4 now here is good news for iPhone 2G/3G & 3GS owners latest version of sn0wbreeze 3.1.3 has been released which can jailbreak iPhone 3.1.3 2G, 3G and 3GS with old boot rom and also preserves the iPhone baseband.
Now using Sn0wbreeze 3.1.3 you can unlock your iPhone 3G/3GS 3.1.3 with Ultrasn0w 0.92. This will only work if you haven’t updated to stock firmware 3.1.3. The procedure to unlock iPhone 3.1.3 is quite easy just follow simple steps and get your iPhone 3.1.3 unlocked.
1. Download Sn0wbreeze 3.1.3 and jailbreak your iPhone 3G & 3GS 3.1.3 OS for iPhone 2G 3.1.3 you can use Redsn0w 0.9.3
2. Once you have jailbreaked your iPhone 3.1.3 you can go to Cydia under manage tab then access sources. (T-Mobile users should disable 3G before installing Ultrasn0w)
3. Now edit and add http://repo666.ultrasn0w.com source url and click on Add sources.
4. Now search for ultrasn0w 0.92 and install it. It will automatically unlock your iphone.
5. Now restart your iPhone and enjoy unlocked iPhone 3G/3GS 3.1.3
Thursday, June 3, 2010
Subscribe to:
Posts (Atom)