Recent Tweets by Zeaun

Posting tweet...

Powershell

#Evernote Web Clipper – First Impressions

Those of us in the tech industry have to remember lots and lots of information.  Of course I’m not trying to belittle the farmers of the world, as I’m sure they have lots of stuff to remember too – however I don’t recall ever being a farmer so I can only speak from the perspective I know – that of the tech professional.

The not-so-secret-secret is that when you are expected to constantly absorb whole gigabytes of data about every operating system, every web platform, every networking device, every email system, and so on – eventually some things get….lost.  That… Continue reading

My PowerShell Fibonacci Function

I have an absolute fascination with the Fibonacci sequence.  In a few minutes of rare idle time I threw together a PowerShell function to generate Fibonacci numbers.

 

Just plug in how many numbers you want generated as the function’s argument and off you go.  It’s so basic that just by modifying a few lines one could easily translate it into PHP orJavaScript.

 

function zfib($stop){
##By Zeaun Zarrieff

$a = 0
echo $a
$b = 1
echo $b

for($i=1;$i -le $stop;$i++){
$c = $a + $b
echo $c
$a = $b
$b = $c
}
remove-variable -name a
remove-variable… Continue reading