tag:blogger.com,1999:blog-56026402009-02-21T01:32:09.998-08:00Nex6Welcome to Nex6's Blog, all things geeky.Nex6noreply@blogger.comBlogger108125tag:blogger.com,1999:blog-5602640.post-30306607768366195572009-02-04T10:55:00.001-08:002009-02-04T10:55:44.694-08:00the really random password generator (Powershell)<div>ok,</div> <div>&nbsp;</div> <div>Here is a powershell script I wrote awhile back. thought Id post it.&nbsp; its a really random password generator:</div> <div>&nbsp;</div> <div>$pwdlength = [int]<br>$pwdlength = Read-Host &quot;please provide desired password length&quot;<br>$bytes = [byte[]][byte]1<br>$pwd = [string]&quot;&quot;<br>$rng = New-Object System.Security.Cryptography.RNGCryptoServiceProvider<br> for($i=1;$i -le $pwdlength;$i++)<br>{<br>&nbsp;$rng.getbytes($bytes)<br>&nbsp;$rnd = $bytes[0] -as [int]<br>&nbsp;$int = ($rnd % 74) + 48<br>&nbsp;$chr = $int -as [char]<br>&nbsp;$pwd = $pwd + $chr<br>}<br>write $pwd</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>enjoy.&nbsp;&nbsp; </div> <div>&nbsp;</div> <div>&nbsp;</div> <div>maybe later, I will modify it to control special characters. or if someone wants to figure it out, I will repost the code.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3030660776836619557?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com1tag:blogger.com,1999:blog-5602640.post-24769066737363749322009-02-04T10:33:00.001-08:002009-02-04T10:33:38.524-08:00using powershell to reslove a host name to IP<div>ok, </div> <div>&nbsp;</div> <div>Here is the best part you&#39;ll need:</div> <div>&nbsp;</div> <div>$rs = [System.Net.Dns]::GetHostAddresses($i)|select-object IPAddressToString -expandproperty&nbsp; IPAddressToString</div> <div>&nbsp;</div> <div>now, I wrote this and tested it using powershell v2 ctp3, and it should work on the Lower versions but have not tested it.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>with that line, you will have just an IP address in the var, $rs. from there you can do other things and fancy stuff, all aglore.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>the select statement cleans up the output of: [System.Net.Dns]::GetHostAddresses($i) otherwise the output is not really useable as the output is formated in its own colums, with outher propertys. the select-object strips everything out except the IP address.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-2476906673736374932?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-68840168792553365512009-02-03T13:42:00.001-08:002009-02-03T13:42:22.629-08:00Daemon, by Daniel Suarez<div>This book, Daemon, is really good. its a techo-thriller and if you like</div> <div>cyber, and techo types of books this book is one for you.</div> <div>&nbsp;</div> <div>-Nex6</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-6884016879255336551?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-61395016895595104012008-08-09T00:13:00.001-07:002008-08-09T00:13:52.095-07:00basic ruby script<div dir="ltr">I have been playing with Ruby, thought id post a basic hello world style script....<br><br><br>/code<br><br>#!/usr/bin/ruby<br><br><br>print &quot;what do you want to print on screen:&nbsp; &quot;<br>str = gets<br> exit if str.nil? or str.empty?<br>str.chomp!<br><br>print &quot;\n&quot;<br>print str<br><br><br>/end code<br><br><br>-Nexus6<br><br><br><br></div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-6139501689559510401?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-21927943056105545252008-08-05T23:07:00.001-07:002008-08-05T23:07:52.058-07:00going forward<div dir="ltr">Everyone always likes to speculate&nbsp; on the future of IT and computers / tech in general.&nbsp; One thing for sure, there will be changes because.&nbsp; There always is changes, the trick is to stay current and technical enough to have it not matter. weather thats getting a mac, or a linux desktop or if your a mac user getting a windows machine.&nbsp; using all of the different OS&#39;s and at least playing with many of the different languages and other objects / items as yo can will help you in the long run. <br> <br><br><br>-Nex6<br><br>&nbsp;<br></div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-2192794305610554525?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-91601983624618548182008-08-05T22:51:00.001-07:002008-08-05T22:51:09.383-07:00random bilthering<div dir="ltr">In the dawn, of the information age indecision and lack of clarity would hamper innovation.&nbsp; The large guilds, would all vi for power and control of that information. The cyberjockys that can<br>wield it. All of the large guilds, would have there own cyber warriors, each battling each other across the empty space of the NET.&nbsp; With, the mundane users and peoples all plugged into this this massive power.<br> <br>and, unwittingly the mundane become fodder in this new age. <br><br><br>-Nex6<br><br><br></div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-9160198362461854818?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-30854659250995800722008-06-10T21:58:00.001-07:002008-06-10T21:58:56.758-07:00ProductivityA lot of people on blogs all over the NET always say, OS [ insert type ] gives me more productivity. Things like, I switched to &nbsp;OSX or Linux etc and it made me 100% more productive.&nbsp;<div>My opinion is, that the OS you know. gives you, more productivity. &nbsp;say for example, a long time windows user who is productive on windows. switches to Linux, FreeBSD or even OSX.&nbsp;</div> <div><br></div><div>now, said windows user who has many years of&nbsp;experience&nbsp;on windows. starts using Nix, he/she will be far less productive for a long time until such a time as he/she. gets</div><div>very used to the new OS. though some users will get used to the OS faster the others...</div> <div><br></div><div>Though, all that said; some OS&#39;s like OSX or Linux (running E17 -enlightenment {shamefull plug}) can, make some more productive due to Virtual desktops, unix shell etc. though</div><div>now, Microsoft has powershell. which is shaping up pretty darn good.</div> <div><br></div><div>I am all for open standards, and open standardized formats.</div><div><br></div><div>things like ODF files, and firefox plugins. that let you read the files&nbsp;nativity&nbsp;in the&nbsp;browser, will change things.</div> <div><br></div><div><br></div><div>-Nex6 &nbsp;</div><div><br></div><div><br></div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3085465925099580072?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com2tag:blogger.com,1999:blog-5602640.post-19731439376246871202008-06-04T08:18:00.001-07:002008-06-04T08:18:21.195-07:00Fedora 9 and E17 - Enlightenment<a href="http://optics.csufresno.edu/~kriehn/fedora/repository.html">http://optics.csufresno.edu/~kriehn/fedora/repository.html</a><br><br>enjoy<br><br><br>-Nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-1973143937624687120?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-23224951154147096132008-05-23T12:28:00.001-07:002008-05-23T12:28:15.048-07:00E17 - Enlightenment installs updatedThere is a new repo for Fedora E17 installs (yum), and in genral for installing E17. its located at:<br><a href="http://optics.csufresno.edu/~kriehn/fedora/fedora_files/f8/howto/e17-installation.html">http://optics.csufresno.edu/~kriehn/fedora/fedora_files/f8/howto/e17-installation.html</a><br> <br>lots of good information.<br><br><br>-Nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-2322495115414709613?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-91966758821956360612008-05-07T22:14:00.001-07:002008-05-07T22:14:28.385-07:00Damn good Perl artical<a href="http://perlbuzz.com/2008/05/perl-decentralize-diversify-colonize.html">http://perlbuzz.com/2008/05/perl-decentralize-diversify-colonize.html</a><br><br>Here is a pretty damn good Perl, article over at perlbuzz. he makes some very good points about things Perl at large<br> can do to increase mind share. I have blogged about the many scripting languages and the amount of job postings, of which<br>Perl is king. so; Perl is not dying anytime so. and in fact there are major places building new stuff with Perl, like amazon.<br> <br>Nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-9196675882195636061?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-51169899081018231302008-05-04T13:38:00.001-07:002008-05-04T13:38:28.715-07:00programming language data mining and trackingway back in January I posted this:<br><a href="http://nex6.blogspot.com/2008/01/perlpythonphp.html">http://nex6.blogspot.com/2008/01/perlpythonphp.html</a><br><br>which details all thw job posting form monster about alot of different computer related jobs.&nbsp; here a few months later is anther one:<br> <br>Perl&nbsp; 4326<br>Ruby 647<br>C# 5000+<br>Java 5000+<br>Python 1257<br>Ruby on rails 258<br>Asp.net 4437<br>Vbscript 883<br>Powershell 81<br>C++ 5000+<br>Flash 3634<br>Sliverlight 2<br>Bash 360<br>Zsh 0<br>Ksh 235<br>Php 2586<br> Javascript 5000+<br>Applescript 19<br>Osx&nbsp; 164<br>Linux 5000+<br>Windows 5000+<br>Freebsd 115<br>Xml 5000+<br>Cobol 745<br><br>if you notice, some stayed excatly the same others, change a bit the only one to dramaitcly change is c++, which i dont have answer for, other then <br> one of the querry maybe wrong.&nbsp; will have the moniter, and look into the C++ thing.&nbsp; <br><br><br>enjoy.<br><br><br>-Nex6<br><br><br><br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-5116989908101823130?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-32583777302894520632008-04-27T23:25:00.001-07:002008-04-27T23:25:37.768-07:00mac OSX HIG and keyboard short list<a href="http://developer.apple.com/referencelibrary/API_Fundamentals/UserExperience-fund-date.html">http://developer.apple.com/referencelibrary/API_Fundamentals/UserExperience-fund-date.html</a><br><br>two very good pdf&#39;s for mac users and the HIG PDF at the end has a complete listing of every OSX keybaord shortcut.<br> <br>very cool...<br><br><br><br>-nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3258377730289452063?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-33698298198538880072008-04-27T16:52:00.001-07:002008-04-27T16:52:06.567-07:00Mac thoughts ( Random blithering)ok, (longish)&nbsp; :)<br><br>I have had my new mac for a little while now. in the order of 3 months or so, Mac for sure has a different work flow and user flow. <br>They are not necessarily bad or wrong just different. Mac has its own way of doing things. like many things tend to by mousy like drag and drop to install software, drag and drop to remove. though, there is a fair number of keyboard jocky stuff also like real UNIX and iterm/shell (am a zsh user). one of the first things i did was switch the shell to zsh, and load my dot files for zsh.<br> <br>the &#39;feel&#39; of the laptop (MBP aka macbook pro) is pretty good, tho there is a bug in the sleep when shutting the lid. this is a known<br>issue and on the apple forums there is tons and tons of posts about it. work around is the use the menu to put to sleep. tho, once of the theory&#39;s<br> is having external USB devices plugged in while closing the lid. which for me is true (external USB mouse). so now i just use the menu. when i get arround to it, I think i will figure out how to make shortcut/alais or script something and have it on the dock and just click there to send it to sleep.<br> <br>noticed, on the right click menu there is no &quot;rename&quot; for most things. though I can use the shell. i wonder what the reason for this is?<br><br>I really like the user switching in OSX, where one user is logged one and you &quot;switch&quot; to another user leaving the other user logged on. this is really<br> first class. one click enter password and your in. in fact this is really cool for dev stuff. i can have test users set up and flip to them very fast.<br><br>the photo stuff is way better period, its not even close.&nbsp; and know with the new Microsoft RDP client, connecting to work machines is a breeze and works just like a native client. (tho, Linux has an RDP client also I think the Mac client is a little better)<br> <br>The touchpad, is anther thing that&#39;s way better, the touchpad once you setup the non default options like tap to click, it way way better then any other touchpad period. two finger scrolling two finger tap for right clicking etc very nice.<br> <br>I am waiting for my copy from work of vmware fusion so i can load all my Windows, Linux and FreeBSD vm&#39;s. <br><br><br>Vim is there so life is good on that front, and macports and fink allow installing in a more BSD/Linux way of some someware. tho, i wish mc(midnight commader) had a mac version. though i may still install the source version.<br> <br><br>hmmmmm thats good for now...<br><br><br><br><br>-Nex6<br><br><br><br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3369829819853888007?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-33113593192083182692008-04-25T21:54:00.001-07:002008-04-25T21:54:45.316-07:00Apple and P.A Semihere is a pretty good artical about Apple and PA Semi, which I agree with:<br><a href="http://www.macworld.com/article/133191/2008/04/pasemi.html">http://www.macworld.com/article/133191/2008/04/pasemi.html</a><br><br>-Nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3311359319208318269?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-66361681508678312492008-04-23T11:56:00.001-07:002008-04-23T11:56:30.369-07:00Windows Preformance tools<div>Here are some links to windows preformance tools:</div> <div><a href="http://www.microsoft.com/whdc/system/sysperf/perftools.mspx">http://www.microsoft.com/whdc/system/sysperf/perftools.mspx</a></div> <div>&nbsp;</div> <div><a href="http://www.microsoft.com/whdc/system/sysperf/default.mspx">http://www.microsoft.com/whdc/system/sysperf/default.mspx</a></div> <div>&nbsp;</div> <div>enjoy,</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-6636168150867831249?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-31437195206631621602008-04-21T08:04:00.001-07:002008-04-21T08:04:18.594-07:00Cost of modern software development<div>Here is a poston osnews:</div> <div><a href="http://www.osnews.com/story/19662/The_Cost_of_Modern_Software_Development">http://www.osnews.com/story/19662/The_Cost_of_Modern_Software_Development</a></div> <div>&nbsp;</div> <div>now, the orig artical and many of the posters have gone back and forth on this. I think,</div> <div>computing is an evolutionary field. I don&#39;t think C/C++, ASM and other low level or close to the metal</div> <div>languages will ever go away. OS&#39;s, and other high performance type software will always need to </div> <div>be written in lower languages. (at least for now).</div> <div>&nbsp;</div> <div>but; </div> <div>&nbsp;</div> <div>There are productivity gains, by using managed code. For business and enterprise</div> <div>software, managed code is best. because; its all about being productive period. that said, there are</div> <div>many exceptions to this rule. but the trend is for enterprise shops to move to managed code. well, really its</div> <div>mixed. As some shops will create there own C/C++ library&#39;s and use managed code on top of that...</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>In the long run, this is a good trend as software moves up the stack. the OS will change too.&nbsp; and what </div> <div>will happen is you will have a computer and a platform, that handles all your software. the OS will be far less important</div> <div>as most of the work will be by frameworks and vm&#39;s.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3143719520663162160?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com2tag:blogger.com,1999:blog-5602640.post-71528925574330282008-04-02T07:43:00.001-07:002008-04-02T07:43:52.458-07:00OOXML and the ISO vote<div>well, looks like OOXML is approved:</div> <div>&nbsp;</div> <div>slashdots linkage:</div> <div><a href="http://slashdot.org/article.pl?no_d2=1&amp;sid=08/04/01/2229207">http://slashdot.org/article.pl?no_d2=1&amp;sid=08/04/01/2229207</a></div> <div>&nbsp;</div> <div>and groklaws linkage:</div> <div><a href="http://www.groklaw.net/article.php?story=20080402003610230">http://www.groklaw.net/article.php?story=20080402003610230</a></div> <div>&nbsp;</div> <div>&nbsp;</div> <div>When you read through those threads you&#39;ll notice allot of comments about how Microsoft must have cheated somehow.&nbsp; and that OOXML is flawed, and </div> <div>should have been rejected. my take is this;</div> <div>&nbsp;</div> <div>maybe OOXML is not perfect, but neather is PDF or ODF. &nbsp;hell the only really clean standard is probley HTML.&nbsp; Microsoft has the disadvantage of having tons and tons of functionality</div> <div>that must be supported. where as ODF did not. also, pdf is also pretty ugly. ever try to create a PDF based app? good luck in having it not break from adobe reader version to version and from the different broswer versions. and if we accepted PDF? why not OOXML? and one thing Miguel de Icaza has commented alot about OOXML both on his blog and in slashdot threads about OOXML. </div> <div>&nbsp;</div> <div>and he and some of his team had been invloved during some of the early stages. Now remember Miguel and his team wrote Gnumeric and worked alot with the Microsoft formats. and they thought more documentation was better, and would help in the long run. so many of the&nbsp;6000 pages are samples etc see the below links for a run down.</div> <div>&nbsp;</div> <div>I for one think OOXML in the long run is a good thing.</div> <div>&nbsp;</div> <div>here are some of Miguel de Icaza&#39;s posts: (about OOXML)</div> <div>&nbsp;</div> <div><a href="http://tirania.org/blog/archive/2008/Mar-26.html">http://tirania.org/blog/archive/2008/Mar-26.html</a></div> <div>&nbsp;</div> <div>and a really good post about ODF and OOXML in general:</div> <div><a href="http://tirania.org/blog/archive/2007/Jan-30.html">http://tirania.org/blog/archive/2007/Jan-30.html</a></div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-7152892557433028?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com1tag:blogger.com,1999:blog-5602640.post-54696845090959075652008-02-28T09:27:00.001-08:002008-02-28T09:27:54.676-08:00FreeBSD 7.0 install On DC7100 F1 prompt error<div>I did a fressh install of FreeBSD on a DC7100 and got a f1 prompt with beeping.</div> <div>i used this post to fix it:</div> <div>&nbsp;</div> <div><a href="http://osdir.com/ml/os.freebsd.devel.mobile/2002-11/msg00163.html">http://osdir.com/ml/os.freebsd.devel.mobile/2002-11/msg00163.html</a></div> <div>&nbsp;</div> <div>in short use the install CD to switch boot loaders to standard.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-5469684509095907565?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com1tag:blogger.com,1999:blog-5602640.post-77028382175946469802008-02-27T15:01:00.001-08:002008-02-27T15:01:22.021-08:00FreeBSD &.0 Released!!!!!<div><a href="http://docs.freebsd.org/cgi/getmsg.cgi?fetch=3236+0+current/freebsd-announce">http://docs.freebsd.org/cgi/getmsg.cgi?fetch=3236+0+current/freebsd-announce</a></div> <div>&nbsp;</div> <div>FreeBSD Project has release FreeBSD 7.0. geat work guys!</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-7702838217594646980?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-42477337180013604252008-02-14T12:15:00.001-08:002008-02-14T12:15:33.654-08:00Mac - (got a mac)<div>Got my first mac about a week or so ago. I got my work to pay for it. its a macbookpro 15 w/4gb ram. over all</div> <div>I am pretty impressed hardware is first class, as is power management.&nbsp; Now as a long time IT pro,&nbsp;I used only Windows and Linux </div> <div>(some freeeBSD) It came with &quot;tiger&#39; and an upgrade CD to leopard, i left &quot;tiger&quot; and figured i would use tiger first for awhile then upgrade to leopard.</div> <div>&nbsp;</div> <div>I upgrade once the recent patches for leopard came out (10.5.2)&nbsp; so I had about 2 weeks maybe less with tiger.&nbsp; now as a &quot;power user&quot; or developer, </div> <div>I am fine in the shell, and learning new stuff is just part of what I do.&nbsp; I noticed, that mac has what i call &quot;macisms&quot; things that only mac does. </div> <div>&nbsp;</div> <div>like fior example: alt-tab in windows cycles through all open apps weather there minimsed or maximised, not so in mac. if an app is minimised to the dock.</div> <div>and you try an cmd -tab (just like windows and linux alt-tab) only open apps cycle, like wise if you have more then one safri session open it will</div> <div>not cycle thru each one only the top one.</div> <div>&nbsp;</div> <div>lots of little stuff like that,&nbsp; but overall i like the mac. power management is first class. better then Xp, vista and linux. </div> <div>(i am a heavy laptop user so i use sleep alot)</div> <div>&nbsp;</div> <div>and, I am still putting it thru its paces, in the future i will writeup a macisms post with alot of the macisms i find.</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>-Nex6</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-4247733718001360425?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com2tag:blogger.com,1999:blog-5602640.post-46002001989593059102008-02-05T07:31:00.001-08:002008-02-05T07:31:53.560-08:00Time-Warner Considers Per-Gigabyte Service Feesthe Slashdot linkage:<br><a href="http://apple.slashdot.org/article.pl?sid=08/02/05/1322213">http://apple.slashdot.org/article.pl?sid=08/02/05/1322213</a><br><br>I think this is so not the way to go. I think they should instead reward those customers that use less then the 5Gb cap. sort of like going green, now we know they don&#39;t want to lower<br> the existing bills, so just think up some programs to reward people who use less bandwidth.&nbsp; simple, and for the big users give them more bandwidth and charge them for it. like 10MB/1mb for 99$<br><br><br>its not the hard. and i think it would hurt the economy, and the nature/culture for the Internet to not be open...<br> <br><br><br><br>-Nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-4600200198959305910?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-24207062447912367892008-01-23T06:12:00.001-08:002008-01-23T06:12:45.009-08:00PERL/Python/phpthought I&#39;d touch on the PERL is dead long live python debate...<br><br><br>on <a href="http://monster.com">monster.com</a>, The following stats (not very scientific the tho very telling)<br><br>job postings for:<br><br> PERL: 4443<br>Python: 1185<br>PHP: 2471<br>c#: 5000+<br><a href="http://vb.net">vb.net</a>: 3181<br>Ruby: 649<br>Ruby on rails: 248<br><a href="http://asp.net">asp.net</a>: 4868<br>lisp: 45<br>Cobol: 46<br>XML: 5000+<br>C++: 387 <br>fortran: 225<br>haskell: 8<br>vbscript: 51<br>powershell: 66<br>bash: 353<br>zsh: 0<br>ksh: 193<br>tcsh: 3<br>Java: 5000+<br>javascript: 5000+<br>applescript: 12<br>sed: 119<br>awk: 137<br>Linux: 5000+<br>Windows: 5000+ <br>FreeBSD: 117<br>OSX: 165<br>flash: 3626<br>sliverlight: 0<br><br>&nbsp;you can look through the list and see for your self where the current trends are, at least for current job postings.<br><br><br><br>-Nex6<br><br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-2420706244791236789?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com2tag:blogger.com,1999:blog-5602640.post-18319771640956411112008-01-16T06:18:00.000-08:002008-01-16T06:19:20.262-08:00MacBook AirThere are lots of posts and threads everywhere on the NET about the new Macbook AIR.&nbsp; Here are some:<br><br><a href="http://www.osnews.com/story/19168/MacBook_Anorexic:_Where_Apple_Went_Wrong">http://www.osnews.com/story/19168/MacBook_Anorexic:_Where_Apple_Went_Wrong </a><br><br><a href="http://www.osnews.com/story/19166/Apple_Launches_MacBook_Air">http://www.osnews.com/story/19166/Apple_Launches_MacBook_Air</a><br><br><a href="http://apple.slashdot.org/article.pl?sid=08/01/15/1842211"> http://apple.slashdot.org/article.pl?sid=08/01/15/1842211</a><br><br><a href="http://www.appleinsider.com/articles/08/01/15/high_quality_macbook_air_superdrive_photos_notes_on_remote_disc.html">http://www.appleinsider.com/articles/08/01/15/high_quality_macbook_air_superdrive_photos_notes_on_remote_disc.html </a><br><br><br><br>Ok, that done;<br><br>I have seen,&nbsp; posts&nbsp; about how this will fail or its to expensive etc. First to the detractors, these types of devices eg ultra-notebooks, are aimed<br>at people who want a super light bare bones notebook for traveling, and other on the go needs. The big goals are: <br><br>light<br>battery life<br>looks good<br>usable <br><br>That said,&nbsp; I know lots of people who would like one. Most people don&#39;t need all the features a typical laptop comes with anyways. And, some people who carry there laptops with them everywhere, would like one of these. Especially if there a mac user. <br><br>-Nex6<br><br>&nbsp; <br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-1831977164095641111?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0tag:blogger.com,1999:blog-5602640.post-35215981227661926542007-12-21T10:42:00.001-08:002007-12-21T10:42:54.993-08:00My Email setupJust a random blog post here, i use Gmail and alpine with Imap for all my <br>email. i works great, alpine is very good for mailing lists. over the <br>weekend i will post howto setup alpine with gmail and get all your labels <br>and folders.<p><br>-Nex6<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-3521598122766192654?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com1tag:blogger.com,1999:blog-5602640.post-1744803137252245122007-12-15T21:33:00.001-08:002007-12-15T21:33:17.040-08:00Mark Russinovich: On Working at Microsoft, Windows Server 2008 Kernel, MinWin vs ServerCore, HyperV, Application Virtualization [Video]<a href="http://channel9.msdn.com/showpost.aspx?postid=365911">http://channel9.msdn.com/showpost.aspx?postid=365911</a><br><br>a very good video interview with Mark Russinovich go goes over alot of ground and whiteboards windows server 2008, hyperVisor and some other stuff. <br>very cool.<br><br><br>-Nex6<br> <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5602640-174480313725224512?l=nex6.blogspot.com'/></div>Nex6noreply@blogger.com0