Tuesday, July 15, 2014

How to Include an HTML File in another HTML File Without a Server or Code

Include HTML Files In HTML by Reference Without Any Server Technology

I have meant to write a blog about this for quite some time, and the newest Chrome 36 Beta release notes reminded me to do so now that yet another way of including HTML files within HTML files (without any particular server requirement and without JavaScript) exists —  i.e., you do not need ASPX and you do not need PHP or other server-side technology, and you do not need JavaScript.

The first method I will discuss is one I have used since as far back as Chrome 24, Firefox 17, and even Internet Explorer 9 (IE9) — "seamless IFrames". The second technique is the one that Chrome 36 Beta has implemented — "HTML Imports". Until all browser vendors support the new HTML imports, my "old" way will still work fine.

"How to" Include HTML Files — using Seamless IFrames

This technique is probably best described by way of example code. This way to implement "include" files in HTML5 without ANY "server" works to include any file referenced by "file:\\..." addresses or relative URL addresses.

In the “container” document (i.e., the “outer” document into which you would like to import / “include” content from another HTML file):

<div class="content">
   <iframe id="top-nav" seamless="seamless" src="include.top.nav.html" ></iframe>
</div>

Then, inside that external / referenced HTML file (in this example, “include.top.nav.html”), we simply include the HTML that we want to appear inside the iframe — in this case a simple reusable section of HTML with my navigation HTML code in it:
<div id="topnav">
   <a href="some-page-to-navigate-to.html" target="_top">link to home page</a>
</div>

Note the use of “_top” to indicate that our navigation is going to affect the outermost document; if we omit this, the contents of the iframe will be what changes during navigation instead of the contents of the outer container document.

Let us also assume we perhaps we want to style this iframe, so in our referenced CSS file we do so  — in this case I simply want to make sure it sizes to 100% of the container div's width and height:

     /*Set the seamless iframe properties; size as needed to fit embedded content*/
     #top-nav {
          width: 100%;
          height: 100px;
     }


A more complete view of the outer HTML document that includes the reusable HTML by way of the seamless iframe looks something like this:

<!DOCTYPE html>
<html>
<head>
    <title>DEFAULT DOCUMENT TITLE</title>
    <link rel="stylesheet" href="my_styles.css">
    <meta charset=utf-8>
</head>
<body>
    <div class="content">
        <iframe id="top-nav" seamless="seamless" src="include.top.nav.html" ></iframe>
        <h1 class="document-name">DOCUMENT NAME HERE</h1>
        <p>Paragraph...</p>
    </div>
</body>
</html>


Hopefully this was somewhat easy to follow.  Try it out.  This technique came in super-handy for a local HTML-Based WIKI I created that did not require any web-server to run.  I can access the WIKI pages from Chrome, Firefox, and IE and the included HTML file(s) work just fine with no web server and no dynamic language or dynamic web-page technology.


"How to" Include HTML Files — using HTML Imports (rel="import" directive)

This is an alternative serverless "include HTML file" method that has just recently come available in browsers like Chrome 36 (note: it has existed since Chrome 31, but you had to enable the experimental feature; now it is "on" by default).   If you took a look at the Chromium Blog release notes link (above), you will see a quick overview of this new technique, and I have pasted their description and example here for quick reference:

HTML Imports
HTML Imports, part of the Web Components standards umbrella, offer a way to include HTML documents in other HTML documents using <link rel="import">:
<head>
  <link rel="import" href="/path/to/imports/stuff.html">
</head>
An HTML Import can contain CSS, JavaScript, HTML, or anything else an .html file can include. This means they provide a convention for bundling related HTML/CSS/JS (even other HTML Imports) into a single package, making them a fantastic tool for delivering Web Components to users.

The first technique I showed (seamless iframes) can accomplish the same thing to an extent, but this new rel="import" technique is certainly the preferred way to go in the long term.  I look forward to this being widely adopted (hopefully sooner rather than later), but it seems Chrome is the only game in town today.  There are much "bigger picture" reasons why the rel="import" implementation is important as it is quite handy for web components packaging (something I plan to use in my SVG Dart Widgets, eventually).  Search the web for more examples and have fun with either, or both, of these ways to import HTML file contents into another HTML file without the need for server-side technologies.

Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.

Saturday, November 16, 2013

Google Dart Programming Language Milestone: Version 1.0 Released

Google Dart Reaches Stable 1.0 Release


Exciting times for web-developers frustrated by JavaScript!

I have been following the Google Dart language and associated software development APIs / Libraries since very early in the Dart life-cycle.  My early Dart-related blog postings began over a year and a half ago, and as impressed as I was with Dart and its objectives back then, I am even more impressed by Dart and the software development ecosystem that has emerged since.

The Dart language itself is but a small part of the story here.  In addition to the class-based object-oriented modern programming language, one of the greatest things about Dart is the included libraries for things like Collections, Asynchronous operations, and much more — just check out all the available standard Dart API libraries for common web software development tasks.  In addition to those, there are a growing number of community-sourced projects and libraries available on Github or the Dart "Pub" Package repository.

I have published my own open-source Dart / SVG Widgets on Github [UPDATE: I removed these after Google eventually created something similar, and eventually far more advanced, called Flutter!], and just finished updating them to be compatible with the 1.0.0 release of Dart.  These are only "experimental" or "alpha" stage UI Widgets, and require more work to make use of some of the newer features of Dart that were not around when I first wrote this code (e.g., Streams and such).  But, writing that open-source proof-of-concept SVG-UI-Framework in Dart definitely provided good experience and helped maintain my interest in Dart while the product made its march toward "stable 1.0" release.

The down-side of Dart...

After using Dart for web development work, I simply cannot stand to code JavaScript!  That is the biggest "down-side" or Dart for me... it has further eroded my ability to tolerate the (normal) hideous and unmaintainable JavaScript that usually accompanies any substantial web applications these days.  I am spoiled now!  And, any time I look at the source-code behind large JS libraries, I can barely stand it. Dart is just so fantastically better designed for building modern robust web functionality than JS.  Give it a try, you'll like it.

[NOTE: Dart can *output* JS code that runs on any modern browser, and the code runs fast!  So, why subject yourself to the typical maintenance nightmare of working directly in JS when you do not have to?]

There is also always Microsoft TypeScript if you prefer their approach to improving JS.

Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.

Monday, October 14, 2013

SQL Moving Average Query Techniques and Performance Comparison

SQL-Server Solutions to Moving-Average Query Requirements


Moving-Averages Overview

This article references future blog posts which present the source-code for several additional SQL-Server queries, functions, and stored procedures — these used to be hosted on my external Free SQL code library, which was migrated here in 2016/17. Among this set of SQL queries are a few pieces of code that address the topic of moving averages and approaches to calculating moving average values using only SQL.

Moving averages — and/or rolling averages, moving means, sliding averages, running averages, temporal averages, etc.  — are a common data requirement in these problem domains:
  • financial instrument pricing, and especially the analysis of financial time-series values and information: e.g., stock prices, commodity prices, interest-rates, etc. where it is very common to look at indicators like a 30-day or 90-day moving-average-price
  • operational indicators at a business: production and sales volume trends, error/defect rates trends, and so forth
  • economic indicators like unemployment and jobless claims, new home construction rates
  • environmental indicators like seasonal temperature trends, rainfall, snowfall, and so forth
  • and countless other applications where "smoothing" or "trending" or "momentum" is to be included in some analysis or reporting or charting.
Whether your moving-average needs are best served by SQL-only algorithms, as opposed to perhaps client-side number-crunching and/or non-SQL Server-side code (like .NET CLR procedures), is for you to decide, but with the techniques I have demonstrated, at least you can consider a Transact-SQL-only solution if you choose (and one that is set-based as opposed to relying on cursors).

SQL-only Solutions Compared

See my Set-based Moving-Averages SQL Example 1 page, as I will reference the techniques on that page in my discussion here.

That page and example includes execution-speed / performance comparisons between techniques also (run against the AdventureWorks sample database).  That page demonstrates three different approaches to solving (using only SQL-Server T-SQL) the moving average challenge using:
  1. my own custom approach to calculating a rolling average that takes advantage of some interesting features of Transact-SQL that, although may not work "forever" with every future release of SQL-Server, have worked fine from SQL-Server 2005 through SQL-Server 2008 and 2008r2 and SQL-Server 2012.

    The technique relies on CASE statements and a (so far, so good) predictable order-of-processing the values-assignments within the UPDATE statement where I use local-variables to maintain a "queue" of values as well as break-level-reset tracking information.  This code is quite speedy and flexible and easily adapted to related problem domains.

  2. an example of solving the same problem using a CTE (Common Table Expression) coupled with APPLY (CROSS APPLY / OUTER APPLY that are Microsoft SQL-Server specific extensions to ANSI SQL).  This approach is SLOW!

  3. A newer ANSI-SQL compatible solution that is available to you if you have SQL-Server 2012 or newer that implements the windowing functions using OVER and PARTITION BY.  This method is the simplest solution, is the fastest running, but requires SQL2012+ and also lacks the ability to easily change the "window size" (i.e., number of data-points the moving-average is based upon) without dynamic SQL.

Performance Results / Limitations Examined 

I have been very pleased with the performance of my custom solution to this problem and have used this approach (#1 above) for years now.  Sure, I could simplify my code using SQL-Server 2012's new OVER / PARTITION BY abilities while also gaining a performance boost.  But, until SQL-Server makes the PARTITION window-size (in the "ROWS BETWEEN integer_value_here PRECEDING AND CURRENT ROW" portion of the command) able to utilize a variable instead of a hard-coded integer value, this newest SQL method has limited value in my opinion.

My custom approach comes amazingly close to the native speed of the newer SQL-2012 windowing features, while also having the advantage of being able to handle a variable-window-size (which is perfect for requirements where you want to pass a moving-average-window-size value as a parameter to the procedure).

Notice that I hardly give the APPLY / CTE "solution" much thought.  I presented it as an "option" for a set-based solution to this problem, but its performance is awful and the APPLY is Microsoft-specific as well.  So, I might as well use my own custom approach that may rely on the specifics of MS T-SQL processing-order while gaining the advantage of speed and a rather simple-to-understand approach (as compared to the CTE/APPLY which I find not-readable or easily understandable by comparison).

Conclusion

There are certainly multiple ways to solve the rolling-average / moving-average problem using only SQL, and the choice is yours as to which approach best fits with your needs and situation.  I'd say that if you have a static-window-size and are using SQL-Server 2012 or newer, then the obvious choice is the newest OVER / PARTITION approach.  But, I personally have not run into rolling-average requirements that did not include a variable "window" (e.g., allowing a user to choose how many data-points, periods, etc to include in the average, as specified in a run-time query parameter).

Check out the other SQL queries, functions, and stored procedures I have in provided here on my blog for other related problems and solutions like running subtotals and much more.  I have made it all available as open-source-software (OSS) under a very permissive MIT License.  If you want to learn how to compute moving averages using only SQL, and solve other interesting problems within Microsoft Transact-SQL, this resource should provide some very useful information and ideas. Enjoy.


Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.

Tuesday, September 17, 2013

Guaranteed 3.6% Savings Yield - Simple, Safe, Long-Term with EE Bonds

Guaranteed 3.6% Compounded Interest? Where!?
Look to EE Bonds

[Note that as of January 1, 2012 banks and other financial institutions terminated their sales of bonds, in case you were only familiar with the old way of buying them at a Bank.  Go to Treasury Direct instead.]

Seriously, consider EE Savings Bonds!

Yes, savings bonds... those "old fashioned" instruments for putting money away for the future. Why is it you never hear "investment advisers" or "financial advisers" talking about how USA Government Savings Bonds are still a damn-good option for long-term saving, especially for people that are not otherwise financially savvy or blessed with "extra" time to manage their investments? Simply put: there is no money in it for the advisers!

I argue that savings bonds should make up a portion of almost every investor's financial portfolio.  You should never have to worry about them... just put your money in and wait.  For anyone that wants to argue about hypothetical situations like "what if the US Government goes under",... well, if it does, do you really think ANY investment is going to be worth squat? (and that includes gold; chaos will make that useless too... you would be better off having stockpiles of food and oil)

So, read on, and give EEs some consideration...

3.6% Annual Interest Rate? That sure beats the bank!

Not only does the 3.6% EE yield potential beat anything (of recent) you could get in the bank — and that includes long-term products like 5-year CDs — it nearly matches the current 30-year US Treasury Bills rate (3.86% as quoted currently on Bloomberg US Government Bonds rates).  So, what is the catch?

Patience is required to obtain this yield!

If you visit the Treasury Direct website page on EE Bond Rates, you may first be scared by the currently posted quoted rate of 0.2% (as stated in the paragraph titled "What interest will I get if I buy an EE Bond now?").  But, have no fear and keep reading... you can get the 3.6% rate I am referring to if you are patient and buy these EE-bonds with a 20-year investment horizon in mind.

Now, look further down the page for the section / paragraphs with a heading of "When will my paper bond be worth its full value?".  This is where the IMPORTANT INFORMATION is contained that leads to the 3.6% minimum guaranteed annual compounded interest rate if you hold the bonds for 20 years.  Quoted from that section:
"Electronic bonds are sold at face value (not half of face value). They start to earn interest right away on the full face value. Treasury guarantees that for an electronic EE Bond with a June 2003 or later issue date, after 20 years, the redemption (cash-in) value will be at least twice the purchase price of the bond. If the redemption (cash-in) value is not at least twice the purchase price of the electronic bond as a result of applying the fixed rate of interest for those 20 years, Treasury will make a one-time adjustment at the 20 year anniversary of the bond's issue date to make up the difference."
So, if you HOLD the EE Bonds for full 20yrs, you can forget that "0.2%" stated current rate, as you are guaranteed a minimum of 3.6%-annual-compounded-interest (using rule of 72), since your money has been guaranteed to double in that 20yrs.

Briefly, the "rule of 72" helps us compute the approximate annual interest-rate over a period of time by dividing the interest-rate into 72 in order to obtain the term (length in years) in which that interest rate will cause an investment to double.  So, in this case: 72 / 3.6 (rate) = 20 (year term).  I.e., basically 3.6% annual interest has been guaranteed in one of the most historically safe investment options ever, so long as you can think long-term!

You think you can do better elsewhere?

Sure, you may obtain higher (historical) yields elsewhere — perhaps in the stock markets, commodities, or corporate bonds.  But, you had best know what you are doing and have 1) the time to actively manage such investments, and/or 2) the nerve to ride out massive downturns like what we saw occur during the Financial Crisis that really shredded most investments in 2008 (to the point it took years to get back to pre-crash levels).

And, if you consider putting money in "the bank" as a savings strategy, consider the fact that for over 5 years now, interest rates in the bank have been terrible!  And, think about it,... 5 years is a full quarter of the duration you would have have to leave your money in the EE Bonds (toward that 20-year term to get the doubling of EE funds).  In the current preceding 5 years, banks have paid essentially ZERO interest while you could have been getting 3.6% in your EEs.

Bank rates may ultimately rise, but I would not count on it changing quickly or holding higher rates for any length of time.  And, keep in mind: interest on savings accounts and CDs is taxed every year whereas savings-bond interest compounds pre-tax (i.e., you are only taxed on the interest when you redeem the bonds).  This can make a substantial difference in compounded returns.

The bottom line is this: If you think you can maintain a higher-average-annual-return elsewhere, go for it. I simply look at EE's as just a very simple "no brainer" hands-off way to save some money for retirement in about as safe of way as possible.  And, you do not need to hold paper bonds anymore: use the TreasuryDirect electronic bond-buying system (in fact, paper bonds have nearly gone extinct and I have no idea why anyone would want paper to have to place in a safe deposit box or whatever).  Signing up at TreasuryDirect is super-simple and can be done in just a few minutes.

There is perhaps the issue of what happens if you die within the 20-year term (I'd rather not think about that), but even that is covered by way of beneficiary-designations and survivorship terms.  A survivor beneficiary does not have to cash in the bond right away, so they can continue to hold the bond until that 20-year term is met if they choose (and, income taxes on the interest remain deferred until redemption just like they would have been for the original holder).

Give those EE bonds a look.  You never know, it may turn out to be a very wise long-term investment to hold.  FYI: also note that the government currently limits annual savings bonds purchases to $10,000 per individual, so it is not like you are going to be able to take the proceeds from selling a house and put them into savings bonds all at once. Feel free to consult with your "adviser" or accountant on any of this, as I am NOT acting in either capacity here... I am just putting forth an opinion for you to consider.

Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.

Friday, September 06, 2013

Windows Server 2012R2 Free Book Download (PDF, MOBI, EPUB)

Get a FREE Microsoft Windows Server 2012R2 Book


LEARN WHAT'S NEW IN Windows Server 2012 R2

If you are considering migrating from Microsoft Windows Server version 2008, 2008r2, or 2012 to the latest Windows Server 2012 R2 release, you may wish to see what's new in this operating system before making the move.

MICROSOFT PRESS MAKES PDF / MOBI / EPUB AVAILABLE FOR FREE

Microsoft Press was good enough to provide a downloadable Free ebook — Introducing Windows Server 2012 R2 — to help you catch up on their latest upgrade to the Windows Server product line.

I quickly read through the Introducing Microsoft Windows Server 2012 R2 (Preview Release) book, and as you may expect, a lot of it reads like marketing material, in my opinion, as the authors will try among other things to convince you that this latest Windows Server is ideal for all your "cloud" operating system needs.  Regardless, the book is fine for getting an overview of what's new in Windows Server 2012 R2, by major areas of interest within the product — like virtualization, cloud computing, networking, etc.

Just because the book exists (in some part for sure) to help promote Windows 2012R2, that does not mean there is not reason to truly be excited by new features in Windows 2012 R2 — there are!  I for one was especially impressed by the recent SMB 3.0 enhancements in Windows Server 2012; in particular, I was amazed by the performance improvements demonstrated with SQL-Server 2012 run against a database hosted on this new SMB 3.0 platform.  Win2012R2 builds on that...

Basically, Win Server 2012 implements SMB 3.0 File Servers that can support SQL-Server databases on file shares without a performance hit (with hardware config of course)!  This is a great alternative to dedicated and costly SAN (Storage Area Network) devices.  If SQL-Server on Windows 2012 SMB 3.0 is of interest to you, here is a link to a technet blog page full of useful information.  And, I expect the further updates to SMB 3 within Windows Server 2012R2, like the following items (as quoted from this e-book), will be quite useful for SQL-Server applications and more:

  • ...the performance of SMB Direct has been enhanced to provide a 50 percent improvement for small IO workloads when used with RDMA-capable network adapters...
  • ...increased efficiency and density of hosting workloads with small I/Os, for example when running an online transaction processing (OLTP) database workload inside a virtual machine...
  • ...SMB connections can also now be managed per share on SoFS instead of per file server as in Windows Server 2012...
  • ...Another new feature of SMB 3.0 in Windows Server 2012 R2 is SMB Bandwidth Management. Because SMB now has so many different functions in a network and storage infrastructure built using Windows Server 2012, it now represents a common infrastructure component in many environments. That means it’s important to be able to control how much bandwidth SMB uses when it’s performing many different tasks within an infrastructure...

The book also offers some decent discussion of enhancements to the data-deduplication features, Hyper-V enhancements, IIS 8.5 new features, and more.  Hey, the book is FREE, so there is not too much to lose other than some time spent perusing it for useful content.  Download it for yourself and share your thoughts here if you have a chance.

Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.

Thursday, September 05, 2013

VMware Workstation 10.0 New Features

VMware Desktop Virtualization Products Updated


NEW VMWARE WORKSTATION 10 AND FUSION 6

Another year, another set of "new product releases" (new versions of VMware products).  And, by now it should be very clear that VMware's software marketing goals, presumably to help product predictable and continual cash-flow, are to push annual full-product (read: paid) version releases of their core products, regardless of how significant the new features are in those products. Last year around this time, I wrote about the new features in VMware Workstations 9.0, and just a year before that I wrote about the new features in VMware Workstations 8.0.

There is a definite pattern forming here with regards to both timing and the fact that each release is a paid version upgrade (as opposed to a perhaps free "point upgrade"). It is not just VMware doing this — it is an industry-wide norm now that tries to force customers to keep pumping cash out for small features and bug-fixes that probably should have been included for free. Oh well, time to give up and take it (because this trend is NOT going away).

New Features in VMware Workstation 10.0

I am having a difficult time getting overly excited about this latest version of VMware workstation, especially since it is a paid release and I do not see many changes that I care about or plan to use.

Key New Features: Windows 8.1, tablet sensors, and expiring VMs (do you care?)

Windows 8.1 Features

Seeing that I have yet to even use Windows 8, I do not care about Windows 8.1 support from VMware Workstation either.  But, I will admit, I find it more likely I will perhaps actually take time to evaluate Microsoft Windows 8.1 final — as soon as Microsoft releases it and makes the trial download available — but that alone gives me little reason to consider paying for Workstation version 10.0.

I personally hope to stretch as many years out of Windows 7 (a very solid product) as possible until I can migrate everything to Linux.  Had Microsoft not turned Windows into what looks like some goofy smart-phone UI (that I am not to force upon desktop users and/or that I have to learn a whole new application-development and programming model for), perhaps I would think differently about this.

But, if you use Windows 8.1, the features of interest in this Workstation 10.0 release are bound to be handy for you: Unity mode has been enhanced to seamlessly work with Windows 8.1 UI changes and Workstation 10 can now convert a Windows 8.1 physical PC to a virtual machine.  Yay, I would expect that even in a "point release", but whatever.

Tablet-Sensor Support (in Virtual Machines)

Next, there is the new tablet-sensor (pass-through) to virtual-machines — accelerometer, gyroscope, compass, and ambient light sensor data available to VMs.  Great! (sarcasm... again, I do not care).  Call me old-school: I do not use a tablet, nor a smart-phone or whatever, for my daily applications... I still prefer a desktop with a big monitor for everything from email to spreadsheets to programming and so forth.

I do not currently need to pass tablet touch-sensor-data or gyroscope-data to a virtual machine.  But, I can see how tablet-software-developers would like this new tablet-sensor-virtual-machine-pass-through feature for testing their varied "apps" under different operating systems, web browsers, and other configurations.

Expiration Dates for Virtual Machines — something useful!

This feature got my attention. As a custom software developer, the ability to set an expiry-date on a virtual machine has quite a bit of potential. Consider the case of demonstrating a custom application to a client where the entire application may reside in a virtual-machine.  The client wants to evaluate it for a period of time, but you (the developer) wants at least some level of assurance the software will not function in perpetuity without you receiving some compensation for your product.

I will need to experiment with this feature in detail.  I want to see whether, in combination with other virtual-machine administrative-lockdown options, this will provide the security I need in order to leave an entire Virtualized application "stack" (an app, fully self-contained in a VM) with a client or potential client "safely".  Since the new expiration date can even require synchronization with a specified time-server (which should prevent the old "set the clock back" circumvention methods), this sounds like a good start for securing one's intellectual property.

Next, I would think that by locking down the VM hardware configuration (and any contained-operating-system's administrative rights, etc), I could prevent someone from gaining access to files via network-copy and such.  Coupled with diligent use of code obfuscation and so forth, this may all add up to a nice way to help guard intellectual property while giving clients a great way to evaluate a software product for a limited amount of time.

Other New Features in VMware Workstation 10

Some other miscellaneous features were mentioned in the VMware Workstation 10 release information, like:
  • Power Off Suspended Virtual Machines — at least, I hope that made the cut from the 2013 technology preview version of Workstation 10; that can be quite handy.
  • Support for 16 vCPUs, 
  • 8 TB SATA disks and 64GB of RAM
  • New Virtual SATA (vSATA) disk controller 
  • Now supporting 20 virtual networks 
  • USB3 streams support for faster file copying, which provides the following, per release notes:
USB 3 Streams have been implemented to enable high speed transfer of files from USB 3 external storage devices that support this technology. For customers running Workstation 10 on laptops with small hard disks, large data files, video files etc., can be stored on an external USB 3 storage device and accessed quickly from within the virtual machine.
  • VMware has also addressed issues Intel, NEC, AMD, TI and Linux Kernel host xHCI drivers to improve overall USB 3 compatibility and performance.
  • Improved application and Windows VM startup times 
  • SSD Pass through
  • Multiple monitor set-ups are easier than ever, whether you are using 2, 3, or 4. 
  • VMware-KVM provides a new interface for using multiple virtual machines
I need to find more information about the SSD Pass-through, as I wonder if that will help with both speed and SSD longevity; I believe this is limited to operating systems (inside a VM) like Windows 8 that can optimize themselves for running from an SSD.  I am also interested in speed-testing any USB3 devices; in the past, there seemed to be a lot of restrictions on USB3 use, and perhaps this is no longer an issue?  Time will tell.

New Operating System Support for:

  • Windows 8.1
  • Windows 8.1 Enterprise
  • Windows Server 2012 R2
  • Ubuntu 13.10
As well as for the latest Fedora, CentOS, Red Hat and OpenSUSE releases.


BOTTOM LINE: As always, the choice is yours as to whether the upgrade price (around $119) is worth it or not.  I have learned (the past few years) to wait for "Cyber Monday" sales that tend to knock $20 or $30 off this price via VMware's online store.  Since I am in no hurry, I plan to do that this year again if I decide to invest in this version to gain the expiring-virtual-machines feature or one of the other smaller updates.  The full release notes are available online at VMware site (took me a while to locate, too).

Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.

Tuesday, August 06, 2013

Martin Marietta Space Shuttle External Tank Photo

Space Shuttle External Tank by Martin Marietta


Vintage Advertising / Promotional Photo Image

Not my usual software and programming post today, but still something from the science and technology field. I happened across an old advertising and promotional photograph of the Martin Marietta external fuel-tank for the Space Shuttle as I was cleaning out some old folders I had.  So, I scanned it for all to see / share if anyone wants such a digital image.

Space Shuttle External Tank by Martin Marietta company
Space Shuttle External Tank by Martin Marietta company
When I was considerably younger, a friend's father worked at Martin Marietta and sent this photo to me and I have had it ever since.  It amazes me that the Space Shuttle program (and this photo) are 30+ years old now and the United States does not really have a true shuttle "replacement" even with all the technological advancements since (materials, computing, design, etc).

Yes, there are some neat technologies coming along from places like SpaceX and others, but regardless it seems that the USA really lost its ability to keep pushing the space-mission envelope over the past couple decades for lack of focus, funding, and/or a combination of things.  I remember when I first received this space shuttle tank picture in the early 1980s -- and, at the time, I would have thought that by now (2013!) space-travel would have been nearly "routine" had we stuck with our pace of achievement.  Oh well, I doubt I will ever be going to space as I had once hoped.  And, I don't think Matt Damon's need to get to Elysium is going to be a scenario I face. lol

Well, enjoy the photo and here's hoping some neat new technological advancements get our space program back on track.

Continue to read this Software Development and Technology Blog for computer programming articles (including useful free / OSS source-code and algorithms), software development insights, and technology Techniques, How-To's, Fixes, Reviews, and News — focused on Dart Language, SQL Server, Delphi, Nvidia CUDA, VMware, TypeScript, SVG, other technology tips and how-to's, plus my varied political and economic opinions.