<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://kerneltrap.org"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>KernelTrap - Other</title>
 <link>http://kerneltrap.org/taxonomy/term/33/0</link>
 <description></description>
 <language>en-local</language>
<item>
 <title>Anyone out there?</title>
 <link>http://kerneltrap.org/node/265041</link>
 <description>&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Just testing whether posting still works.  Kerneltrap was offline for a couple of years there, and I see that no one has posted anything for quite some time.&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;</description>
 <comments>http://kerneltrap.org/node/265041#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/33">Other</category>
 <pubDate>Sat, 23 Mar 2013 04:01:28 +0000</pubDate>
 <dc:creator>Greg Buchholz</dc:creator>
 <guid isPermaLink="false">265041 at http://kerneltrap.org</guid>
</item>
<item>
 <title>monitoring &quot;Smart Array&quot; line of hardware raids with solaris 10 on HP servers</title>
 <link>http://kerneltrap.org/node/50903</link>
 <description>&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Recently discovered, that it is possible to monitor &quot;Smart Array&quot; controllers under solaris 10 OS. You need to install HPQacucli solaris package, which can be downloaded from hp.com site, read carefully &quot;RELEASE NOTES&quot; about support of your server hardware and controllers, also make sure that you have a recent version of CPQary3 driver installed (2.1.0 or later). Here&#039;s an example output:&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/50903&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/50903#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/3903">hardware raid</category>
 <category domain="http://kerneltrap.org/taxonomy/term/1287">HP</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3923">monitoring</category>
 <category domain="http://kerneltrap.org/taxonomy/term/827">server</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3933">smart array</category>
 <category domain="http://kerneltrap.org/taxonomy/term/260">Solaris</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3913">status</category>
 <category domain="http://kerneltrap.org/taxonomy/term/33">Other</category>
 <pubDate>Mon, 11 Jan 2010 12:49:11 +0000</pubDate>
 <dc:creator>mator</dc:creator>
 <guid isPermaLink="false">50903 at http://kerneltrap.org</guid>
</item>
<item>
 <title>new language: programming that can speak to modern hardware easily</title>
 <link>http://kerneltrap.org/node/47803</link>
 <description>&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Now i&#039;m doing some kind of translator (to C), that can turn second to its functional equivalent -- first:&lt;/p&gt;
&lt;p&gt;&lt;tt&gt;void handle_mcucsr(void) __attribute__((section(&quot;.init3&quot;))) __attribute__((naked));&lt;br /&gt;
void handle_mcucsr(void)&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mcucsr = MCUCSR;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;MCUCSR = 0;&lt;br /&gt;
}&lt;/tt&gt;&lt;/p&gt;
&lt;pre&gt;handle_mcucsr: sect[ion] .init3, naked!
	mcucsr = MCUCSR
	MCUCSR = 0
&lt;/pre&gt;&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/47803&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/47803#comments</comments>
 <category domain="http://kerneltrap.org/C">C</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3453">language</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3473">modern programming tools</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3413">programming</category>
 <category domain="http://kerneltrap.org/taxonomy/term/3463">tools</category>
 <category domain="http://kerneltrap.org/taxonomy/term/33">Other</category>
 <enclosure url="http://kerneltrap.org/files/OLEG-on-LED.jpg" length="138970" type="image/jpeg" />
 <pubDate>Fri, 27 Nov 2009 15:10:21 +0000</pubDate>
 <dc:creator>olecom</dc:creator>
 <guid isPermaLink="false">47803 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Partition a list numerically?</title>
 <link>http://kerneltrap.org/node/17182</link>
 <description>&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Over on the Haskell Cafe mailing list, the &lt;a href=&quot;http://www.haskell.org/pipermail/haskell-cafe/2009-March/058483.html&quot;&gt;topic&lt;/a&gt; of which of the following two definitions was better came up:&lt;br /&gt;
&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;
buildPartitions xs ns = zipWith take ns . init $ scanl (flip drop) xs ns
&lt;/pre&gt;&lt;p&gt;&lt;br /&gt;
...or...&lt;br /&gt;
&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;
takeList :: [Int] -&amp;gt; [a] -&amp;gt; [[a]]
takeList [] _         =  []
takeList _ []         =  []
takeList (n : ns) xs  =  head : takeList ns tail
     where (head, tail) = splitAt n xs
&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;
&lt;p&gt;...with various parties declaring the first example as &quot;too smart&quot;, and others claiming that the second examp