Opensource CAD Software

Archimedes OpenCAD
Archimedes OpenCAD

Archimedes is a free and opensource CAD software. The interface is comfortable, fairly easy to use and is similar to commercial platforms. Exportable formats are svg (vector), pdf, xml and arc which is Archimedes’ native format. The downside is that documentation seems to be lacking and I maybe wrong here but there doesn’t seem to be a way to change the unit of measurement. With that said I still love it and will be using it.

You can learn more and download Archimedes here http://archimedescad.github.io/Archimedes/

Episode 20: Jenna McCombie (Scratch) Interview

Mick and RedBeard interview Jenna McCombie who plays Scratch on We’re Alive.

 

What else needs to be said?!  Speaking to Jenna was amazing! She is so talented, funny, beautiful, and disarming that it was like talking to an old friend.

You can find more about Jenna McCombie at the following
On IMDB http://www.imdb.com/name/nm3059944/
Follow Jenna on twitter @jennamccombie

 

Visit us at: www.mickred.com Be involved in the show: You can be involved in the show by emailing us text or audio recordings to werealive@mickred.com or by calling (424) Alive – 80 or (424) 254-8380 and leaving a voicemail that we will play on our show. You can even text us at (424) 254-8380.

Music Credits

Ghostpocalypse – 4 Temptress and Lone Harvest by Kevin MacLeod is licensed under a CC Attribution 3.0.
http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100665http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100409.

Episode 19: We’re Alive S4 C41 P1 – Eye of the Storm – What’s-a-Mata with Datu?

Join Mick and RedBeard as we cover We’re Alive S4 C41 P1 Eye of the Storm – …The aftermath…

http://www.zombiepodcast.com/

If you are enjoying the banter, check out the out-takes after the credits.   We also included a few extended segments this time…… every time.

We’re Alive News – We’re Alive on Buzz Feed http://www.buzzfeed.com/jordanzakarin/radio-serials-podcasts-revival

We want you to be a part of the show so send us your theories, ideas and feedback. Talk with us on Facebook!  Be involved in the show: You can be involved in the show by emailing us text or audio recordings to werealive@mickred.com or by calling (424) Alive – 80 or (424) 254-8380 and leaving a voicemail that we will play on our show. You can even text us at (424) 254-8380.

Visit us at: MickRed.com

Shoutouts: @JKWest on Twitter

Check out @DeadReviews – Their Youtube Channel can be found here: http://www.youtube.com/walkingd3adnews

Music Credits Ghostpocalypse – 4 Temptress and Lone Harvest by Kevin MacLeod is licensed under a CC Attribution 3.0. http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100665http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100409.

Episode 18: Tony Rey (Robbins) Interview

Tony Rey - Photo courtesy of www.facebook.com/TheFatManDiaries
Tony Rey – Photo courtesy of www.facebook.com/TheFatManDiaries

Mick and RedBeard interview Tony Rey who plays Robbins on We’re Alive.

Tony was so friggin cool and to top that he sent us one of his scripts becoming our first piece of We’re Alive memorabilia.

Tony Rey's script from We're Alive
Tony Rey’s script from We’re Alive

You can find more about Tony Rey at the following
On IMDB http://www.imdb.com/name/nm5521335/
Follow Tony on twitter @tonyrey
Creator of The Fat Man Diaries – thefatmandiaries.com or on facebook  http://www.facebook.com/TheFatManDiaries
Community Coordinator at @Red5Studios – http://www.red5studios.com/ who puts out Fire Fall an open world MMO first person shooter
Guest Blogger for the @SpartanRace  – http://blog.spartanrace.com/

 

A special thanks to DeadReviews for setting this interview up for us – Their Youtube Channel can be found here: http://www.youtube.com/walkingd3adnews

Visit us at: www.mickred.com Be involved in the show: You can be involved in the show by emailing us text or audio recordings to werealive@mickred.com or by calling (424) Alive – 80 or (424) 254-8380 and leaving a voicemail that we will play on our show. You can even text us at (424) 254-8380.

Music Credits

Irsen’s Tale album by Kai Engel http://kaiengelmusic.wix.com/kaiengel and is licensed under a CC Attribution 3.0http://freemusicarchive.org/music/Kai_Engel/Irsens_Tale/

Ghostpocalypse – 4 Temptress and Lone Harvest by Kevin MacLeod is licensed under a CC Attribution 3.0.
http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100665http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100409.

Combine 2 or more xml files, sort, dedup and display with php

Want to combine 2 or more xml/rss files with php? This commented code should get you started.

The 2 xml files will need to be structured the same in order for this to work without adding more code. The 2 in this example are from the same source with different filters selected. This allows me to sort, filter and dedup using my own methods. You can then re-create the xml or simply display it on the screen like the example does below.

If you still need help feel free to comment below.

Code and Example below

<?php
//Sort Function by title
function sortFunction( $a, $b )
{
return strtotime($b["title"]) - strtotime($a["title"]);
}

$urllist = array();
//Define new xml files here by adding a new line with different urls
$urllist[] = “http://www.instructables.com/tag/type-question/rss.xml?count=100&sort=RECENT”;
$urllist[] = “http://www.instructables.com/tag/type-question/rss.xml?count=100&sort=UNANSWERED”;

//Loop through urllist array adding each item to one multidimensional array
//Define array before populating
$items = array();
foreach($urllist as $url)
{
$feed = simplexml_load_file($url);

//these item names are the child names in the xml
//channel is the wrapper in the xml
foreach($feed->channel->item as $item)
{
$items[] = array(
‘link’ => (string)$item->link,
‘image’ => (string)$item->imageThumb,
‘title’ => (string)$item->title,
‘pubdate’ => (string)$item->pubDate,
‘author’ => (string)$item->author
);
}
}

//Sort by Title
usort($items, “sortFunction”);

//Remove Duplicates
$items = array_map(“unserialize”, array_unique(array_map(“serialize”, $items)));

//Loop through the list and display them
$ictr = 0;
foreach ($items as $item)
{
echo “<div style=’float:left; width:200px; height:300px; margin-right:15px; text-align:center;’>”;
echo “<a href='” . $item[‘link’] . “‘ target=’_blank’>”;

if(strpos($item[‘image’],”defaultIMG”))
{
echo “<img src=’http://www.instructables.com/static/img/footer/footer-robot.png’ />”;
}
elseif(strpos($item[‘image’],”com”))
{
echo “<img src='” . $item[‘image’] . “‘ />”;
}
else
{
echo “<img src=’http://www.instructables.com” . $item[‘image’] . “‘ />”;
}
echo ‘<br />’ . $item[‘title’] . ‘<br />’;
echo ‘By: ‘ . $item[‘author’] . ‘ On ‘ . $item[‘pubdate’] . ‘</a></div>’;
}
echo “<div style=’clear: both;’>&nbsp;</div>”;
?>


Example of the output:

[phpCombineXMLArticle1][/phpCombineXMLArticle1]

Episode 17: We’re Alive S4 C40 P3 – Monsters – What’s-a-Mata with the Pump?

Join Mick and RedBeard as we cover We’re Alive S4 C40 P3 Monsters – …The rain falls…

Come back Monday Dec 9th to hear our next cast interview!

http://www.zombiepodcast.com/

If you are enjoying the banter, check out the out-takes after the credits.   We also included a few extended segments this time!

We want you to be a part of the show so send us your theories, ideas and feedback. Talk with us on Facebook!  Be involved in the show: You can be involved in the show by emailing us text or audio recordings to werealive@mickred.com or by calling (424) Alive – 80 or (424) 254-8380 and leaving a voicemail that we will play on our show. You can even text us at (424) 254-8380.

Visit us at: MickRed.com

Shoutouts: @JKWest on Twitter

Check out @DeadReviews – Their Youtube Channel can be found here: http://www.youtube.com/walkingd3adnews

Music Credits Ghostpocalypse – 4 Temptress and Lone Harvest by Kevin MacLeod is licensed under a CC Attribution 3.0. http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100665http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1100409.

Microwave Deathray

Magnetron
There is something called a Magnetron, not to be confused with Megatron,  inside your microwave. This is the primary component that vibrates the molecules of what you are heating in your microwave to generate heat. Mmmm in the words of Jim Gaffigan Haaaot Pocket!

Ok so it’s not necessarily a death ray but I wouldn’t want to put my junk in front of one. Ever heard of a herf gun? A herf gun is a directed energy weapon. Boeing’s CHAMP recently put on a show taking out targeted computers using one. Supposedly a crude herf gun can be built attaching a waveguide or horn antenna to the output of the magnetron.

Original video was pulled from Youtube updated 7/10/2016

https://www.youtube.com/watch?v=0mjua2e8Y7k

Someone else’s crazy project

Note from wiki “a 1.1 kilowatt input will generally create about 700 watts of microwave power”

What I’d like to do

  • Build a Faraday cage so that I can safely perform testing
  • Get one of these powered up with an inline dimmer switch so that I can control the output
  • Build a horn antenna to attach to the Magnetron so that I can control the direction of output
  • Use some equipment to measure the emitted power with in controlled area
  • Use a frequency counter to get a reading of what range is play
  • Cook food from a distance
  • Light up bulbs in a field
  • Destroy some electronics

Related Projects on Instructables

[phpInstrucatblesKeyword]keyword-plasma/keyword-microwave[/phpInstrucatblesKeyword]

Click here to browse through posts written about my interests in Microwave Projects

Interesting Finds

I found some interesting software on an MIT website today. There were 3 on this page that grabbed my attention.

STARCluster
StarCluster
“StarCluster is an open source cluster-computing toolkit for Amazon’s Elastic Compute Cloud (EC2)”. First off I didn’t realize Amazon’s distributed computing could be used like this. Then again I haven’t done much with parallel computing since early days with Beowulf clustering. If that doesn’t give enough of an indication this will, I used to get frustrated with some of the machines I had because they did not have math co-processors and most linux distributions at the time required them.

STARHPC
StarHPC
“StarHPC provides a virtual machine image configured for parallel programming in both OpenMP and OpenMPI technologies.” I love tinkering with custom linux distributions especially on a virtual machine. My first thought is that this would be fun to run on various embedded devices around the house.

STARHydro
StarHydro

“StarHydro is an application for distributed hydrological analysis. It allows the user to delineate watersheds and explore various watershed statistics.” Ok so this is probably my favorite find today. I love data especially when it involves the earth. I can’t wait to see someone make a complete computer model of the earth loaded up with live data fed from sensors all over the world.

Top