<?xml version="1.0" encoding="utf-8"?>
<feed >

    <title type="text">News</title>
    <subtitle type="text">News:</subtitle>
    <link rel="alternate" type="text/html" href="http://interclypse.howarddc.com/" />
    <link rel="self" type="application/atom+xml" href="http://expressionengine.com/{atom_feed_location/}" />
    <updated>2013-03-29T08:51:00Z</updated>
    <rights>Copyright (c) 2013, Brian Walsh</rights>
    <generator uri="http://expressionengine.com/" version="1.6.9">ExpressionEngine</generator>
    <id>tag:interclypse.howarddc.com,2013:03:29</id>


    <entry>
      <title>Mongo Attack!</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/mongo_attack/" />
      <id>tag:interclypse.howarddc.com,2013:/4.130</id>
      <published>2013-04-09T18:09:43Z</published>
      <updated>2013-04-09T19:09:46Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Recently, Interclypse, Inc., attended the MongoDC 2013 conference - an annual appearance of the open-source, no-SQL community surrounding 10Gen&#39;s product, MongoDB. The conference was hosted at the very-cool Newseum in downtown Washington DC. What can I say about Mongo...what can&#39;t I say about Mongo!? If you are in the data management arena and you haven&#39;t played with MongoDB or any other no-SQL solution yet, what are you waiting for?<br />
	The Conference<br />
	First, about the conference: I attended only the general event (just to set the context). Obviously, there were a range of presentations, but these were the ones that I found to stand out:<br />
	1. Max Schireson&#39;s (the CEO of 10Gen) discussion on aggregation and indexing was excellent. First of all, the CEO gave it! Outstanding! The CEO is a technical guy with plenty of database experience - both structured and unstructured. Max was able to demonstrate new features of the MongoDB product that really make it a disruptive force in the data management /analysis market. Chief among these is the ability to aggregate documents given different criteria. This would be like constructing a view or a join. In addition, to producing new aggregate documents at query time was the ability to chain this creation to other mutations, such as sums and sorts. For example, let&#39;s assume the following JSON documents in the same collection:<br />
	{&quot;_id: &quot;1&quot;,<br />
	&quot;org&quot; : &quot;JUG&quot;,<br />
	&quot;state&quot;:&quot;MD&quot;,<br />
	&quot;size&quot;:&quot;200&quot;}</p>
<p>
	{&quot;_id: &quot;2&quot;,<br />
	&quot;org&quot; : &quot;MUG&quot;,<br />
	&quot;sponsors&quot;:[&quot;company1&quot;,&quot;company2&quot;],<br />
	&quot;state&quot;:&quot;MD&quot;,<br />
	&quot;membership&quot;:120}</p>
<p>
	{&quot;_id: &quot;3&quot;,<br />
	&quot;org&quot; : &quot;JUG&quot;,<br />
	&quot;state&quot;:&quot;DE&quot;,<br />
	&quot;membership&quot;:21}</p>
<p>
	{&quot;_id: &quot;4&quot;,<br />
	&quot;org&quot; : &quot;JUG&quot;,<br />
	&quot;state&quot;:&quot;CA&quot;,<br />
	&quot;membership&quot;:2000}</p>
<p>
	The following query would produce an aggregate from this collection:<br />
	db.collection.aggregate({$group : { _id : &quot;$org&quot;, totalMembership : { $sum : &quot;$membership&quot; } } }, { $match : { org : { $eq : &quot;JUG&quot;} } })</p>
<p>
	This is equivalent to the SQL statement:<br />
	SELECT org, SUM(membership) as totalMembership FROM collection<br />
	GROUP by org<br />
	WHERE org is &quot;JUG&quot;;</p>
<p>
	{&quot;_id: &quot;JUG&quot;,<br />
	&quot;totalMembership&quot;: 2221}</p>
<p>
	...where the results are grouped and sorted. As you can see, the aggregate is a reduced set despite the fact that one of the documents having slightly different structure. The &quot;.&quot; notation acts as a &quot;|&quot; or pipe function, similar to that found in UNIX shells, allowing for the chaining of operations.</p>
<p>
	Finally, Max covered index construction and optimization, how not to index everything, and finally how to profile your queries through the &quot;explain plan&quot; to understand what indices&rsquo;, if any, are being used during your queries and when.<br />
	2. Rob Moore&#39;s presentation on tricks-to-teach MongoDB showcased potential depth with the product. Imagine MongoDB acting as a pub-sub message broker! Building upon his asynchronous (and super-fast) Mongos client, he was able to demonstrate callback functionality within Mongo so that modification events to a document or collection were passed back to subscribed mongos clients much a JMS broker would do so. Although this is not part of the supported product, it did entice us to dream of certain possibilities.<br />
	3. Auto-Sharding and matters of scale. The sharding capability of MongoDB makes it attractive and a viable alternative to some big data solutions! Now, with MongoDB 2.4 release, the pain of shard management has gotten easier with automated shard extension support. So, as my Mongo cluster grows and I need to add more members to my shard collections, I &quot;simply&quot; startup a new MongoDB server instance and add it as a member of my shard collection. The distribution of key space across the new member is handled incrementally during normal shard collection rebalancing. Of course, if you didn&#39;t know, MongoDB also has a mapReduce implementation using JavaScript. Before you bash it, consider the performance of mapReduce across a shard collection filtered by time where all the working documents are in memory - yep, that&#39;s how MongoDB rolls. MapReduce, given your use case and tuning, can plow through documents faster than you would expect. (Sorry for the caveats, but that&#39;s life, right?)<br />
	There were other topics discussed, of course - spatial querying, security, a RedHat OpenShift highlight, and others. One thing new I did do that day was connect to the mongodb IRC on FreeNode through a Chrome add-in and help someone with their document &quot;_id&quot; (the shard key) strategy. Yeah old-school collaboration!<br />
	&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse Presents TSCM at AFCEA&#8217;s Technology Over Bagels on April 9th</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_presents_tscm_at_afceas_technology_over_bagels_on_april_9th/" />
      <id>tag:interclypse.howarddc.com,2013:/5.126</id>
      <published>2013-03-29T07:43:59Z</published>
      <updated>2013-03-29T08:51:00Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Do you want to build the all-stars of tomorrow&#39;s software teams while placing junior developers with ease?</p>
<p>
	Technical Software Configuration Management (TSCM) is the application of the latest and greatest technologies to automate and streamline configuration management processes used specifically for software development. This role is great for up and coming junior developers to both gain business knowledge and ease into a technical position on any team.</p>
<p>
	<br />
	April 9th at Praxis Engineering, 135 National Business Pkwy, Annapolis Junction, MD 20701 from 7:30 - 9:00 AM</p>
<p>
	For more information please visit www.technicalsoftwareconfigurationmanagement.org</p>      ]]></content>
    </entry>

    <entry>
      <title>Interclypse Engineers attend Puppet Camp in Baltimore, MD</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_engineers_attend_puppet_camp_in_baltimore_md/" />
      <id>tag:interclypse.howarddc.com,2013:/4.124</id>
      <published>2013-03-25T13:27:19Z</published>
      <updated>2013-03-25T14:36:20Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	On March 15, 2013, two Interclypse Software Engineers attended Puppet Camp Baltimore hosted by Puppet Labs (https://puppetlabs.com/).<br />
	Puppet Camps are community-oriented, regional gatherings of Puppet users and developers. This provides an opportunity to talk to a diverse group of Puppet users, benefit from presentations delivered by prominent community members, and be able to share experiences and discuss potential implementations of Puppet with your peers. Special guests included James Turnbull (Author of &quot;Pro Puppet&quot; and VP of Technology Operations), Ryan Coleman (Puppet Forge Blacksmith) and various Puppet associates whom discussed the current state and future of Puppet. Interclypse visited Puppet Camp to refine our use of Puppet when configuring Open Stack (http://www.openstack.org/). This will play a key role in Interclypse new data center build and design, which will showcase Puppet&rsquo;s capabilities and the partnership between Interclypse and Puppet Labs.<br />
	&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Cultivation Presentation at the March 28th BBI meeting</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/cultivation_presentation_at_the_march_28th_bbi_meeting/" />
      <id>tag:interclypse.howarddc.com,2013:/4.122</id>
      <published>2013-03-03T17:28:41Z</published>
      <updated>2013-03-03T18:44:42Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	We promise a vibrant and passionate presentation outlining an open source six step initiative named Cultivation (teamcultivation.org) that helps successfully place junior professionals into various work environments. The founder, Brian Walsh, has used this innovative process to help place junior software engineers within the Intelligence Community; however, this process can be used across multiple verticals to include the DOD, health-care, etc..</p>
<p>
	Additionally, with sequestration and the fast pace of technology there is a trend toward automated testing and Technical Software Configuration Management (TSCM technicalsoftwareconfigurationmanagement.org). Presently, these two tasks are performed manually which causes them to be very time intensive and worse than that they are often the slow points in trying to achieve our customer&#39;s mission. In this presentation, we are going to outline a path for Cultivating our personnel and processes toward the automated time and mission saving approach.</p>
<p>
	Who should attend this presentation and why. Your business development team might want to consider using Cultivation and TSCM on upcoming proposals as differentiators. Small business owners and other executives that want to create a cultivating environment within their company. Project managers and technical leads can also use these concepts and initiatives on a smaller scale to achieve success. In the end, Cultivation promises to help a broad spectrum of businesses successfully hire and retain junior talent while building the superstars of the future</p>
<p>
	Congressman Elijah Cummings leads off the presentation on March 28th followed by&nbsp;a briefing on <a href="http://teamcultivation.org">Cultivation</a>&nbsp;and <a href="http://technicalsoftwareconfigurationmanagement.org/">Technical Software Configuration Management (TSCM)</a>&nbsp;from Brian E. Walsh the CTO of Interclypse, followed by an update on the <a href="http://www.howardcountymd.gov/displayprimary.aspx?id=6442458079">BASE Business Initiative</a> (<a href="http://www.howardcountymd.gov/displayprimary.aspx?id=6442458079">BBI</a>)&nbsp;and networking activities. These meetings are free, open to the public, and require no RSVP.&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse CTO Discusses Cultivation at the AFCEA CMD February Luncheon</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_cto_discusses_cultivation_at_the_afcea_cmd_february_luncheon/" />
      <id>tag:interclypse.howarddc.com,2013:/5.119</id>
      <published>2013-03-01T08:16:41Z</published>
      <updated>2013-03-01T12:04:43Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	On February 28th, Brian E. Walsh the CTO of Interclypse was the Small Business speaker for the <a href="http://www.afceacmd.org/">AFCEA</a> CMD February Luncheon held at Martin&#39;s Crosswinds, Greenbelt, Maryland.&nbsp;During his presentation, Brian provided an overview of Interclypse including mentioning their <a href="http://www.interclypse.com/services/software_engineering/">services</a>, <a href="http://www.interclypse.com/products/t1260_series_servers_t1263_and_t1268/">hardware</a> and <a href="http://www.interclypse.com/training/level_one_tscm_training/">training</a> divisions.</p>
<p>
	<br />
	Additionally, Interclypse spoke about <a href="http://www.teamcultivation.org">Cultivation</a> (<a href="http://www.teamcultivation.org">www.teamcultivation.org</a>) a discipline for identifying and mentoring tomorrow&#39;s superstars by immersing them in a positive, collaborative, and empowering environment that encourages learning and career development. Cultivation encourages sharing of these personnel across teams where they continue to grow their career while influencing others through collaboration, mentorship and knowledge sharing.</p>
<p>
	&nbsp;</p>
<p>
	Specifically Interclypse acknowledged two unique scenarios that <a href="http://www.teamcultivation.org">Cultivation</a> helps address.</p>
<p>
	&nbsp;</p>
<p>
	Scenario one. Due to budget reductions at our customer, Cultivating junior candidates to fill more of the open positions provides our customer with a value added alternative.</p>
<p>
	&nbsp;</p>
<p>
	Scenario two. A given customer likes their existing senior engineers and desires to have more of those same type of engineers. It has proven to be extremely difficult to find similar engineers for a multitude of reasons; however, Cultivating new senior engineers using the existing engineers that the customer already likes can be an excellent value added alternative that meets all of the needs of our customer.</p>
<p>
	&nbsp;</p>
<p>
	In closing, Interclypse thanked all their current partners while acknowledging that they can not accomplish the fun and exciting things they do without the support of such great partners. Interclypse also looks forward to working with the other great companies attending the event.&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Technology Working Session &#45;&amp;nbsp; Monday evenings 8pm&#45;midnight</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/technology_working_session_-_monday_evenings_8pm-midnight/" />
      <id>tag:interclypse.howarddc.com,2013:/5.118</id>
      <published>2013-02-13T11:43:57Z</published>
      <updated>2013-03-16T10:42:58Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse opens our office every Monday evening from 8pm till midnight for information technology working sessions. Anyone is welcome to participate in these session as they are an informal gathering of individuals working on various technology projects ranging from open source projects to training modules. If you have an interest in a specific technology than feel free to contact our organizer Brian Walsh (brian.walsh@interclypse.com) to see if anyone else is working on a related topic or if we have some recommended training material. Otherwise, feel free to show-up, introduce yourself and share the enjoyment of technology with us.</p>
      ]]></content>
    </entry>

    <entry>
      <title>New training classes with availability including evening classes (Oct, Dec, Jan)</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/new_training_classes_with_availability_including_evening_classes_oct_dec_ja/" />
      <id>tag:interclypse.howarddc.com,2012:/5.113</id>
      <published>2012-09-03T11:29:20Z</published>
      <updated>2013-02-15T15:33:21Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse announces new evening Software Developer Afterburner Training class, Software Developer Rejuvenation Training class, Automated Software Testing and Level One Technical Software Configuration Management (TSCM) Training.</p>
<p>
	&bull; March 2013 - 9, 11, 16, 18, 23, 25 from 9:00am to 5:00pm (day classes)<br />
	&bull; April 2013 - 4, 6, 11, 13, 18, 20 from 9:00am to 5:00pm (day classes)<br />
	&bull; May 2013 - 29, 30, 31 from 9:00am to 5:00pm (day classes)</p>
<p>
	Are you interested in taking your career to the next level? Do you want to differentiate yourself from your peers? Do you want to be the next all-star? Do you want the rewards that come with all of this? Then any of these classes are ideal for you.</p>
<p>
	To sign up for training, please fill out the enrollment form and contact us at training@interclypse.com or 443.459.4600.<br />
	&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Hardware Installation Working Session on September 19th from 5:30pm to 8:30pm</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/hardware_installation_working_session_on_september_19th_from_530pm_to_830pm/" />
      <id>tag:interclypse.howarddc.com,2012:/5.112</id>
      <published>2012-09-01T11:13:02Z</published>
      <updated>2012-09-07T20:09:03Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse is sponsoring a hardware installation working session where attendees gain firsthand experience setting up several servers starting with power cables, Ethernet cables, rack-n-stack and initial configuration. This working session is open to the public for anybody that wants the experience in these aspects of hardware setup in an enterprise environment.&nbsp;Come learn about hardware installation from 5:30pm to 8:30pm on September 19th &nbsp;at the Interclypse office in Hanover, Maryland.</p>
      ]]></content>
    </entry>

    <entry>
      <title>Upcoming Training classes with availability on August 28&#45;30th</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/upcoming_training_classes_with_availability_on_august_28-30th/" />
      <id>tag:interclypse.howarddc.com,2012:/5.111</id>
      <published>2012-08-22T23:40:45Z</published>
      <updated>2012-08-23T00:49:46Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse announces another Software Developer Afterburner Training class, Software Developer Rejuvenation Training class, and Level One Technical Software Configuration Management (TSCM) Training on August 28th to 30th.</p>
<p>
	Are you interested in taking your career to the next level? Do you want to differentiate yourself from your peers? Do you want to be the next all-star? Do you want the rewards that come with all of this? This Software Developer Afterburner class is ideal for software developers with zero to five years of experience that want to rapidly propel their skill sets forward. To sign up for training, please fill out the <a href="http://www.interclypse.com/images/uploads/2012_august_tscm_level_one_training_enrollment_form.pdf">enrollment</a> form and contact us at training@interclypse.com or 443.459.4600.&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Free Educational Seminar August 29th from 7&#45;9pm on Authentication and SSL</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/free_educational_seminar_august_29th_from_7-9pm_on_authentication_and_ssl/" />
      <id>tag:interclypse.howarddc.com,2012:/5.110</id>
      <published>2012-08-22T23:31:35Z</published>
      <updated>2012-08-23T00:50:36Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse is hosting a free technical information exchange on Authentication and SSL from a system administration and software development perspective. Please feel free to attend and learn more about Authentication and SSL. Come learn about Authentication and SSL from 7pm to 9pm on August 29th at the Interclypse office in Hanover, Maryland.</p>
      ]]></content>
    </entry>

    <entry>
      <title>Upcoming presentation &#45; Interclypse CTO presents Training to AFCEA ExCom Wednesday, August 22nd</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_cto_presents_training_to_afcea_excom_wednesday_august_22nd/" />
      <id>tag:interclypse.howarddc.com,2012:/5.109</id>
      <published>2012-08-11T10:42:32Z</published>
      <updated>2012-08-11T11:51:33Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
              ]]></content>
    </entry>

    <entry>
      <title>Free Educational Seminar 7pm to 9pm on Linked Data and Data Tagging</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/free_educational_seminar_7pm_to_9pm_on_may_30th_on_linked_data_an_data_tagg/" />
      <id>tag:interclypse.howarddc.com,2012:/4.104</id>
      <published>2012-05-30T11:44:48Z</published>
      <updated>2012-05-20T22:52:50Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Technology is growing rapidly creating more data than most people can fathom. The latest trend is to use linked data (data-on-demand) to reference existing data. Linked data provides several benefits from reduction in network load to security. Linked data also works extremely well with data tagging via URIs. There are many ways to represent data using URIs. Come learn about linked data, hash tags, double tags, and triple tags from 7pm to 9pm on May 30th at the Interclypse office in Hanover, Maryland.<br />
	&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse attends the OSSI Open Source Industry Day</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_attends_the_ossi_open_source_industry_day/" />
      <id>tag:interclypse.howarddc.com,2012:/5.106</id>
      <published>2012-05-30T10:52:21Z</published>
      <updated>2012-06-02T11:53:22Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse attends the OSSI Open Source Industry Day among a sell out crowd. Various vendors including RedHat attended the event to showcase their products and solutions. Interclypse spoke to the OSSI team about their ongoing sponsorship for various open source projects and working groups to include the monthly technology presentations. This is the second OSSI event in the past year that Interclypse has attended. There was a marked increase in attendance as the open source initiative gains momentum in the intelligence community.&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse and X&#45;IO met to discuss hardware solutions</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_and_x-io_met_to_discuss_hardware_solutions/" />
      <id>tag:interclypse.howarddc.com,2012:/5.105</id>
      <published>2012-05-23T10:38:03Z</published>
      <updated>2012-06-02T11:45:04Z</updated>
      <author>
            <name>Brian Walsh</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Interclypse met with X-IO to discuss value added solutions. These solutions included combinations of Interclypse Servers and X-IO Storage as well as stand alone X-IO Storage options for some of Interclypse&#39;s existing customers. X-IO Storage is a recognized innovator in the storage industry. X-IO&#39;s award-winning Intelligent Storage systems leverage over two decades of expertise (350 Patents) to deliver unmatched price/performance for enterprise applications. The company&#39;s plug-and-perform Intelligent Storage solutions are customer proven to Xcelerate transactional, reporting and business intelligence applications by a factor of 3X or more. X-IO Intelligent Storage drives Xtreme performance for Cloud, virtual desktop and server infrastructures, while dramatically reducing storage costs, footprint and power consumption. Additionally, X-IO hardware is backed by a 5-year warranty.<br />
	&nbsp;</p>
      ]]></content>
    </entry>

    <entry>
      <title>F5 TMOS v11 Visit</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/f5_tmos_v11_visit/" />
      <id>tag:interclypse.howarddc.com,2012:/5.103</id>
      <published>2012-05-03T14:36:10Z</published>
      <updated>2012-05-03T15:37:11Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Technical F5 representatives met at the Interclypse corporate office in Hanover to present technical details of the latest, version 11, TMOS enhancements including VCMP, DNS Express, and iApps. During this meeting technical details of the Access Policy Manager (APM), Application Security Manager (ASM), firewall certifications, iRules, iApp templates, Local Traffic Manager (LTM), and Global Traffic Manager (GTM) were all discussed.</p>
      ]]></content>
    </entry>

    <entry>
      <title>Infoblox announces new generation energy efficient appliances</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/infoblox_announces_new_generation_energy_efficient_appliances/" />
      <id>tag:interclypse.howarddc.com,2012:/5.100</id>
      <published>2012-03-12T16:20:31Z</published>
      <updated>2012-05-02T14:48:32Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	SANTA CLARA, Calif., March 12, 2012 &ndash; Infoblox Inc. today announced the availability of new hardware platforms for its automated network control solutions. With built-in energy efficiency, remote management and high availability advantages, the platforms are designed for today&rsquo;s demanding, distributed and &ldquo;Green&rdquo; enterprise or service provider networks.</p>
<p>
	The new Trinzic 800, 1400, 2200 and 4000 series appliances are suited for a range of environments from small branch offices to medium-sized enterprises and regional offices to large data centers, service providers and disaster recovery sites.</p>
<p>
	&ldquo;Appliance-based delivery of IP network services, such as domain name resolution and IP address assignment, has become an industry best practice for any size organization,&rdquo; says Kevin Dickson, Vice President of Product Management at Infoblox. &ldquo;Purpose-built appliances are more reliable, secure, manageable and scalable than legacy approaches, such as software running on general-purpose servers.&rdquo;</p>
<p>
	Infoblox introduced its first integrated, purpose-built IP network services appliance in 2001 and is committed to meet evolving enterprise and service provider network hardware requirements, ranging from performance and security to reliability and management capabilities. This new generation of appliances continues that tradition with:</p>
<p>
	Energy Efficiency: Highly efficient components, intelligent power management, consumption and cooling features, such as turning off unused Ethernet ports; power supplies are in compliance with environmental standards, including ETSI EN 300 019-1-3, Energy Star and 80 Plus efficiency.<br />
	Lights Out/Remote Management: Proactive monitoring and alerts for power, temperature CPU usage issues and more; remote management features reduce on-site maintenance visits resulting in more cost-effective operations, and Intelligent Platform Management Interface (IPMI) 2.0-compliant for enhanced remote site communication and management.<br />
	High Availability: Redundant and field-replaceable power supplies, fans and disks as well as the use of error-correction code (ECC) memory providing a high level of stability and reliability.</p>
<p>
	Pricing &amp; Availability</p>
<p>
	The new platforms are now available with pricing on the Trinzic 800 series that starts at $4,995 in North America and $5,995 in Europe, Middle East and Africa (EMEA) and Asia Pacific. The Trinzic 1400 series starts at $16,345 in North America and $19,595 in EMEA and Asia Pacific; and the Trinzic 2200 series begins at $30,245 in North America and $36,295 in EMEA and Asia Pacific. The Trinzic 4000 series starts at $99,995 in North America and $119,945 in EMEA and Asia Pacific.</p>
<p>
	The devices can operate standalone or integrate as an Infoblox Grid member and co-exist with previous generations of Infoblox platforms in existing customer installations.</p>
<p>
	For more information about Infoblox&rsquo;s newest generation of appliances, visit:<br />
	http://www.infoblox.com/en/products/infoblox-appliances.html.<br />
	About Infoblox</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse 4th year anniversary</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_4th_year_anniversary/" />
      <id>tag:interclypse.howarddc.com,2011:/4.99</id>
      <published>2011-09-03T16:19:40Z</published>
      <updated>2012-05-01T17:50:41Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
              ]]></content>
    </entry>

    <entry>
      <title>Xiotech changes its name to XIO</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/xiotech_changes_its_name_to_xio/" />
      <id>tag:interclypse.howarddc.com,2011:/5.98</id>
      <published>2011-08-25T16:18:05Z</published>
      <updated>2012-05-01T17:19:06Z</updated>
      <author>
            <name>Laura Smith</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Xiotech is changing its name to XIO (pronounced X-I-O) as part of an overhaul that really started in 2008 when it launched its ISE architecture and accelerated with the appointment of Alan Atkinson as CEO in late 2009.</p>
<p>
	The name change becomes official next week, but Atkinson is briefing people in the industry about the move. With the new name, XIO will sharpen its focus on solid state storage and gear up for a possible run at going public.</p>
<p>
	The vendor will continue to build on its ISE architecture, and is renaming its SSD-based ISE system Hyper ISE. The system first launched earlier this year as Hybrid ISE.</p>
<p>
	&ldquo;XIO sounds like extreme IO, which is exactly where we want to be with our concentration on performance-driven storage,&rdquo; Atkinson said.</p>
<p>
	Atkinson said Hyper ISE &ldquo;is the same physical product&rdquo; as Hybrid ISE, but its performance has been jacked up considerably due to improvements in the firmware and the algorithms used to tier data. XIO claims one Hyper ISE system can deliver 200,000 IOPS in a 14.4 TB, 3U box.</p>
<p>
	Hyper ISE uses multi-level cell (MLC) SSDs and 10,000 RPM SAS drives in one enclosure. Xio sees the system as a good fit for running databases, virtual servers and virtual desktop infrastructures (VDIs).</p>
<p>
	&ldquo;We built Hyper ISE for performance-starved apps,&rdquo; Atkinson said. &ldquo;This is the next turn of the crank. We were talking about 60,000 IOPS before, but 200,000 IOPS is an awful lot better.&rdquo;</p>
<p>
	Even with ISE as its centerpiece, XIO is a different company than when Atkinson replaced Casey Powell as CEO. Senior management now includes industry veterans COO George Symons and chief strategy officer Jim McDonald. Like Atkinson, both have worked at EMC. The notable holdover is CTO Steve Sicola, who came to Xiotech when it acquired the Advanced Storage Architecture group from Seagate and turned its technology into the ISE platform.</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse Announces SwiftTest Partnership</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_announces_swifttest_partnership/" />
      <id>tag:interclypse.howarddc.com,2011:/5.91</id>
      <published>2011-08-04T22:22:18Z</published>
      <updated>2011-08-14T23:31:19Z</updated>
      <author>
            <name>Scott Delcore</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Millersville, Md. &ndash; August, 2011 &ndash; Interclypse, Inc., a small business with headquarters in Maryland, founded to provide high-end consulting services, solutions-based engineering, and hardware/software value-added reselling to the federal, state, and local governments, today announced that it has become a SwiftTest Partner. Swifttest is developing powerful and efficient commercial IP network testing tools initialy focused on storage.</p>
<p>
	About SwiftTest</p>
<p>
	SwiftTest develops powerful and efficient commercial testing tools and solutions that take the burden of IP storage test tool development off of in-house engineers and QA teams. SwiftTest was founded by test industry veterans who were driven to create the next generation test platform. SwiftTest is headquartered in Santa Clara, California and is privately owned. For more information please visit www.swifttest.com.</p>
<p>
	About Interclypse</p>
<p>
	Headquartered in Millersville, MD, Interclypse, Inc. was founded to provide high-end consulting services, solutions-based engineering, and hardware/software value-added reselling to the federal, state, and local government. Interclypse brings over 50 years of state-of-the art engineering and sales experience to address the most demanding problems.</p>
<p>
	&copy;2011, Interclypse, Inc. All Rights Reserved.</p>
<p>
	Interclypse, Inc may be contacted at info@interclypse.com - (443) 298-0088 - www.interclypse.com</p>
      ]]></content>
    </entry>

    <entry>
      <title>Interclypse Announces Virident Partnership</title>
      <link rel="alternate" type="text/html" href="http://www.interclypse.com/blog/post/interclypse_announces_virident_partnership/" />
      <id>tag:interclypse.howarddc.com,2011:/5.92</id>
      <published>2011-07-26T22:31:04Z</published>
      <updated>2011-08-14T23:40:05Z</updated>
      <author>
            <name>Scott Delcore</name>
                  </author>

      <content type="html"><![CDATA[
        <p>
	Millersville, Md. &ndash; July, 2011 &ndash; Interclypse, Inc., a small business with headquarters in Maryland, founded to provide high-end consulting services, solutions-based engineering, and hardware/software value-added reselling to the federal, state, and local governments, today announced that it has become a Virident Partner. Virident Systems, Inc. is a leading provider of high-performance solid-state storage solutions for scale-out datacenters and enterprises.</p>
<p>
	<strong>About Virident</strong></p>
<p>
	Virident Systems, Inc. is a leading provider of high-performance solid-state storage solutions for scale-out datacenters and enterprises. The Virident storage solutions deliver the highest levels of sustained performance with the highest reliability, leveraging multiple redundancy and error-corrections methods. Virident was founded by Silicon Valley veterans from Google, Sun Microsystems, Cisco, SGI, and Intel. For more information, visit <a href="http://www.virident.com">www.virident.com. </a></p>
<p>
	<strong>About Interclypse</strong></p>
<p>
	Headquartered in Millersville, MD, Interclypse, Inc. was founded to provide high-end consulting services, solutions-based engineering, and hardware/software value-added reselling to the federal, state, and local government. Interclypse brings over 50 years of state-of-the art engineering and sales experience to address the most demanding problems.</p>
<p>
	&copy;2011, Interclypse, Inc. All Rights Reserved.</p>
<p>
	Interclypse, Inc may be contacted at <a href="mailto:info@interclypse.com">info@interclypse.com</a> - (443) 298-0088 - <a href="http://www.interclypse.com">www.interclypse.com</a></p>
      ]]></content>
    </entry>



</feed>