diff --git a/README.md b/README.md index 639d3c69c..212cc6a79 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ This is our repository for our club's [website](https://opensource.osu.edu). It' ### How can I contribute? - report bugs, issues, and documentation inconsistencies +- tag posts - request features - hate or love a feature . . . *tell us* - request topics for future meetings diff --git a/_assets/css/_media-queries.sass b/_assets/css/_media-queries.sass index 02e7ec627..da3f9c98b 100644 --- a/_assets/css/_media-queries.sass +++ b/_assets/css/_media-queries.sass @@ -113,6 +113,12 @@ left: $sidebarWidth >* transition: 0s + .column-wrap + &:nth-of-type(2n) + // width: 960px + &:nth-of-type(2n+1) + // width: calc(100% - 960px) + // min-width: 1400px - 960px .layout-desktop display: inherit @@ -124,6 +130,45 @@ left: 30rem > .section.posts:only-child > .container width: 50% + // .related + // .related-post + // width: 50% + + +@media (min-width: 1200px) and (max-width: 1749px) + .container + max-width: 960px + #page-content-wrapper + .column-wrap + width: calc(960px - (3em * 2)) + &:nth-of-type(2n+1) + margin-top: 8em + .related + .related-post + width: calc(50% - 2em) + &:nth-of-type(2n+1) + margin-right: 2em + + +@media (min-width: 1750px) + .container + max-width: 1400px + #page-content-wrapper + .column-wrap + &:nth-of-type(2n) + width: calc(960px - (3em * 2)) + &:nth-of-type(2n+1) + position: fixed + width: calc(100% - 960px - 10em) + min-width: calc(1400px - 960px - 10em) + max-width: 1em + margin-left: 10em + .related + padding-top: 8rem + .related-post + width: 100% + + @media (min-width: 550px) and (max-width: 749px) and (orientation: landscape) .landing @@ -297,7 +342,6 @@ overflow-x: hidden transition: all 0.25s linear -webkit-overflow-scrolling: touch - &.single left: 0 transition: all 0.25s linear @@ -311,6 +355,10 @@ &.single left: 30rem transition: all 0.25s linear + .column-wrap + width: 100% + &:nth-of-type(2n+1) + margin-top: 4em *:not(#page-content-wrapper):not(.sidebar):not(.navbar):not(.menu-toggle):not(#search-posts):not(.search-submit):not(.search-results):not(.scrollToTop) //todo mixin that daisy chains :not @@ -347,6 +395,10 @@ padding: 0 width: 100% + .related + .related-post + width: 100% + @media (min-width: 750px) and (max-width: 1199px) #main-nav padding-top: 6rem @@ -408,6 +460,11 @@ height: 6rem &::before font-size: 3rem + .related + .related-post + width: calc(50% - 1em) + &:nth-of-type(2n+1) + margin-right: 2em @media (min-width: 550px) and (max-width: 749px) .landing diff --git a/_assets/css/main.sass b/_assets/css/main.sass index ddf984174..1f4754af6 100644 --- a/_assets/css/main.sass +++ b/_assets/css/main.sass @@ -17,7 +17,7 @@ $gray: #848484 padding: 0 20px margin: 0 auto width: 100% - max-width: 960px + // max-width: 1400px .column, .columns box-sizing: border-box @@ -28,12 +28,13 @@ $gray: #848484 @media (min-width: 400px) .container padding: 0 - width: 85% + // width: 85% + padding: 0 3em /* For devices larger than 550px @media (min-width: 550px) .container - width: 80% + // width: 80% .column, .columns margin-left: 4% .column:first-child, .columns:first-child @@ -150,6 +151,9 @@ h1 line-height: 1.2 margin-top: 1.5em +.date + .content h1:first-of-type + margin-top: 0 + h2 font-size: 3.6rem @@ -542,7 +546,7 @@ hr h5 display: inline text-transform: capitalize - + a:not(:last-of-type) h5::after content: "\f105" @@ -841,9 +845,9 @@ input a font-weight: 400 h2 - margin-top: 2em + margin-top: 8rem &:not(:first-of-type) - padding-top: 2em + padding-top: 8rem border-top: 1px lighten($gray, 20%) solid .tags @@ -1204,3 +1208,16 @@ footer @import "media-queries" // @import "terminal" + +.column-wrap + display: inline-table + vertical-align: top + +.related + // margin-top: 6em + .related-title + border-bottom: 1px lighten($gray, 25%) solid + .related-post + display: inline-table + h4 + margin-bottom: 0 diff --git a/_includes/jade/posts.jade b/_includes/jade/posts.jade index a7630a0b5..89597830f 100644 --- a/_includes/jade/posts.jade +++ b/_includes/jade/posts.jade @@ -9,8 +9,8 @@ a(href='{{ site.baseurl }}/') h5 {{ page.tags }} {% else %} - a(href='{{ site.baseurl }}/{{ page.tags | first }}') - h5 {{ page.tags }} + a(href="{{ site.baseurl }}/{{ page.tags | first | remove: ',' }}") + h5 {{ page.tags | first | remove: ',' }} {% endif %} a(href='{{ site.baseurl }}{{ post.url }}') @@ -50,18 +50,62 @@ {% endunless %} - .tags {{ post.tags }} + .tags {{ post.tags | join: ' ' }} {% endfor %} {% if page.is_post %} + + .column-wrap + h2.bold {{ page.title }} + span.date posted: {{ page.date | date: "%m-%d-%Y" }} + .content {{ page.content | markdownify }} + .tags {{ page.tags | join: ' ' }} + + .column-wrap + .related + h4.related-title Related Posts + + {% assign relatedPosts = false %} + {% assign relatedPostCount = 0 %} + + {% for post in site.posts %} + + {% assign sameTagCount = 0 %} + {% assign commonTags = '' %} + + + {% for tag in post.tags %} + //- {% if page.tags contains tag and post.categories == page.categories %} + {% if page.tags contains tag %} + {% assign sameTagCount = sameTagCount | plus: 1 %} + + {% endif %} + {% endfor %} + + {% if sameTagCount >= 2 and post.url != page.url %} + {% assign relatedPosts = true %} + {% assign relatedPostCount = relatedPostCount | plus: 1 %} + + {% if relatedPostCount > 6 %} + | {% break %} + {% endif %} + + .related-post + a(href='{{ post.url }}') + h4 {{ post.title }} + span.date posted: {{ post.date | date: "%m-%d-%Y" }} + {% endif %} + + {% endfor %} + + {% if relatedPosts == false %} + .related-post + h4 No related posts found + {% endif %} - h2.bold {{ page.title }} - span.date posted: {{ page.date | date: "%m-%d-%Y" }} - .content {{ page.content | markdownify }} - .tags {{ page.tags }} {% endif %} {% unless page.is_post %} diff --git a/_layouts/jade/secondary/events.jade b/_layouts/jade/secondary/events.jade index 4ed29f00b..c6a8e0cf5 100644 --- a/_layouts/jade/secondary/events.jade +++ b/_layouts/jade/secondary/events.jade @@ -16,7 +16,7 @@ doctype html {% else %} {% for post in site.categories.[page.category] %} - h2 {{ post.title }} + h2.bold {{ post.title }} span.date posted: {{ post.date | date: "%m-%d-%Y" }} .content {{ post.content }} {% endfor %} diff --git a/_layouts/jade/secondary/volunteering.jade b/_layouts/jade/secondary/volunteering.jade index 8f4050990..651596907 100644 --- a/_layouts/jade/secondary/volunteering.jade +++ b/_layouts/jade/secondary/volunteering.jade @@ -17,7 +17,7 @@ doctype html {% else %} {% for post in site.categories.[page.category] %} - h2 {{ post.title }} + h2.bold {{ post.title }} span.date posted: {{ post.date | date: "%m-%d-%Y" }} .content {{ post.content }} {% endfor %} diff --git a/_posts/2006-09-10-updated-student-involvement-fair-ohio-linuxfest-pamphlet.md b/_posts/2006-09-10-updated-student-involvement-fair-ohio-linuxfest-pamphlet.md index e749cde9c..4a7a3310e 100644 --- a/_posts/2006-09-10-updated-student-involvement-fair-ohio-linuxfest-pamphlet.md +++ b/_posts/2006-09-10-updated-student-involvement-fair-ohio-linuxfest-pamphlet.md @@ -3,7 +3,7 @@ layout: html/default title: 'Updated: Student Involvement Fair/Ohio LinuxFest pamphlet' created: 1157923826 categories: announcements -tags: announcements +tags: announcements, ohio linuxfest --- As part of our participation in the [Student Involvement Fair](http://ohiounion.osu.edu/studentorgs/events_involvement.asp) and [Ohio LinuxFest 2006](http://www.ohiolinux.org) I'd like to hand out pamphets that showcase who we are and our upcoming meetings. I've started work on it, and would appriciate any idea or comments you may have on it. You can download it at the bottom of the page in OpenDocument and PDF formats. Edit: The automatic uploader is not working, due to possible SELinux issues. I've linked to the files manually, and will look into the issue. Release notes: diff --git a/_posts/2006-09-21-new-drupal-based-website-launched.md b/_posts/2006-09-21-new-drupal-based-website-launched.md index cbd5db202..7b1a60996 100644 --- a/_posts/2006-09-21-new-drupal-based-website-launched.md +++ b/_posts/2006-09-21-new-drupal-based-website-launched.md @@ -4,7 +4,7 @@ title: New Drupal-based website launched created: 1158866713 alias: /website-moving.html categories: announcements -tags: announcements +tags: announcements, website, cms, drupal --- Months ago I made the decision to use [Microwiki](/microwiki) as the base of our website, replacing the [old HTML site](/old_site/) that we had previously. At around the same time, [Freegeek Columbus](http://freegeekcolumbus.org/) switched from [MediaWiki](http://www.mediawiki.org) - the software that drives Wikipedia - to Mircowiki, and they seemed happy enough. It seemed a good choice for us. I thought that we should use something small and simple. Microwiki, weighing in at just 163 kilobytes, is undoubtably small and simple. However, as time wore on, it became clear that MicroWiki was not the best tool for the job. I pressed on, thinking that I could make it work. I never did. Here is a quick list of various problems I ran into: diff --git a/_posts/2006-09-21-ohio-linuxfest-2006.md b/_posts/2006-09-21-ohio-linuxfest-2006.md index 1656a5bec..93e1a345d 100644 --- a/_posts/2006-09-21-ohio-linuxfest-2006.md +++ b/_posts/2006-09-21-ohio-linuxfest-2006.md @@ -3,7 +3,7 @@ layout: html/default title: Ohio LinuxFest 2006 created: 1158867255 categories: announcements -tags: announcements +tags: announcements, ohio linuxfest --- On September 30, 2006 [Ohio LinuxFest 2006](http://www.ohiolinux.org) will occur at the [Greater Columbus Convention Center](http://www.ohiolinux.org/attend_travel.html). This event will draw over a dozen sponsors, twenty speakers, and nearly two-thousand attendees. diff --git a/_posts/2006-09-21-welcome-back-with-alex-ideas-for-ohio-linuxfest.md b/_posts/2006-09-21-welcome-back-with-alex-ideas-for-ohio-linuxfest.md index 0016a4780..c1eddcb2d 100644 --- a/_posts/2006-09-21-welcome-back-with-alex-ideas-for-ohio-linuxfest.md +++ b/_posts/2006-09-21-welcome-back-with-alex-ideas-for-ohio-linuxfest.md @@ -3,7 +3,7 @@ layout: html/default title: Welcome Back with Alex! / Ideas for Ohio LinuxFest created: 1158867653 categories: announcements -tags: announcements +tags: announcements, ohio linuxfest --- Date: 09/21/2006 Time: 7:00PM diff --git a/_posts/2006-09-21-welcome-back.md b/_posts/2006-09-21-welcome-back.md index 81544c3c8..716f64720 100644 --- a/_posts/2006-09-21-welcome-back.md +++ b/_posts/2006-09-21-welcome-back.md @@ -3,6 +3,6 @@ layout: html/default title: Welcome Back! created: 1158866666 categories: announcements -tags: announcements +tags: announcements, first --- Hello all, I hope everyone had a great summer and is ready for the next quarter of the Opensource Club to begin! We have a couple of important events occurring within the first few weeks of the quarter I'd like to talk a bit about, since they are new and exciting. The Opensource Club will be taking part in the Student Involvement Fair on September 18th. We will have a table in the Technology section of the fair. The Student Involvement Fair will be held from 12:00 noon to 4:00pm on the Oval and will include dozens of student organizations and thousands of attendees. This is a great chance to advertise ourselves to the incoming freshmen class and to all students of Ohio State. Then on September 30th is Ohio LinuxFest 2006! LinuxFest will be held at the Greater Columbus Convention Center in downtown Columbus. We are also proudly taking part in this event, with a table of our own. There will speakers, vendor and community exhibits, and plenty of swag. Information can be found on the Ohio LinuxFest website, and more will be added to the site soon. This is a chance to show the greater community our spirit and resolve to be a great community player. Both events are completely free to attend, but it should be noted that Ohio LinuxFest requires all attendees to register by September 22\. LinuxFest is offering an All Conference Pass for $65.00, which is completely optional, and includes several perks, all detailed on the attendance page. We will be organizing a group of attendees once the date draws closer. I will send out more detailed e-mails about each event as they draw nearer. Now, we are currently in the planning stages, but one thing we would like to give away at both events is a flier detailing ourselves and listing at least our first five or six meetings of the quarter. For this, we need speakers. I'd like to ask for five speakers to offer to give presentations for the first few meetings of the quarter. We want to show anyone interested in our organization that we are alive, kicking, and in full-swing for the up-and-coming year. This year we will be continuing in the alternating Tuesday/Thursday at 7:00pm format that we used last year, since it seemed to work well for most people. If it turns out to not be the best way to continue, we can discuss alternate ideas. Barring any problems, here is my tentative schedule of meeting dates: Monday 9/18: Student Involvement Fair Thursday 9/21: Welcome Back with Alex! Tuesday 9/26: Speaker needed Saturday 9/30: Ohio LinuxFest 2006 Thursday 10/5: Speaker needed Tuesday 10/10: Speaker needed Thursday 10/19: Speaker needed Tuesday 10/24: Speaker needed If anyone is interested in speaking during those dates, feel free to contact me at lingo.13@osu.edu or by replying to this topic. I am looking forward to seeing the Opensource Club as strong as ever in the coming months, and these two events are a good way to start upon that road. diff --git a/_posts/2006-09-26-pulseaudio-with-paul-betts.md b/_posts/2006-09-26-pulseaudio-with-paul-betts.md index 0a61da59d..cbfc50f0c 100644 --- a/_posts/2006-09-26-pulseaudio-with-paul-betts.md +++ b/_posts/2006-09-26-pulseaudio-with-paul-betts.md @@ -3,7 +3,7 @@ layout: html/default title: PulseAudio with Paul Betts created: 1159328304 categories: announcements -tags: announcements +tags: announcements, linux, audio, sound --- Room: 480 Dreese Labs diff --git a/_posts/2006-11-02-virtualization-session.md b/_posts/2006-11-02-virtualization-session.md index e68a913d6..8f5341198 100644 --- a/_posts/2006-11-02-virtualization-session.md +++ b/_posts/2006-11-02-virtualization-session.md @@ -3,6 +3,6 @@ layout: html/default title: Virtualization Session created: 1162526399 categories: announcements -tags: announcements +tags: announcements, virtualization --- A big thanks to everyone who made it to today's meeting on Virtualization! We had a great turnout, great discussion and some pretty hillarious demos! Slides from the presentation are available here: [ [OpenOffice](/sites/default/files/virtualization.odp) | [pdf](/sites/default/files/virtualization.pdf) ] Also, here are some URLs that I promised to post: [Xen Project](http://www.cl.cam.ac.uk/research/srg/netos/xen/) at [University of Cambridge](http://www.cam.ac.uk/) [XenSource Home Page](http://www.xensource.com/) (very cool flash demo here) [XenSource LiveCD](http://www.xensource.com/xen/downloads/) (used for today's demo) [Xen Documentation](http://www.cl.cam.ac.uk/research/srg/netos/xen/documentation.html) [Xen and the Art of Virtualization](http://www.cl.cam.ac.uk/research/srg/netos/papers/2003-xensosp.pdf) diff --git a/_posts/2007-01-08-up-and-blogging-with-wordpress-in-5-minutes.md b/_posts/2007-01-08-up-and-blogging-with-wordpress-in-5-minutes.md index 853ad689b..c6709407d 100644 --- a/_posts/2007-01-08-up-and-blogging-with-wordpress-in-5-minutes.md +++ b/_posts/2007-01-08-up-and-blogging-with-wordpress-in-5-minutes.md @@ -4,6 +4,6 @@ title: Up and Blogging with Wordpress in 5 Minutes created: 1168300767 alias: /wi07/wordpress.html categories: announcements -tags: announcements +tags: announcements, webdev, web, wordpress, cms --- Wordpress is a powerful open-source blog publishing platform.It is highly customizable with a powerful theming system and many available plugins. In this meeting I will show how to install, set up, and manage a Wordpress installation. The talk will also cover Wordpress theming and plugins. diff --git a/_posts/2007-01-25-meetings-winter-2007.md b/_posts/2007-01-25-meetings-winter-2007.md index 9393c0b22..c633fa471 100644 --- a/_posts/2007-01-25-meetings-winter-2007.md +++ b/_posts/2007-01-25-meetings-winter-2007.md @@ -3,7 +3,7 @@ layout: html/default title: 'Meetings: Winter 2007' created: 1169764800 categories: announcements -tags: announcements +tags: announcements, schedule --- We are meeting Tuesday evenings this quarter at 7:00pm in Dreese Labs room 480\. Meetings generally last about an hour and are always open to the public including nonmembers and nonstudents. For people arriving from off campus, pay parking is available in the Tuttle Park Place Parking Garage, located adjacent to Dreese Labs. Please refer the OSU map for directions: [http://www.osu.edu/map/](http://www.osu.edu/map/). diff --git a/_posts/2007-04-17-crashing-windows-vista-launch-party.md b/_posts/2007-04-17-crashing-windows-vista-launch-party.md index d7d12b190..8ee980110 100644 --- a/_posts/2007-04-17-crashing-windows-vista-launch-party.md +++ b/_posts/2007-04-17-crashing-windows-vista-launch-party.md @@ -4,7 +4,7 @@ title: Crashing Windows Vista Launch Party created: 1176796022 alias: /sp07/vista.html categories: announcements -tags: announcements +tags: announcements, microsoft, vista --- On April 17th 2007, with about a couple hours' notice, some of us gathered for an hour before the meeting to join the fun at Microsoft's Windows Vista launch party in Dreese Labs. Some pictures below, courtesy of [Alex Lingo](http://picasaweb.google.com/A.Lingo/OpenSourceClubCrashesVistaLaunchEvent): diff --git a/_posts/2007-05-16-open-source-elections.md b/_posts/2007-05-16-open-source-elections.md index e50c7da40..5fa2eb7a8 100644 --- a/_posts/2007-05-16-open-source-elections.md +++ b/_posts/2007-05-16-open-source-elections.md @@ -3,7 +3,7 @@ layout: html/default title: Open Source Elections created: 1179357459 categories: announcements -tags: announcements +tags: announcements, elections --- The Open Source Club at The Ohio State University (OSSOSU) will be holding officer elections to represent us for the next (07-08) school year. The eligibility requirements for being an officer are that you are a student at Ohio State, and that you are a member of the club (have attended at least one meeting). Graduate and undergraduates are both equals in this matter. diff --git a/_posts/2007-11-16-google-android.md b/_posts/2007-11-16-google-android.md index 302bc57f6..34687e244 100644 --- a/_posts/2007-11-16-google-android.md +++ b/_posts/2007-11-16-google-android.md @@ -3,6 +3,6 @@ layout: html/default title: Google Android created: 1195253441 categories: announcements -tags: announcements +tags: announcements, android --- Our last meeting (Nov 15) was about the Open Handset Alliance's Android. A mobile operation system and application stack. We had a demo with the Hello World / Hello Android and spent alot of the time playing with the emulator prototype. Because I feel this is a very interesting development, I personally will be working on creating some apps for the platform. In addition, Google has $10M in prizes for developers who create interesting new applications for this platform. diff --git a/_posts/2008-03-03-hacking-the-wiimote.md b/_posts/2008-03-03-hacking-the-wiimote.md index 2ae65b926..d1312c868 100644 --- a/_posts/2008-03-03-hacking-the-wiimote.md +++ b/_posts/2008-03-03-hacking-the-wiimote.md @@ -3,6 +3,6 @@ layout: html/default title: Hacking the Wiimote created: 1204605644 categories: announcements -tags: announcements +tags: announcements, hardware, wii, modding, hack --- Last week, we had a really good turnout and watched some demos of [hacking the Nintendo Wii remote](http://www.usmechatronics.com/usmgarage/WiiBot.html) to create your own virtual 3-D environment in relative to your perspective, along with a few other slick [multi-touch-screen interfaces](http://www.ted.com/index.php/talks/view/id/65), bordering on making keyboards obsolete. We had a really great turnout and are considering doing it in the future. More information is yet to come... There is also some talk about hacking the new [Eee](http://en.wikipedia.org/wiki/ASUS_Eee_PCEEE "ASUS Eee PC - Wikipedia, the free encyclopedia"), a $500 child-sized laptop similar to the [OX](http://laptop.org/laptop/ "One Laptop per Child") (One Laptop per Child campaign) with Linux pre-installed that, for the price, has some pretty impressive hardware specs, and I might add it is very light-weight. diff --git a/_posts/2008-03-27-spring-2008-first-meeting.md b/_posts/2008-03-27-spring-2008-first-meeting.md index 206de7c03..9702580a2 100644 --- a/_posts/2008-03-27-spring-2008-first-meeting.md +++ b/_posts/2008-03-27-spring-2008-first-meeting.md @@ -3,6 +3,6 @@ layout: html/default title: Spring 2008 - First Meeting created: 1206675018 categories: announcements -tags: announcements +tags: announcements, first --- We had our first meeting for the quarter in Dreese Labs room 266 at 7:00 pm. Meetings end whenever they end, with no specific time. No absolute topic was decided on, so we discussed a few random things, such as South Park creators Trey Parker and Matt Stone streaming [South Park online](http://blog.wired.com/underwire/2008/03/south-park-to-o.html) for free (where we legally watched a recent episode from Season 12, which [**does** play in Linux](/images/southpark.png) without DRM hacks), Adobe creating a web-based free express (and watered down) version of [Photoshop](https://www.photoshop.com/express/), we also spent a few minutes sharing our web-development views. The meeting was open to students and non-students alike, and pizza was served as always. Altogether we had a great turnout and I look forward to a similar turnout at our next meeting. diff --git a/_posts/2008-04-05-code-version-managment.md b/_posts/2008-04-05-code-version-managment.md index 44560e7af..da3090073 100644 --- a/_posts/2008-04-05-code-version-managment.md +++ b/_posts/2008-04-05-code-version-managment.md @@ -3,6 +3,6 @@ layout: html/default title: Code Version Managment created: 1207421013 categories: announcements -tags: announcements +tags: announcements, vc, version control, git --- We are meeting Thursday, April 10th, at 7:00 in Dreese Labs room 266\. The topic for our meeting is source code version control, and what works best for , and there has already been much traffic over this on our [mailing list](http://mail.cse.ohio-state.edu/pipermail/opensource/2008-April/thread.html). Subtopics so far include [bitkeeper](http://www.bitkeeper.com/), [cvs](http://ximbiot.com/cvs/wiki/), [git](http://git.or.cz/), [Google Code](http://code.google.com/hosting/), [Mercurial](http://www.selenic.com/mercurial/wiki/), [svn](http://subversion.tigris.org/), [trac](http://trac.edgewall.org/), and open discussion of any other source code management programs not yet mentioned that deserve recognition. diff --git a/_posts/2008-07-29-osuwireless-in-ubuntu.md b/_posts/2008-07-29-osuwireless-in-ubuntu.md index 38abe5599..1cf728d76 100644 --- a/_posts/2008-07-29-osuwireless-in-ubuntu.md +++ b/_posts/2008-07-29-osuwireless-in-ubuntu.md @@ -4,7 +4,7 @@ title: osuwireless in Ubuntu created: 1217362629 alias: [/wireless, /wireless.html, /wireless_0.html] categories: tutorials -tags: tutorials +tags: tutorials, wifi, osuwireless, wireless --- A former member of our club, Paul Betts, created an [excellent guide](http://blog.paulbetts.org/index.php/2007/01/27/the-end-all-definitive-guide-to-getting-wireless-working-in-ubuntu-edgy-eft/) explaining how to connect to wireless in Ubuntu. Find a summarized guide for those who aren't having trouble with their closed-source drivers below. diff --git a/_posts/2008-09-15-10-11-08-ohio-linux-fest.md b/_posts/2008-09-15-10-11-08-ohio-linux-fest.md index 86f21a93e..b09fdfdfe 100644 --- a/_posts/2008-09-15-10-11-08-ohio-linux-fest.md +++ b/_posts/2008-09-15-10-11-08-ohio-linux-fest.md @@ -3,6 +3,6 @@ layout: html/default title: "[10/11/08] Ohio Linux Fest" created: 1221497091 categories: announcements -tags: announcements +tags: announcements, ohio linuxfest --- The Open Source Club is going together to the Ohio Linuxfest this year on Saturday, October 11th. The first presentation is at 9:30 am. Rather than drive/taxi, bring your Buck-IDtm and you can [ride COTA](http://www.google.com/maps?ie=UTF8&f=d&z=15&ll=39.962418,-83.00055&spn=0.01018,0.013733&saddr=1813+N+High+St,+Columbus&daddr=400+N+High+St,+Columbus&date=10-11-2008&time=9:30+am&ttype=arr&dirflg=r) for free... diff --git a/_posts/2008-10-01-10-2-08-introduction-to-linux.md b/_posts/2008-10-01-10-2-08-introduction-to-linux.md index d7a6c39ea..917342858 100644 --- a/_posts/2008-10-01-10-2-08-introduction-to-linux.md +++ b/_posts/2008-10-01-10-2-08-introduction-to-linux.md @@ -3,7 +3,7 @@ layout: html/default title: "[10/2/08] Introduction to Linux" created: 1222897939 categories: announcements -tags: announcements +tags: announcements, linux --- This Thursday, at 7:00 pm in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266, we will run through an introduction to Linux, in a way that any computer user - new or veteran - can understand. Some basic points to be discussed are: diff --git a/_posts/2008-10-22-wiimote-hacking-10-23-08.md b/_posts/2008-10-22-wiimote-hacking-10-23-08.md index b0d510a06..acb61b494 100644 --- a/_posts/2008-10-22-wiimote-hacking-10-23-08.md +++ b/_posts/2008-10-22-wiimote-hacking-10-23-08.md @@ -3,6 +3,6 @@ layout: html/default title: Wiimote Hacking [10/23/08] created: 1224659953 categories: announcements -tags: announcements +tags: announcements, hardware, wii, modding, hack --- This Thursday we will be taking a look at the Nintendo Wii remote (or Wiimote) and giving a brief overview of how it works. After that we will look at some of the Wiimote hacks that have been done by other people and hopefully come up with an idea for a new hack that we can start working on as a club project. We will be meeting at 7pm in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266. diff --git a/_posts/2008-11-04-interface-design-11-06-08.md b/_posts/2008-11-04-interface-design-11-06-08.md index 0690c76d2..6c1c176fb 100644 --- a/_posts/2008-11-04-interface-design-11-06-08.md +++ b/_posts/2008-11-04-interface-design-11-06-08.md @@ -4,6 +4,6 @@ title: Interface Design [11/06/08] created: 1225857003 alias: /au08/interface_design.html categories: announcements -tags: announcements +tags: announcements, ui --- This Thursday we will be having a guest speaker come in and teach us about interface design. The speaker will be Matthew Stanford, who is currently working on his masters degree over in the design department. You may think that design isn't important, but I have learned from experience that your really awesome code will go unnoticed if you don't have a nice interface to go with it. I urge you to come if you can because this is a very important presentation that will help everyone make their work more presentable. The meeting will be at 7p in 266 Dreese. diff --git a/_posts/2008-11-11-openvpn.md b/_posts/2008-11-11-openvpn.md index f0152b513..966fc8b5d 100644 --- a/_posts/2008-11-11-openvpn.md +++ b/_posts/2008-11-11-openvpn.md @@ -3,7 +3,7 @@ layout: html/default title: OpenVPN created: 1226428832 categories: announcements -tags: announcements +tags: announcements, openvpn alias: /au08/openvpn.html --- This Thursday (November 13th), Alex is presenting on [OpenVPN](http://openvpn.org/ "http://openvpn.org/") and how to set up a simple OpenVPN client/server connection. As usual, the meeting is at 7:00 pm in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266. diff --git a/_posts/2008-11-18-this-week-in-slashdot-11-20-08.md b/_posts/2008-11-18-this-week-in-slashdot-11-20-08.md index f328a6813..67ae06a56 100644 --- a/_posts/2008-11-18-this-week-in-slashdot-11-20-08.md +++ b/_posts/2008-11-18-this-week-in-slashdot-11-20-08.md @@ -3,6 +3,6 @@ layout: html/default title: This Week in Slashdot [11/20/08] created: 1227024257 categories: announcements -tags: announcements +tags: announcements, slashdot --- This Thursday, November 20th, for the first time in over a year, Alex is doing _This Week in Slashdot_. Prior knowledge of Slashdot or familiarity with current events are not required. Random discussion is encouraged. Meeting location is [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266. diff --git a/_posts/2008-12-07-autumn-2008-meetings.md b/_posts/2008-12-07-autumn-2008-meetings.md index e7e95a5d9..16c08c502 100644 --- a/_posts/2008-12-07-autumn-2008-meetings.md +++ b/_posts/2008-12-07-autumn-2008-meetings.md @@ -3,7 +3,7 @@ layout: html/default title: Autumn 2008 Meetings created: 1228661455 categories: announcements -tags: announcements +tags: announcements, schedule --- Below is a list of meetings from Autumn 2008: diff --git a/_posts/2009-02-05-project-stuff-2-5-09.md b/_posts/2009-02-05-project-stuff-2-5-09.md index a17df6d06..2c03b9ce4 100644 --- a/_posts/2009-02-05-project-stuff-2-5-09.md +++ b/_posts/2009-02-05-project-stuff-2-5-09.md @@ -3,7 +3,7 @@ layout: html/default title: Project Stuff [2/5/09] created: 1233850998 categories: announcements -tags: announcements +tags: announcements, project --- Tonight (Thursday, 2/5 ) we will be doing the impossible and making more forward progress on a club project. There will also be some people from the design college coming to talk about projects they need help with, so while they are there we will milk some ideas for an interface from them. diff --git a/_posts/2009-02-18-xbox-360-modding-2-19-09.md b/_posts/2009-02-18-xbox-360-modding-2-19-09.md index 26bd72b8a..0e95d61cd 100644 --- a/_posts/2009-02-18-xbox-360-modding-2-19-09.md +++ b/_posts/2009-02-18-xbox-360-modding-2-19-09.md @@ -4,7 +4,7 @@ title: Xbox 360 Modding [2/19/09] created: 1235019200 alias: /wi09/xbox360.html categories: announcements -tags: announcements +tags: announcements, hardware, xbox, modding --- This Thursday [2/19/09] we'll be taking apart an Xbox 360 and looking at its insides. I'll also be showing how I did some mods to make my Xbox look a little sexier. By the end of this meeting you'll have all the knowledge you need to go home and void your warranty! diff --git a/_posts/2009-02-21-wifi-hacking-2-26-09.md b/_posts/2009-02-21-wifi-hacking-2-26-09.md index 7ec7b5055..b751578b3 100644 --- a/_posts/2009-02-21-wifi-hacking-2-26-09.md +++ b/_posts/2009-02-21-wifi-hacking-2-26-09.md @@ -4,7 +4,7 @@ title: Wifi Hacking [2/26/09] created: 1235244304 alias: /au08/wiimote.html categories: announcements -tags: announcements +tags: announcements, wifi, wireless, security, privacy --- This Thursday [2/26], Alek will be showing us how to hack into a wifi network. diff --git a/_posts/2009-03-04-ssh-tunneling-tor-proxies-etc-3-5-09.md b/_posts/2009-03-04-ssh-tunneling-tor-proxies-etc-3-5-09.md index 84968f8b8..a6a275916 100644 --- a/_posts/2009-03-04-ssh-tunneling-tor-proxies-etc-3-5-09.md +++ b/_posts/2009-03-04-ssh-tunneling-tor-proxies-etc-3-5-09.md @@ -4,7 +4,7 @@ title: SSH tunneling, TOR, proxies, etc. [3/5/09] created: 1236210561 alias: /wi09/ssh_tunneling.html categories: announcements -tags: announcements +tags: announcements, networking --- This Thursday [3/5/09], brought to you by Alek Rollyson, we talked about certain important internet related topics. How does one go to work without leaving his house? How does one completely mask himself to the internet? How does one hide his traffic from _even his own ISP_? All of these are accomplished by what we discussed. Specifically we talked about (and covered to some extent), diff --git a/_posts/2009-04-09-effective-sshd_config-04-09-09.md b/_posts/2009-04-09-effective-sshd_config-04-09-09.md index b44faaa55..a685a062f 100644 --- a/_posts/2009-04-09-effective-sshd_config-04-09-09.md +++ b/_posts/2009-04-09-effective-sshd_config-04-09-09.md @@ -4,7 +4,7 @@ title: Effective sshd_config [04/09/09] created: 1239290944 alias: /sp09/sshd_config.html categories: announcements -tags: announcements +tags: announcements, ssh --- This Thursday, April 9th, in Dreese **317** , Alek Rollyson will be giving a talk on how to secure your shell server through effective configuration. diff --git a/_posts/2009-04-13-intro-to-python-4-16-09.md b/_posts/2009-04-13-intro-to-python-4-16-09.md index 83262fcb7..501b95566 100644 --- a/_posts/2009-04-13-intro-to-python-4-16-09.md +++ b/_posts/2009-04-13-intro-to-python-4-16-09.md @@ -4,7 +4,7 @@ title: Intro to Python [4/16/09] created: 1239656021 alias: /sp09/python.html categories: announcements -tags: announcements +tags: announcements, python, language --- This Thursday, April 16th, Catherine Devlin will be giving us an introduction to the Python programming language. diff --git a/_posts/2009-04-19-advanced-bash-scripting-04-23-09.md b/_posts/2009-04-19-advanced-bash-scripting-04-23-09.md index 937dca539..1a7b72f74 100644 --- a/_posts/2009-04-19-advanced-bash-scripting-04-23-09.md +++ b/_posts/2009-04-19-advanced-bash-scripting-04-23-09.md @@ -4,7 +4,7 @@ title: Advanced Bash Scripting [04/23/09] created: 1240157004 alias: /advanced-bash.html categories: announcements -tags: announcements +tags: announcements, bash, shell script --- This Thursday, 4/23/09, Tom Henretty came to show us some more advanced bash techniques. Tom demonstrated some of the stuff that Jim Dinan didn't have time to get to back when he did his [awesome bash talk](/bash-au08) in December. diff --git a/_posts/2009-04-24-computer-vision-and-robotics.md b/_posts/2009-04-24-computer-vision-and-robotics.md index 146a158c4..7cb38a6be 100644 --- a/_posts/2009-04-24-computer-vision-and-robotics.md +++ b/_posts/2009-04-24-computer-vision-and-robotics.md @@ -4,7 +4,7 @@ title: Computer Vision & Robotics created: 1240605608 alias: /robotics.html categories: announcements -tags: announcements +tags: announcements, robotics, computer vision --- This Thursday, Robotics guru Scott Preston will show us how to engineer and program mobile robots with web cameras for vision and microcontrollers for communicating with onboard sensors, all from an Ubuntu PC. diff --git a/_posts/2009-05-15-embedded-control-for-art-and-music.md b/_posts/2009-05-15-embedded-control-for-art-and-music.md index f379c623c..62ba9ef19 100644 --- a/_posts/2009-05-15-embedded-control-for-art-and-music.md +++ b/_posts/2009-05-15-embedded-control-for-art-and-music.md @@ -3,7 +3,7 @@ layout: html/default title: Embedded Control for Art & Music created: 1242397207 categories: announcements -tags: announcements +tags: announcements, art, music, audio, embedded --- On Tuesday May 19th, Embedded designer, musician, and ex-Imagineer Jamie Robertson will be giving a talk on embedded systems in the art and entertainment world. diff --git a/_posts/2009-05-24-2009-2010-elections.md b/_posts/2009-05-24-2009-2010-elections.md index fed5fbff1..0fe0c3a5a 100644 --- a/_posts/2009-05-24-2009-2010-elections.md +++ b/_posts/2009-05-24-2009-2010-elections.md @@ -3,7 +3,7 @@ layout: html/default title: 2009-2010 Elections created: 1243199895 categories: announcements -tags: announcements +tags: announcements, elections --- This Thursday (May 28th), in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 317, we elected club officers for the 2009-2010 year. diff --git a/_posts/2009-05-29-updating-the-constitution.md b/_posts/2009-05-29-updating-the-constitution.md index 2acd1a781..e2717d88a 100644 --- a/_posts/2009-05-29-updating-the-constitution.md +++ b/_posts/2009-05-29-updating-the-constitution.md @@ -4,6 +4,6 @@ title: Updating the Constitution created: 1243608752 alias: /sp09/updating-constitution.html categories: announcements -tags: announcements +tags: announcements, constitution --- This Thursday, June 4th, we are reviewing and revising the club constitution, as well as working out the logistics of what we will be doing in the next year. Please come ready to offer feedback. Also, as of today the website is open for commenting. Please post any ideas about changes you have on the constitution page. Registration required. diff --git a/_posts/2009-05-31-revising-the-constitution.md b/_posts/2009-05-31-revising-the-constitution.md index 37aac2492..c730a3716 100644 --- a/_posts/2009-05-31-revising-the-constitution.md +++ b/_posts/2009-05-31-revising-the-constitution.md @@ -4,7 +4,7 @@ title: Revising the Constitution created: 1243816100 alias: /revising-constitution.html categories: announcements -tags: announcements +tags: announcements, constitution --- This Thursday, June 4th, the Open Source Club leaders for the 2009-2010 school year will be discussing changes for the following year. All club members are strongly encouraged to use this opportunity to give their feedback about how the next year should be run. diff --git a/_posts/2009-08-04-welcome-to-torvalds.md b/_posts/2009-08-04-welcome-to-torvalds.md index 3c8941306..7ae24b49c 100644 --- a/_posts/2009-08-04-welcome-to-torvalds.md +++ b/_posts/2009-08-04-welcome-to-torvalds.md @@ -3,6 +3,6 @@ layout: html/default title: Welcome to Torvalds! created: 1249405593 categories: announcements -tags: announcements +tags: announcements, server --- Welcome to our new server, Torvalds. Everything should be as it was on the old website (as of 8/4/09) except for a newer, hopefully less buggy version of Drupal. Enjoy! diff --git a/_posts/2009-09-21-9-24-2009-first-meeting-of-the-year.md b/_posts/2009-09-21-9-24-2009-first-meeting-of-the-year.md index 9760e3f18..ce5facf71 100644 --- a/_posts/2009-09-21-9-24-2009-first-meeting-of-the-year.md +++ b/_posts/2009-09-21-9-24-2009-first-meeting-of-the-year.md @@ -3,6 +3,6 @@ layout: html/default title: 9/24/2009 - First Meeting of the Year created: 1253591727 categories: announcements -tags: announcements +tags: announcements, first --- This Thursday, in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266, we had our first meeting of the 2009/2010 school year. We have many things to do at this meeting, including drafting/revising the constitution, and discussing meeting topics for this quarter. Please note: We are located in Dreese Labs room **266**. This is not in the main part of Dreese, and easily confused with [Baker Systems and Engineering](http://www.osu.edu/map/building.php?building=280). The room is near the bridge connecting Dreese and Baker, and to the west. To get there, either enter through Dreese, cross the bridge, and turn right; or enter through Baker and turn left down the long hallway before the bridge. diff --git a/_posts/2009-09-28-10-1-2009-intro-to-linux-and-an-overview-of-distros.md b/_posts/2009-09-28-10-1-2009-intro-to-linux-and-an-overview-of-distros.md index ac7abd40e..ab0681138 100644 --- a/_posts/2009-09-28-10-1-2009-intro-to-linux-and-an-overview-of-distros.md +++ b/_posts/2009-09-28-10-1-2009-intro-to-linux-and-an-overview-of-distros.md @@ -3,6 +3,6 @@ layout: html/default title: 10/1/2009 - Intro to Linux and an Overview of Distros created: 1254157899 categories: announcements -tags: announcements +tags: announcements, linux, distro, distributions --- This week Alek will be giving an introduction to Linux and an overview a good chunk of the Linux distributions that one has to choose from. We will go over all the pros, cons, features, strengths, setup nuances, requirements, and finally how to pick the perfect distro for your needs. After the overview we will then run through a graphical install of Ubuntu and then a text based install of Debian in order to both show the differences between the distributions and how text and graphical installs differ. Our meeting will be on Thursday October 1st in Dreese Labs room 266 and, as always, the meeting is open to everyone. We especially welcome newcomers to this meeting so we can introduce you to the world of Linux and how to get started! Bring any questions you have and we will be happy to answer. Attached below are the presentation slides from this meeting. There is both an OpenDocument format and a Microsoft Powerpoint format. Enjoy! diff --git a/_posts/2009-10-07-open-source-club-irc-rules.md b/_posts/2009-10-07-open-source-club-irc-rules.md index d9a5f6429..807b582be 100644 --- a/_posts/2009-10-07-open-source-club-irc-rules.md +++ b/_posts/2009-10-07-open-source-club-irc-rules.md @@ -3,7 +3,7 @@ layout: html/default title: Open Source Club IRC Rules created: 1254957896 categories: announcements -tags: announcements +tags: announcements, irc alias: [/irc-rules.html, /rules.html] --- diff --git a/_posts/2009-10-09-scott-merrill-from-columbus-freegeek.md b/_posts/2009-10-09-scott-merrill-from-columbus-freegeek.md index 73d2fa795..c72609415 100644 --- a/_posts/2009-10-09-scott-merrill-from-columbus-freegeek.md +++ b/_posts/2009-10-09-scott-merrill-from-columbus-freegeek.md @@ -4,6 +4,6 @@ title: Scott Merrill from Columbus FreeGeek created: 1255120982 alias: /au09/freegeek.html categories: announcements -tags: announcements +tags: announcements, freegeek --- On Thursday October 15th, 2009, Scott Merrill from Columbus FreeGeek presented on how to get involved in the tech scene here in Columbus. FreeGeek Columbus provides computers and training for limited-resource populations in Central Ohio through redistribution of used equipment and the use of Free Software. FreeGeek Columbus is committed to Free Software, responsible electronics recycling, and community engagement. In his presentation, Scott gave us a brief overview of who FreeGeek is and what they do, touch upon the hazards of electronic waste, describe how FreeGeek rewards volunteers, and share how they're advocating Ubuntu Linux to people. After his presentation Scott answered everyone's questions! As always, there will be pizza! **Update:**At the end of this meeting, we voted on finalizing some constitutional amendments from [last year](/node/88). Find changes attached. diff --git a/_posts/2009-10-11-10-22-2009-all-about-python.md b/_posts/2009-10-11-10-22-2009-all-about-python.md index 72b1710c7..5166bbc13 100644 --- a/_posts/2009-10-11-10-22-2009-all-about-python.md +++ b/_posts/2009-10-11-10-22-2009-all-about-python.md @@ -3,6 +3,6 @@ layout: html/default title: 10/22/2009 - All About Python created: 1255302599 categories: announcements -tags: announcements +tags: announcements, python, language --- On Thursday October 22nd, 2009, in Dreese Labs 266, Michael Yanovich and Brian Kennedy will be presenting to the club on the programming language Python. Michael will be demonstrating the basics of building a Python program, beginning with a Hello World in the interpreter and moving over to building Hello World as a stand-a-lone file. Then, he'll cover functions, documentation, and linking files together. Then, Brian will be demonstrating how to use Python to solve problems for class, work, and research as well as teaching the basic use of some powerful scientific and mathematical tools collected in the SciPy module. diff --git a/_posts/2009-10-11-10-29-2009-linux-kernel-configuration.md b/_posts/2009-10-11-10-29-2009-linux-kernel-configuration.md index ddc008d61..8d47394fb 100644 --- a/_posts/2009-10-11-10-29-2009-linux-kernel-configuration.md +++ b/_posts/2009-10-11-10-29-2009-linux-kernel-configuration.md @@ -3,6 +3,6 @@ layout: html/default title: 10/29/2009 - Linux Kernel Configuration created: 1255303131 categories: announcements -tags: announcements +tags: announcements, linux, kernel --- On Thursday October 29th, 2009, at 7PM in Dreese Labs room 266, we will be presenting on how to configure the Linux kernel. If you have ever been lost when trying to compile or make menuconfig just confused you so much that you wanted to pull your hair out, then this meeting is for you. A few of our members will be making a collaborative effort on this topic so bring your questions to us and we will do our best to help. We will be going over how to compile a kernel the Debian way, the Gentoo way, and we also will be giving a general overview of the process as a whole so that it can be better understood. Bring your questions and concerns, we will be happy to address them. diff --git a/_posts/2009-10-11-11-12-2009-mobile-software-development-forum.md b/_posts/2009-10-11-11-12-2009-mobile-software-development-forum.md index 91b3cb7ed..7f8a9137f 100644 --- a/_posts/2009-10-11-11-12-2009-mobile-software-development-forum.md +++ b/_posts/2009-10-11-11-12-2009-mobile-software-development-forum.md @@ -4,6 +4,6 @@ title: 11/12/2009 - Mobile Software Development Forum created: 1255304031 alias: /au09/mobile-dev-forum.html categories: announcements -tags: announcements +tags: announcements, mobile, development --- On Thursday November 12th, 2009, we will be hosting a discussion on the merits, ideologies, pros, cons, and whatever else that can be discussed about mobile software development. WebKit, Android, Midp, and etc are all fair game for discussion so bring your questions, rants, and raves to the meeting so we can all have a nice old fashioned forum discussion. diff --git a/_posts/2009-10-11-11-5-2009-source-control-lightning-talks.md b/_posts/2009-10-11-11-5-2009-source-control-lightning-talks.md index 5468221ed..0112d6728 100644 --- a/_posts/2009-10-11-11-5-2009-source-control-lightning-talks.md +++ b/_posts/2009-10-11-11-5-2009-source-control-lightning-talks.md @@ -3,7 +3,7 @@ layout: html/default title: 11/5/2009 - Source Control Lightning Talks created: 1255303757 categories: announcements -tags: announcements +tags: announcements, git, vc, version control, svn --- On Thursday November 5th, 2009, we will be holding a lightning talk session on a multitude of different source control programs. Lightning talks will consist of several different presentations by different presenters over the course of the meeting time. We will put more info on here about how long the meeting will last and how many presentations there will be once we get more info on who wants to present on what topics. diff --git a/_posts/2009-10-11-12-3-2009-general-lightning-talks.md b/_posts/2009-10-11-12-3-2009-general-lightning-talks.md index 1a86e8ad6..f9d2c7a70 100644 --- a/_posts/2009-10-11-12-3-2009-general-lightning-talks.md +++ b/_posts/2009-10-11-12-3-2009-general-lightning-talks.md @@ -3,7 +3,7 @@ layout: html/default title: 12/3/2009 - General Lightning Talks created: 1255307749 categories: announcements -tags: announcements +tags: announcements, lightning talk --- On Thursday December 3rd, 2009, we will be hosting another lightning talk session that will be compromised of subjects coming from all areas. Lightning talks will consist of several different presentations by different presenters over the course of the meeting time. We will put more info on here about how long the meeting will last and how many presentations there will be once we get more info on who wants to present on what topics. diff --git a/_posts/2009-11-04-linux-install-fest.md b/_posts/2009-11-04-linux-install-fest.md index 5c4bab43e..24f496afa 100644 --- a/_posts/2009-11-04-linux-install-fest.md +++ b/_posts/2009-11-04-linux-install-fest.md @@ -3,7 +3,7 @@ layout: html/default title: Linux Install Fest created: 1257379345 categories: announcements -tags: announcements +tags: announcements, linux, installfest --- For those who don't know, Microsoft had (is having) a Windows 7 install fest. On November 5, 2009 after our regularly scheduled meeting The Open Source Club will likewise be hosting an Install-Fest of free, open source software. This is rather last minute, but you won't be disappointed if you show up! We are giving away free and open-source applications and operating systems. Plus if you are really eager to getting the software or even an operating system on your laptop we will be gladly installing them for you. diff --git a/_posts/2009-11-17-vim.md b/_posts/2009-11-17-vim.md index a386a6642..0bd934616 100644 --- a/_posts/2009-11-17-vim.md +++ b/_posts/2009-11-17-vim.md @@ -3,6 +3,6 @@ layout: html/default title: Vim! created: 1258500060 categories: announcements -tags: announcements +tags: announcements, vim, text editor --- This Thursday November 19th, 2009, at 7PM in Dreese Labs room 266, Daniel Thau will be giving a presentation on how to wield the mighty power of Vim. He will give an overview of the history, origin and explanation of vim, a brief comparison to Emacs, as well as basic and advanced usage of Vim. Some of the features he will be presenting include q-recording, window splitting/tabs/buffers, advanced copy/paste buffers, line completion, some cool ex commands, and other more advanced stuff most people don't know/use. Come join us and learn how to better use this awesome text editor. diff --git a/_posts/2009-12-07-projects.md b/_posts/2009-12-07-projects.md index a8364ebec..64ec79e16 100644 --- a/_posts/2009-12-07-projects.md +++ b/_posts/2009-12-07-projects.md @@ -3,7 +3,7 @@ layout: html/default title: Projects created: 1260213317 categories: announcements -tags: announcements +tags: announcements, projects --- This page aims to be a comprehensive list of projects in progress. diff --git a/_posts/2009-12-18-emacs.md b/_posts/2009-12-18-emacs.md index 19ffc6922..5e5c74ad9 100644 --- a/_posts/2009-12-18-emacs.md +++ b/_posts/2009-12-18-emacs.md @@ -4,6 +4,6 @@ title: emacs created: 1261170094 alias: /wi10/emacs.html categories: announcements -tags: announcements +tags: announcements, emacs, text editor --- This Thursday, February 25th, I, Professor Ed Overman, a professor in the math department at Ohio State University, will be presenting on emacs in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266. I began using an 026 keypunch machine in my student days (which clearly did not need an editor). My first interactive time-sharing experience was using CITRAN (which was commonly known as SHITRAN). My first _pleasant_ time-sharing experience was using TECO (TExt COrrector) and SOS (Son Of Stopgap) on Digital Equipment Corporation computers using a 110 baud interactive teletype machine. (The joke was that it was very difficult to differentiate TECO commands from line noise - since phone lines were very noisy in the old days.) Emacs (Editor MACroS) began as a set of macros for TECO and then grew to be the hydralike creature it is today. I will show you the commands I commonly use in writing programs (I will even hand out my _cheat sheet_ for these commands on a sheet of paper!) and hopefully discuss the commands you would like to use. I will come prepared with the emacs reference manual and lisp manual! diff --git a/_posts/2009-12-18-wireless-hacking.md b/_posts/2009-12-18-wireless-hacking.md index d769ea6eb..f6d595b39 100644 --- a/_posts/2009-12-18-wireless-hacking.md +++ b/_posts/2009-12-18-wireless-hacking.md @@ -3,6 +3,6 @@ layout: html/default title: Wireless hacking created: 1261170795 categories: announcements -tags: announcements +tags: announcements, wifi, wireless, security, privacy --- This Thursday, January 7th, at 7PM in Dreese Labs room 266, we are doing a talk and demonstration on hacking wireless networks. There will be 3 parts to the discussion. First, Brian Swaney will be talking about the dangers of poor security. He will go over why wireless communication is inherently insecure, what types of attacks are possible on wireless networks, some techniques common people use to try and secure their networks, and why they ultimately fail. Alek Rollyson will then continue on and talk about the behind the scenes technicalities of the attacks that we will be presenting. He will go over some specific weaknesses in protocols used by wireless routers, how they might be exploited, and how to protect oneself. Finally, Michael Yanovich will show us how to use the aircrack-ng suite to actually perform the attacks. He will show how to exploit all the common mistakes users make in securing their network, all using the free, open source aircrack suite. We look forward to seeing you all there. **Disclaimer:** This presentation is for educational purposes only. Use of these techniques in a manner other than how they are presented may be in violation of state/federal law, and also totally uncool. We do not condone their use for illegal or nefarious purposes. diff --git a/_posts/2010-01-11-this-week-in-slashdot.md b/_posts/2010-01-11-this-week-in-slashdot.md index 2b5d97adf..d2f246c97 100644 --- a/_posts/2010-01-11-this-week-in-slashdot.md +++ b/_posts/2010-01-11-this-week-in-slashdot.md @@ -3,6 +3,6 @@ layout: html/default title: This Week in Slashdot created: 1263260800 categories: announcements -tags: announcements +tags: announcements, slashdot --- This Thursday, January 14th, at 7PM in Dreese Labs 266, Alex Lingo will be presenting an old club favorite known as "This Week in Slashdot". Slashdot (commonly abbreviated as /.) is a website located at http://slashdot.org that deals in news for the nerdy. Readers submit articles which are then accepted or rejected by editors and then published on the site. From there, the readers have huge discussions about every aspect of the article which can be very funny/interesting/insightful/etc and oft prove to be a very good read. Historically, the site has a history of having a pro open source bias, which is why we like it. Alex would like to take this format and apply it to a club meeting so that we can have similar discussions amongst our members in real time. No prior knowledge of /., or goings on in the world, is necessary to participate. Read slashdot prior to the meeting if you wish and bring your thoughts, opinions, ideas, rants, raves and what have you. I hope to see you all there, we love a good discussion! diff --git a/_posts/2010-01-18-virtualization.md b/_posts/2010-01-18-virtualization.md index 411af5b93..97b4a4dc8 100644 --- a/_posts/2010-01-18-virtualization.md +++ b/_posts/2010-01-18-virtualization.md @@ -4,6 +4,6 @@ title: Virtualization created: 1263869477 alias: /wi10/virtualization.html categories: announcements -tags: announcements +tags: announcements, virtualization --- This Thursday, January 21st at 7PM in Dreese Labs 266, we will have a few people presenting on the topic of virtualization. Dan Thau will be talking about chroot, what chroot is and what chroot is not, as well as give examples for usage and a demo or two. Matt Meinwald will demonstrate Xen, a popular server virtualization system. He will give some background, including the difference between paravirtualization and full machine virtualization, then will show a demo of creating and administering a virtual machine. Alek Rollyson will cover desktop related virtualization tools such as Virtualbox and VMware. He will go over the features of these programs, what systems they support, and how to configure and administer virtual desktops. diff --git a/_posts/2010-01-25-command-line-applications.md b/_posts/2010-01-25-command-line-applications.md index 3a4b4dd7c..172d3ea54 100644 --- a/_posts/2010-01-25-command-line-applications.md +++ b/_posts/2010-01-25-command-line-applications.md @@ -3,7 +3,7 @@ layout: html/default title: Command Line Applications created: 1264452629 categories: announcements -tags: announcements +tags: announcements, cli, terminal --- This Thursday, March 11th at 7PM in Dreese Labs 266, we will be holding a lightning talk session covering a multitude of command line applications. The lightning talk format consists of short talks that focus on a single topic and are typically given by multiple presenters in succession. If you are looking for a lightweight program to get the job done and don't need a graphical interface, be it checking your mail, downloading torrents, chatting on irc, editing text, or anything else, this is definitely the meeting for you. If you have found a command line program that has grasped your interest, consider coming in and sharing with the rest of the club as we are all looking for the next best thing. A current list of programs that are going to be covered is in a list below: diff --git a/_posts/2010-01-25-gimp-spring-2010.md b/_posts/2010-01-25-gimp-spring-2010.md index 02cc94bd9..ac5d1426e 100644 --- a/_posts/2010-01-25-gimp-spring-2010.md +++ b/_posts/2010-01-25-gimp-spring-2010.md @@ -3,7 +3,7 @@ layout: html/default title: GIMP - Spring 2010 created: 1264452298 categories: announcements -tags: announcements +tags: announcements, raster, image manipulation, photoshop --- **Notice:** Due to inexcusably poor service from classroom services, the meeting was moved to Dreese Lab 305 for the current meeting. We apologize for the short notice, and plan on inquiring into why our room was overbooked without our knowledge. diff --git a/_posts/2010-01-25-gnu-utilities.md b/_posts/2010-01-25-gnu-utilities.md index 64fbbfee9..380322039 100644 --- a/_posts/2010-01-25-gnu-utilities.md +++ b/_posts/2010-01-25-gnu-utilities.md @@ -4,7 +4,7 @@ title: GNU Utilities created: 1264449998 alias: /wi10/gnu-utils.html categories: announcements -tags: announcements +tags: announcements, gnu --- This Thursday January 28th, at 7PM in Dreese Labs 266, Morgan Goose will be showing off a multitude of GNU Utilties. Here is Morgan's synopsis of his talk: diff --git a/_posts/2010-01-25-intermediate-and-advanced-python.md b/_posts/2010-01-25-intermediate-and-advanced-python.md index 568a875e4..585f392c0 100644 --- a/_posts/2010-01-25-intermediate-and-advanced-python.md +++ b/_posts/2010-01-25-intermediate-and-advanced-python.md @@ -3,6 +3,6 @@ layout: html/default title: Intermediate and Advanced Python created: 1264450711 categories: announcements -tags: announcements +tags: announcements, python, language --- Thursday February 4th, at 7PM in Dreese Labs 266, Michael Yanovich and Morgan Goose will be demonstrating some intermediate and advanced uses of Python. They have several tips and tricks to demonstrate, so come out and learn more about the Python language! Morgan's [slides](http://morgangoose.com/p/tool_oriented_python/) are available and notes are attached. diff --git a/_posts/2010-01-25-mini-hackathon.md b/_posts/2010-01-25-mini-hackathon.md index 807295d73..2eca931cc 100644 --- a/_posts/2010-01-25-mini-hackathon.md +++ b/_posts/2010-01-25-mini-hackathon.md @@ -4,6 +4,6 @@ title: Mini Hackathon! created: 1264452015 alias: /wi10/hackathon.html categories: announcements -tags: announcements +tags: announcements, hackathon --- Due to mitigating circumstances we will not be having our [maximizing battery talk](/batterylife-wi10) this week. In lieu of this we will be holding a hackathon in its stead. This ***Thursday, February 18th at 7PM in Dreese Labs 266***, we will be hacking on all sorts of code. We have several projects going at the moment that range from python to C and hackers of all skill levels are invited. Whether you know nothing about programming or are a kernel wizard come join us and play around with some code. There will be no formal structure to this meeting, just bring your laptop and/or your brain and you will be able to hack along. You may want to familiarize yourself slightly with the projects in [gitweb](/git) and find one or more you may want to work on. Of course you could also bring your own. As always, there will be pizza. diff --git a/_posts/2010-02-16-maximizing-battery-life-in-linux.md b/_posts/2010-02-16-maximizing-battery-life-in-linux.md index 71e530859..5f6594442 100644 --- a/_posts/2010-02-16-maximizing-battery-life-in-linux.md +++ b/_posts/2010-02-16-maximizing-battery-life-in-linux.md @@ -4,6 +4,6 @@ title: Maximizing Battery Life in Linux created: 1266300595 alias: /wi10/batterylife.html categories: announcements -tags: announcements +tags: announcements, battery life --- Thursday March 4th, at 7PM in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266, Dan Thau will be showing us how to maximize your laptop's battery life in Linux. You may be wondering once you made the switch from Windows or Mac why your laptop hasn't been lasting as long without power. Dan will be showing common battery stretching techniques as well as some extreme measures you can take in order to get the most out of your laptop battery. diff --git a/_posts/2010-03-18-wireless-printing-in-linux.md b/_posts/2010-03-18-wireless-printing-in-linux.md index 043f79579..0c81e7a9b 100644 --- a/_posts/2010-03-18-wireless-printing-in-linux.md +++ b/_posts/2010-03-18-wireless-printing-in-linux.md @@ -4,7 +4,7 @@ title: Wireless Printing in Linux created: 1268958955 alias: /printing.html categories: announcements -tags: announcements +tags: announcements, printing --- If you go to Uniprint's [wireless printing](http://uniprint.osu.edu/printman/osuprintmap/) page, you'll see it is possible to print to most public printers from anywhere on OSU's network, such as osuwireless. However, Uniprint only supports Mac and Windows; Linux users are out of luck and left with the options of either installing a new operating system to print their documents or using a lab computer (if available). Therefore, we in the Open Source Club have decided to publish a tutorial so fellow Linux users can print to their libraries from their laptops or dorm rooms just like Windows/Mac users can. diff --git a/_posts/2010-04-05-language-lightning-talks.md b/_posts/2010-04-05-language-lightning-talks.md index 0f0e61d59..e3de7ac9c 100644 --- a/_posts/2010-04-05-language-lightning-talks.md +++ b/_posts/2010-04-05-language-lightning-talks.md @@ -3,7 +3,7 @@ layout: html/default title: Language Lightning Talks created: 1270518439 categories: announcements -tags: announcements +tags: announcements, lightning talk, language --- This **Thursday, April 8th at 7PM in Dreese Labs 305,** we will be holding a lightning talk session focusing on programming languages. It came to our attention that knowledge of different languages was fragmented amongst meeting goers so we decided that we should each take turns introducing each other to languages that we have learned and think others would appreciate or find useful. The lightning talk format consists of short talks that each focus on a single topic and are typically given by multiple presenters in succession. Thus far we have had volunteers for the following languages: diff --git a/_posts/2010-04-09-nifty-tips-and-tricks.md b/_posts/2010-04-09-nifty-tips-and-tricks.md index d556ae72e..d65979f3e 100644 --- a/_posts/2010-04-09-nifty-tips-and-tricks.md +++ b/_posts/2010-04-09-nifty-tips-and-tricks.md @@ -3,6 +3,6 @@ layout: html/default title: Nifty Tips and Tricks created: 1270867416 categories: announcements -tags: announcements +tags: announcements, howto --- This **Thursday, April 15th at 7PM in Dreese Labs 305,** we will be hosting a discussion session revolving around tips, tricks, and time savers that people have discovered. Do you think you have an awesome .bashrc, .vimrc, key binding, or a little known useful program and want to show it off? This would be the perfect opportunity to share with the rest of the club. There are lots of nifty things that are not widely known and we think this would be a good opportunity to share your knowledge of time savers with others! We will not be using the typical presentation format in lieu of a more informal discussion atmosphere, so feel free to come on out and share your tips as well as learn some new ones at the same time. Hope to see you there! diff --git a/_posts/2010-04-18-perl.md b/_posts/2010-04-18-perl.md index 0fb1c4a85..ae92bd04d 100644 --- a/_posts/2010-04-18-perl.md +++ b/_posts/2010-04-18-perl.md @@ -3,6 +3,6 @@ layout: html/default title: Perl created: 1271640739 categories: announcements -tags: announcements +tags: announcements, perl, language --- This Thursday, June 3rd at 7PM in Dreese Labs 305, Robert Joseph will be presenting on the scripting language Perl. This timing fits nicely because the Open Source Club is hosting Yet Another Perl Conference::North America 2010 later this month and we felt it was appropriate that we should prepare ourselves. More info will be posted soon. diff --git a/_posts/2010-04-25-attempting-linux-on-anything.md b/_posts/2010-04-25-attempting-linux-on-anything.md index 6526828da..565b6ac46 100644 --- a/_posts/2010-04-25-attempting-linux-on-anything.md +++ b/_posts/2010-04-25-attempting-linux-on-anything.md @@ -3,6 +3,6 @@ layout: html/default title: "(Attempting) Linux on Anything" created: 1272247262 categories: announcements -tags: announcements +tags: announcements, linux --- This **Thursday, April 29th at 7PM in Dreese Labs 317,** we will be spending the meeting time attempting to install Linux on anything. We have members with PS3's, iPods, XBOX's, Wii's, phones and whatever else you can think of and we are going to attempt to install an operating system of our choice on them. These members are volunteering their hardware for the meeting and recognize that performing these actions may violate warranties and are not responsible for attempts made meeting goers' own electronics. We are only showing these demonstrations as proof of concept that it is possible to put your own software on hardware that, when it boils down to it, is essentially just a computer built for a specific purpose. So, if you are interested in talking about trying to put Linux on anything and everything, come on out and join in on the fun. Hope to see you there! diff --git a/_posts/2010-04-29-ubuntu-10-04-released.md b/_posts/2010-04-29-ubuntu-10-04-released.md index f2ab6cc01..39e6d9928 100644 --- a/_posts/2010-04-29-ubuntu-10-04-released.md +++ b/_posts/2010-04-29-ubuntu-10-04-released.md @@ -3,6 +3,6 @@ layout: html/default title: Ubuntu 10.04 Released created: 1272586589 categories: announcements -tags: announcements +tags: announcements, ubuntu, linux, os --- Ubuntu 10.04 (Lucid Lynx) was released April 29th. For those wanting to download a copy now, you can get it really quickly [here](/ubuntu-10.04-desktop-i386.iso) ([64 bit](/ubuntu-10.04-desktop-amd64.iso)) instead of waiting for Canonical's servers. diff --git a/_posts/2010-04-30-open-source-gaming.md b/_posts/2010-04-30-open-source-gaming.md index 6e1eb0313..2ebd356a5 100644 --- a/_posts/2010-04-30-open-source-gaming.md +++ b/_posts/2010-04-30-open-source-gaming.md @@ -3,7 +3,7 @@ layout: html/default title: Open Source Gaming created: 1272632870 categories: announcements -tags: announcements +tags: announcements, gaming, games --- This **Thursday, May 20th at 7PM in Dreese Labs 305,** we will be discussing open source gaming, gaming on Linux, gaming with [WINE](http://www.winehq.org/about/), and just general options for gaming once you switch to an open source operating system. One complaint that seems common in the open source OS world is that gaming is pretty much thrown out the window once you have made the switch. We would like to spend the meeting debunking this myth and showing all of the options that one has in the open source gaming arena. We will be showing pure open source games, games that you probably didn't know ran natively in Linux, and how gaming in [WINE](http://www.winehq.org/about/) has improved by leaps and bounds recently and actually does a relatively good job with some of our beloved games that only work on Windows. So come on out and join the discussion and hopefully learn how you are not totally hopeless gaming wise when switching to an open source operating system! diff --git a/_posts/2010-04-30-this-week-in-slashdot.md b/_posts/2010-04-30-this-week-in-slashdot.md index 736a956d6..1f166d0d6 100644 --- a/_posts/2010-04-30-this-week-in-slashdot.md +++ b/_posts/2010-04-30-this-week-in-slashdot.md @@ -1,8 +1,7 @@ --- layout: html/default title: This Week In Slashdot -created: 1272632278 categories: announcements -tags: announcements +tags: announcements, slashdot --- This **Thursday, May 6th at 7PM in *Caldwell 133* (note the change),** Alex Lingo will be presenting an old club favorite known as "This Week in Slashdot". Slashdot (commonly abbreviated as /.) is a website located at http://slashdot.org that deals in news for the nerdy. Readers submit articles which are then accepted or rejected by editors and then published on the site. From there, the readers have huge discussions about every aspect of the article which can be very funny/interesting/insightful/etc and oft prove to be a very good read. Historically, the site has a history of having a pro open source bias, which is why we like it. Alex would like to take this format and apply it to a club meeting so that we can have similar discussions amongst our members in real time. No prior knowledge of /., or goings on in the world, is necessary to participate. Read slashdot prior to the meeting if you wish and bring your thoughts, opinions, ideas, rants, raves and what have you. I hope to see you all there, we love a good discussion! diff --git a/_posts/2010-05-13-elections-for-the-2010-2011-year.md b/_posts/2010-05-13-elections-for-the-2010-2011-year.md index 80aadb48c..0ee9db255 100644 --- a/_posts/2010-05-13-elections-for-the-2010-2011-year.md +++ b/_posts/2010-05-13-elections-for-the-2010-2011-year.md @@ -1,7 +1,6 @@ --- layout: html/default title: Elections for the 2010/2011 Year -created: 1273780326 categories: announcements tags: announcements --- diff --git a/_posts/2010-05-21-game-tournament.md b/_posts/2010-05-21-game-tournament.md index 81c01431d..2323b9fda 100644 --- a/_posts/2010-05-21-game-tournament.md +++ b/_posts/2010-05-21-game-tournament.md @@ -1,9 +1,8 @@ --- layout: html/default title: Game Tournament -created: 1274471526 categories: announcements -tags: announcements +tags: announcements, lan, party --- On Saturday, May 22 in the Ohio Union, the Ohio State Open Source Club will be hosting a LAN Party from 10 AM Saturday morning until 3 AM Sunday morning. Per our Free and open source philosophy, we will be promoting games that either run natively in Linux or run well in WINE and, while some of the games themselves might not be free or open source in nature, we would like to show how gaming in Linux is not a lost cause. We will be providing a venue for people to come out and play the following computer games: diff --git a/_posts/2010-06-14-yapc.md b/_posts/2010-06-14-yapc.md index 0fc4f4e4c..88aa067c8 100644 --- a/_posts/2010-06-14-yapc.md +++ b/_posts/2010-06-14-yapc.md @@ -1,7 +1,6 @@ --- layout: html/default title: YAPC -created: 1276557807 categories: announcements tags: announcements --- diff --git a/_posts/2010-06-23-unofficial-meeting-6-24.md b/_posts/2010-06-23-unofficial-meeting-6-24.md index fc37a6f51..4c20472f4 100644 --- a/_posts/2010-06-23-unofficial-meeting-6-24.md +++ b/_posts/2010-06-23-unofficial-meeting-6-24.md @@ -1,7 +1,6 @@ --- layout: html/default title: Unofficial Meeting 6/24 -created: 1277334012 categories: announcements tags: announcements --- diff --git a/_posts/2010-07-30-pyohio.md b/_posts/2010-07-30-pyohio.md index 2ee87a2b3..805209473 100644 --- a/_posts/2010-07-30-pyohio.md +++ b/_posts/2010-07-30-pyohio.md @@ -3,6 +3,6 @@ layout: html/default title: PyOhio created: 1280507821 categories: announcements -tags: announcements +tags: announcements, pyohio --- This weekend, July 31 and August 1, will be PyOhio! PyOhio is a yearly conference about Python that takes place here in Columbus, Ohio at The Ohio State University (in The Union located at 1739 N. High St.) It's a FREE event to learn almost anything about Python. There are several talks discussing many different about Python or relating to Python in many different ways. The list of specific topics can be found here: http://www.pyohio.org/2010/Talks I encourage anyone with any interest level in programming and/or Python to attend and learn something new! For more information about the event as a whole you can check out their main page: http://www.pyohio.org/ diff --git a/_posts/2010-09-06-ohio-linuxfest-september-10-12.md b/_posts/2010-09-06-ohio-linuxfest-september-10-12.md index 13f4466af..4efb7d2a0 100644 --- a/_posts/2010-09-06-ohio-linuxfest-september-10-12.md +++ b/_posts/2010-09-06-ohio-linuxfest-september-10-12.md @@ -3,6 +3,6 @@ layout: html/default title: Ohio Linuxfest September 10-12 created: 1283748363 categories: announcements -tags: announcements +tags: announcements, ohio linuxfest --- [Ohio Linuxfest](http://ohiolinux.org/) starts this Friday, September 10 at the [Greater Columbus Convention Center](http://www.columbusconventions.com/directionsandmaps.php). Various events occur that day, but the main part of the conference is [Saturday](http://ohiolinux.org/sat10-schedule.html), which consists of talks from 9am to 7:30pm and an expo with many Linux-related organizations. The Open Source club has a table at the expo, so please stop by. diff --git a/_posts/2010-09-27-open-source-music-ripper-server-client.md b/_posts/2010-09-27-open-source-music-ripper-server-client.md index 77e8bd27c..32dbf6269 100644 --- a/_posts/2010-09-27-open-source-music-ripper-server-client.md +++ b/_posts/2010-09-27-open-source-music-ripper-server-client.md @@ -3,7 +3,7 @@ layout: html/default title: Open Source Music Ripper / Server / Client created: 1285605899 categories: announcements -tags: announcements +tags: announcements, music, audio --- This Thursday, at 7 pm in the Ohio Union Senate Chamber, Matt Smith will be demonstrating an Open Music Server that he has been working on. It might seem too easy and obvious to bother with in this day and age. We all know how to rip CD's, collect and share music, and move it to our portables for on-the-go music. My server comes from an audiophile standpoint. Long story short, I used to sell expensive stereo equipment. There are people out there right now spending up to $60,000 on CD players. I'd like to show you how to build your own that competes with these on sound quality, is easier to use, much more fun, has more features, and is completely free. edit: my blog: http://opensourceaudiophile.com/ diff --git a/_posts/2010-10-07-gimp-image-editing-autumn-2010.md b/_posts/2010-10-07-gimp-image-editing-autumn-2010.md index abcdb325b..4d2044bb0 100644 --- a/_posts/2010-10-07-gimp-image-editing-autumn-2010.md +++ b/_posts/2010-10-07-gimp-image-editing-autumn-2010.md @@ -3,7 +3,7 @@ layout: html/default title: GIMP Image editing - Autumn 2010 created: 1286425319 categories: announcements -tags: announcements +tags: announcements, raster, image manipulation, photoshop --- This Thursday, at 7 pm in the Ohio Union Senate Chamber, Brian Swaney will be demonstrating use of the GIMP image editor. GIMP is what some might consider an open source alternative to the proprietary $800 Photoshop application, except that many people refuse to consider it on the grounds that it is allegedly inferior, and therefore unusable. While I'm not familiar with Photoshop, I will debunk the myth about GIMP being unusable, and show just how powerful GIMP can be for those who take the time to learn it. I'll do this by teaching you how to perform arbitrary Photoshop-esque techniques in GIMP. diff --git a/_posts/2010-10-18-why-python.md b/_posts/2010-10-18-why-python.md index 7aee68cc9..df7487a3e 100644 --- a/_posts/2010-10-18-why-python.md +++ b/_posts/2010-10-18-why-python.md @@ -4,7 +4,7 @@ title: Why Python? created: 1287459075 alias: /wi10/python.html categories: announcements -tags: announcements +tags: announcements, python, language --- This meeting will focus on several aspects of Python that don't normally come up in normal Python meetings. It will show you how things can be easier and more fun in Python! I will will be covering things from as simply as handling basic data types to more advance things such as making system calls or making the most of the PSL (Python Standard Library). diff --git a/_posts/2010-10-23-this-week-in-slashdot.md b/_posts/2010-10-23-this-week-in-slashdot.md index 034e3d919..38f97eedd 100644 --- a/_posts/2010-10-23-this-week-in-slashdot.md +++ b/_posts/2010-10-23-this-week-in-slashdot.md @@ -3,6 +3,6 @@ layout: html/default title: This Week in Slashdot created: 1287864953 categories: announcements -tags: announcements +tags: announcements, slashdot --- This Thursday, October 28 at 7PM in the Ohio Union Senate Chamber, Alex Lingo will be presenting an old club favorite known as "This Week in Slashdot". [Slashdot](http://slashdot.org/) (commonly abbreviated as /.) is a website that deals in news for the nerdy, specifically "stuff that matters". Readers submit articles which are then accepted or rejected by editors and published on the site. From there, the readers have huge discussions about every aspect of the article which can be very funny/interesting/insightful/etc and oft prove to be a very good read. Historically, the site has a history of having a pro open source bias, which is why we like it. Alex would like to take this format and apply it to a club meeting so that we can have similar discussions amongst our members in real time. No prior knowledge of /., or goings on in the world, is necessary to participate. Read Slashdot prior to the meeting if you wish and bring your thoughts, opinions, ideas, rants, raves and what have you. This may be Alex's last quarter at Ohio State, so don't miss this meeting! It should also be noted that award certificates will be given out to those who can show that they've received a comment moderated 3 or better within the last week! There will also be candy tossed out for valuable participation in the discussions during the meeting. diff --git a/_posts/2010-11-01-model-view-controllers.md b/_posts/2010-11-01-model-view-controllers.md index 501840473..725a32f3e 100644 --- a/_posts/2010-11-01-model-view-controllers.md +++ b/_posts/2010-11-01-model-view-controllers.md @@ -4,7 +4,7 @@ title: Model View Controllers created: 1288637684 alias: /au10/view_controllers.html categories: announcements -tags: announcements +tags: announcements, mvc, webdev, web --- This Thursday, November 4th at 7PM in the Ohio Union Senate Chamber, Jonathan Tubb will be giving an overview of Model View Controllers. A popular architecture for developing web applications, MVCs have come into their own in the past decade becoming the standard for quick deployment of applications. Information, use cases, and examples of MVCs and web applications will be covered. diff --git a/_posts/2010-11-06-the-git-distributed-version-control-system.md b/_posts/2010-11-06-the-git-distributed-version-control-system.md index 83231390c..cae2284bc 100644 --- a/_posts/2010-11-06-the-git-distributed-version-control-system.md +++ b/_posts/2010-11-06-the-git-distributed-version-control-system.md @@ -3,6 +3,6 @@ layout: html/default title: The Git Distributed Version Control System created: 1289087220 categories: announcements -tags: announcements +tags: announcements, vc, version control, git --- This ***Friday***, November 12th at 7:00PM in the Ohio Union Senate Chamber Daniel Thau will be giving a presentation on Git, a distributed version control system with a focus on performance and integrity. Despite being known as one of the more difficult VCSs to grasp, git has become quite popular and has a fair number of recognizable F/OSS projects using it, such as the Linux Kernel and X.org. Daniel will cover a quick history of Git (lots of tasty drama), cover some pros and cons of using Git, explain what Git is doing under the hood, give a conceptual explanation of what Git does, and of course go over both basic (add, commit, branch, merge, etc) and advanced (stash, rebase, etc) Git usage. Having a laptop with Git installed may be benficial for those in the audience who want to play along, but those without should be perfectly fine. NOTE: Due to veterans day this meeting is on a Friday, not a Thursday! diff --git a/_posts/2010-11-15-xen-virtualization.md b/_posts/2010-11-15-xen-virtualization.md index cb229e1d1..0b525ef6a 100644 --- a/_posts/2010-11-15-xen-virtualization.md +++ b/_posts/2010-11-15-xen-virtualization.md @@ -3,6 +3,6 @@ layout: html/default title: Xen Virtualization created: 1289860793 categories: announcements -tags: announcements +tags: announcements, virtualization --- On Thursday, November 18, at 7:00PM in the Ohio Union Senate Chamber, Matt Meinwald will be presenting on Xen, a popular server virtualization system. He will show what the software has to offer and will demo the installation process on Debian. Depending on time and interest, he may explain how we use it in the Open Source club systems or compare it to other software out there. diff --git a/_posts/2010-11-29-vim.md b/_posts/2010-11-29-vim.md index 7b3b3c4a9..1db4b94bc 100644 --- a/_posts/2010-11-29-vim.md +++ b/_posts/2010-11-29-vim.md @@ -3,7 +3,7 @@ layout: html/default title: Vim created: 1291044445 categories: announcements -tags: announcements +tags: announcements, vim, text editor --- December 2nd at 7:00PM in the Ohio Union Senate Chamber Daniel Thau will be giving a presentation on Vim, an extremely powerful text editing program. Vim is known for having a difficult learning curve, but for many of those who do any appreciable amount of work editing text (such as Unix configuration, programming, etc) the benefits can far outweigh the cost. diff --git a/_posts/2011-01-01-chroot-and-linux-from-scatch.md b/_posts/2011-01-01-chroot-and-linux-from-scatch.md index 31fcd6b36..72ecfa238 100644 --- a/_posts/2011-01-01-chroot-and-linux-from-scatch.md +++ b/_posts/2011-01-01-chroot-and-linux-from-scatch.md @@ -3,7 +3,7 @@ layout: html/default title: Chroot and Linux From Scatch created: 1293912163 categories: announcements -tags: announcements +tags: announcements, linux, chroot, linux from scratch --- Thursday, January 6th, 2011 at 7:00PM in Dreese 264 (note the change in location), Daniel Thau will be giving a dual presentation covering the chroot operation as well as the Linux From Scratch project. diff --git a/_posts/2011-01-04-osu-sign-on-and-openid-now-supported.md b/_posts/2011-01-04-osu-sign-on-and-openid-now-supported.md index 72f64a6b3..4f4ef87a9 100644 --- a/_posts/2011-01-04-osu-sign-on-and-openid-now-supported.md +++ b/_posts/2011-01-04-osu-sign-on-and-openid-now-supported.md @@ -3,7 +3,7 @@ layout: html/default title: OSU Sign-on and OpenID Now Supported created: 1294186799 categories: announcements -tags: announcements +tags: announcements, shibboleth --- In response to feedback we received about having to log into our site (and resetting passwords each time), as well as insanely difficult [CAPTCHA](http://en.wikipedia.org/wiki/Captcha)s, we have taken steps to make things a little easier for everyone. Effective immediately, an OSU `name.n` will now log any current student, faculty, or staff member into our website, as well as most alumni and former staff. To use it, simply click the link on the left-side of any page titled "OSU Sign-on" and enter your OSU username and password (same password you use for Carmen/grades/etc). Logging in this way will automatically mark your account as [identified](/node/9) and give you the ability to post anything without moderator approval, as well as any other options previously unavailable to anonymous or unverified users. diff --git a/_posts/2011-01-07-gimp-image-editing-winter-2011.md b/_posts/2011-01-07-gimp-image-editing-winter-2011.md index dba1cf07d..69c011bfb 100644 --- a/_posts/2011-01-07-gimp-image-editing-winter-2011.md +++ b/_posts/2011-01-07-gimp-image-editing-winter-2011.md @@ -3,7 +3,7 @@ layout: html/default title: Gimp Image Editing - Winter 2011 created: 1294416645 categories: announcements -tags: announcements +tags: announcements, raster, image manipulation, photoshop --- This Thursday, at 7 pm in **Dreese Labs room 264**, Brian Swaney will be demonstrating use of the GIMP image editor. GIMP is what some might consider an open source alternative to the proprietary $800 Photoshop application, except that many people refuse to consider it on the grounds that it is allegedly inferior, and therefore unusable. While I'm not familiar with Photoshop, I will debunk the myth about GIMP being unusable, and show just how powerful GIMP can be for those who take the time to learn it. I'll do this by teaching you how to perform arbitrary Photoshop-esque techniques in GIMP. diff --git a/_posts/2011-01-25-an-introduction-to-blender.md b/_posts/2011-01-25-an-introduction-to-blender.md index 2fdaae72b..d1b72a281 100644 --- a/_posts/2011-01-25-an-introduction-to-blender.md +++ b/_posts/2011-01-25-an-introduction-to-blender.md @@ -3,6 +3,6 @@ layout: html/default title: An Introduction to Blender! created: 1295986936 categories: announcements -tags: announcements +tags: announcements, 3d, animation --- This Thursday, Alex Lingo will be presenting on the topic of Blender. Blender is a powerful 3D modeling and rendering program, similar to applications such as Maya or 3DS Max. Alex's presentation will cover the history of blender, basic 3D modeling concepts, how to control Blender with the keyboard and mouse, and will conclude with a live demonstration that will hopefully go as planned, with no mistakes or confusion, guaranteed. diff --git a/_posts/2011-01-31-microcontrollers.md b/_posts/2011-01-31-microcontrollers.md index 7d61c22a2..119b8041c 100644 --- a/_posts/2011-01-31-microcontrollers.md +++ b/_posts/2011-01-31-microcontrollers.md @@ -3,7 +3,7 @@ layout: html/default title: Microcontrollers created: 1296501600 categories: announcements -tags: announcements +tags: announcements, embedded, arduino --- This Thursday, February 3 at 7PM in Dreese 264, Jonathan Tubb will be going over the basics of Microcontrollers, uses, and programming. Specific devices will include the TI MSP line of chips as well as Arduino (Atmega). Finished projects will also be brought in as examples. Feel free to bring and show off your own projects. diff --git a/_posts/2011-02-07-wireless-hacking.md b/_posts/2011-02-07-wireless-hacking.md index 562e26cea..ce82c180c 100644 --- a/_posts/2011-02-07-wireless-hacking.md +++ b/_posts/2011-02-07-wireless-hacking.md @@ -3,7 +3,7 @@ layout: html/default title: Wireless Hacking created: 1297089086 categories: announcements -tags: announcements +tags: announcements, wifi, wireless, security, privacy --- Tonight at 7 pm in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 264, I, Michael Yanovich, will be covering various sub-topics to wireless hacking, however the main point that I want people to take away from this talk is how to secure your own wireless network from these types of attacks. I'll be covering a brief outline on how wireless networks work, the several types of encryption available, and other settings that can set to **try** to protect your network. I'll be demonstrating these attacks as well, and I'll be needing help in this endeavor and I encourage people to bring their laptops if they wish to participate. I encourage people to follow along and learn the most they can about wireless security. I'm bringing my own equipment for us to attack and I'm giving permission to those who attend to help out and to help show off the weakness of various types or security implementations that I will be covering. I also have surprise raw data information about wifi access points in the Columbus area that will definitely be interesting! diff --git a/_posts/2011-02-13-markup-languages.md b/_posts/2011-02-13-markup-languages.md index 84660bbb7..e719abdfc 100644 --- a/_posts/2011-02-13-markup-languages.md +++ b/_posts/2011-02-13-markup-languages.md @@ -3,7 +3,7 @@ layout: html/default title: Markup Languages created: 1297643465 categories: announcements -tags: announcements +tags: announcements, markup, haml, language, LaTeX, markdown --- This Thursday, in [Dreese Lab](http://www.osu.edu/map/building.php?building=279) room 264, several of our members will be giving presentations on various markup languages. diff --git a/_posts/2011-02-21-android-development.md b/_posts/2011-02-21-android-development.md index 98162cabe..49de71022 100644 --- a/_posts/2011-02-21-android-development.md +++ b/_posts/2011-02-21-android-development.md @@ -3,7 +3,7 @@ layout: html/default title: Android Development created: 1298317935 categories: announcements -tags: announcements +tags: announcements, android, java --- On Thursday, February 24, at 7PM in Dreese 264, Sogeti USA developers Jackie Gleason and Robert Omalley will discuss Android for beginning to intermediate Java developers. diff --git a/_posts/2011-02-28-shells.md b/_posts/2011-02-28-shells.md index 5ea3f0dc2..299faefaa 100644 --- a/_posts/2011-02-28-shells.md +++ b/_posts/2011-02-28-shells.md @@ -3,6 +3,6 @@ layout: html/default title: Shells created: 1298900923 categories: announcements -tags: announcements +tags: announcements, shell. terminal --- On Thursday, March 3, at 7PM in Dreese 264, we will be having talks on shells. Dan Thau will explain ZSH, an extremely customizable and powerfull shell. Morgan Goose will present on Bash, a familiar one that still has some tricks up its sleeve. Michael Yanovich will demonstrate either ipython or bpython, a python-based shell. Matt Meinwald will show Fish, a friendlier shell. If anyone else has a shell to present, please feel free to talk for a few minutes on it. There are a lot of interesting shells out there, and it would be nice to learn about more. diff --git a/_posts/2011-03-08-projects.md b/_posts/2011-03-08-projects.md index e2e59b85a..8c5b6d52d 100644 --- a/_posts/2011-03-08-projects.md +++ b/_posts/2011-03-08-projects.md @@ -4,6 +4,6 @@ title: Projects created: 1299598623 alias: /wi11/projects.html categories: announcements -tags: announcements +tags: announcements, projects --- This Thursday, March 10 at 7PM in Dreese 264, we will be having lightning talks on the Open Source projects people are working on. If you have something you are working on, please comment below so I can get an idea of the time limits for these talks. If you don't hear otherwise, assume they are five minutes each and a maximum of two talks per person. If anyone has a gong to help enforce these guidelines, please let me know. We need to do planning during this meeting as well, so please do your best to stay under time, and bring your meeting ideas. diff --git a/_posts/2011-03-10-window-managers-and-desktop-environments.md b/_posts/2011-03-10-window-managers-and-desktop-environments.md index 6ab67ee92..f163c2daf 100644 --- a/_posts/2011-03-10-window-managers-and-desktop-environments.md +++ b/_posts/2011-03-10-window-managers-and-desktop-environments.md @@ -3,7 +3,7 @@ layout: html/default title: Window Managers and Desktop Environments created: 1299808339 categories: announcements -tags: announcements +tags: announcements, wm, window manager --- This Thursday, March 31 at 7PM in Dreese 264 we will see presentations on window managers and desktop environments. Dan Thau will show the window managers dwm and Openbox as well as LXDE which uses the latter. Mike Yanovich will demonstrate the Awesome window manager and Gnome desktop environment (version 2.x). Alek Rollyson will present Window Manager From Scratch. Alex Lingo will talk about KDE. Mike Bettencourt will introduce Gnome 3. Matt Meinwald will explain the XFCE desktop environment and Compiz. diff --git a/_posts/2011-04-01-new-microsoft-partnership.md b/_posts/2011-04-01-new-microsoft-partnership.md index 310efdfc0..606163bef 100644 --- a/_posts/2011-04-01-new-microsoft-partnership.md +++ b/_posts/2011-04-01-new-microsoft-partnership.md @@ -3,7 +3,7 @@ layout: html/default title: New Microsoft Partnership created: 1301630401 categories: announcements -tags: announcements +tags: announcements, microsoft --- Amidst our past rivalry, and a fellow technology group that has been all but extinct, we in the Ohio State University Open Source Club have hereby formed a new partnership with the now re-established [ntSig](http://mail.cse.ohio-state.edu/mailman/listinfo/ntsig) (website coming soon). ntSig, or New Technology Special Interest Group, is a group sponsored by Microsoft for people who share an interest in software, computers and technology in general. This carefully considered decision was not made lightly, but we wish to honor some of our former members who now reside in Redmond, WA and set our political differences aside. diff --git a/_posts/2011-04-04-open-source-security-tools.md b/_posts/2011-04-04-open-source-security-tools.md index 38bfcf19a..2deb582b9 100644 --- a/_posts/2011-04-04-open-source-security-tools.md +++ b/_posts/2011-04-04-open-source-security-tools.md @@ -3,7 +3,7 @@ layout: html/default title: Open Source Security Tools created: 1301967612 categories: announcements -tags: announcements +tags: announcements, security, hack --- This Thursday, April 7 at 7PM in Dreese 264, Alek Rollyson will be covering open source security tools from protocol analyzers to vulnerability scanners. This talk is meant as a general overview of tools available as well as their practical applications in security audits and penetration testing. Tools and topics covered will include: diff --git a/_posts/2011-04-09-go-board-game-ai.md b/_posts/2011-04-09-go-board-game-ai.md index c82c7dc57..ebf89a076 100644 --- a/_posts/2011-04-09-go-board-game-ai.md +++ b/_posts/2011-04-09-go-board-game-ai.md @@ -4,7 +4,7 @@ title: Go (board game) AI created: 1302364039 alias: /sp11/go-ai.html categories: announcements -tags: announcements +tags: announcements, ai --- This Thursday, April 14th at 7PM in Dreese 264, Daniel Thau will be giving a presentation on open source artificial intelligence for the board game Go. diff --git a/_posts/2011-04-26-cli-utilities.md b/_posts/2011-04-26-cli-utilities.md index 6babf9711..fe3a1904f 100644 --- a/_posts/2011-04-26-cli-utilities.md +++ b/_posts/2011-04-26-cli-utilities.md @@ -3,7 +3,7 @@ layout: html/default title: CLI Utilities created: 1303832426 categories: announcements -tags: announcements +tags: announcements, cli, command line, terminal, shell --- On Thursday, April 28, at 7PM in Dreese 264, we will have lightning talks about programs with a command-line interface (CLI). These utilities can be useful in their own right, but often can be connected together with pipes to do new and interesting things. It would be helpful if people interested in presenting signed up with their choices, either by emailing me at meinwald.1@osu.edu or commenting below. This way we can avoid duplication. For now assume each talk can be up to 5 minutes, but that is subject to change. diff --git a/_posts/2011-05-08-lan-party.md b/_posts/2011-05-08-lan-party.md index bec1b4d6d..da095d59f 100644 --- a/_posts/2011-05-08-lan-party.md +++ b/_posts/2011-05-08-lan-party.md @@ -3,6 +3,6 @@ layout: html/default title: LAN Party created: 1304831586 categories: announcements -tags: announcements +tags: announcements, lan, party --- On Saturday, May 14, from 10:00**AM** to 11:30**PM** in the Ohio Union [Creative Arts room](http://ohiounion.osu.edu/visit_the_union/building_map/basement). The emphasis will be on Free, Open Source games, but people are welcome to play whatever they'd like. Additional details can be found at the [LAN website](/lan) as well as a registration form, to help us get a feel for how many people we will have and what games you want to play. Please bring your computer, any game media you might need, as well as a network cable or two, in case some people do not have one. If you have any questions, please send an email to lan@opensource.osu.edu. diff --git a/_posts/2011-05-22-arduino.md b/_posts/2011-05-22-arduino.md index 4c3df7e73..0f04360af 100644 --- a/_posts/2011-05-22-arduino.md +++ b/_posts/2011-05-22-arduino.md @@ -3,7 +3,7 @@ layout: html/default title: Arduino created: 1306084908 categories: announcements -tags: announcements +tags: announcements, embedded, arduino --- This Thursday, May 26 at 7PM, we will be meeting in ***Hitchcock 224*** where First Year Engineering staff will present on Arduino. diff --git a/_posts/2011-05-30-web-application-security.md b/_posts/2011-05-30-web-application-security.md index 38e93a82e..a199d5174 100644 --- a/_posts/2011-05-30-web-application-security.md +++ b/_posts/2011-05-30-web-application-security.md @@ -3,7 +3,7 @@ layout: html/default title: Web Application Security created: 1306796765 categories: announcements -tags: announcements +tags: announcements, security, web, webdev --- This Thursday, June 2nd at 7PM in Dreese Labs 264, Jonathan Tubb and Brian Swaney will be presenting on compromising and exploiting web systems and will focus on some of the techniques as well as actual examples. The talk itself will be shorter than a normal meeting so that planning meetings for next year and organizing summer events can take place. diff --git a/_posts/2011-09-19-first-meeting.md b/_posts/2011-09-19-first-meeting.md index d70337fe5..262e724c2 100644 --- a/_posts/2011-09-19-first-meeting.md +++ b/_posts/2011-09-19-first-meeting.md @@ -3,7 +3,7 @@ layout: html/default title: First meeting created: 1316470680 categories: announcements -tags: announcements +tags: announcements, first --- Thursday, September 22nd at 7:00PM in Dreese Labs room 266, the Ohio State University Open Source Club will have its first meeting of the 2011-2012 academic year.  Daniel Thau will be giving an introduction to the concept of Free/Open Source Software to help explain to any [potential] new members what the club is about.  After that we'll have a PGP signing party (we'll likely have a talk on what PGP is some time next quarter). diff --git a/_posts/2011-09-26-wireless-hacking.md b/_posts/2011-09-26-wireless-hacking.md index eebe861a8..bce1d2847 100644 --- a/_posts/2011-09-26-wireless-hacking.md +++ b/_posts/2011-09-26-wireless-hacking.md @@ -3,7 +3,7 @@ layout: html/default title: Wireless Hacking created: 1317085487 categories: announcements -tags: announcements +tags: announcements, hack, wifi, wireless, security, privacy --- Thursday, September 29th at 7:00PM in Dreese Labs 266, Michael Yanovich will be covering wireless security with a heavy regard towards wireless hacking. He will be covering how wireless networks work, the several types of encryption available, and other settings that can set to try to protect your network. He will be demonstrating these attacks as well, and he encourages people to bring their laptops if they wish to participate (if your wireless card can not run the available software, he will be providing a sample dump for you to play around with, this will be available at the meeting). Everyone is encouraged to follow along and learn the most they can about wireless security. Michael is am bringing my own equipment for demonstrative purposes and he encourage everyone to participate in the presentation. diff --git a/_posts/2011-09-27-making-pictures-lie.md b/_posts/2011-09-27-making-pictures-lie.md index 13f5a020f..6596048db 100644 --- a/_posts/2011-09-27-making-pictures-lie.md +++ b/_posts/2011-09-27-making-pictures-lie.md @@ -3,7 +3,7 @@ layout: html/default title: Making Pictures Lie created: 1317172318 categories: announcements -tags: announcements +tags: announcements, image manipulation, raster, photoshop --- This Thursday, in Dreese Lab room 266, I will demonstrating how you can make pictures lie using only open source software. Fanboys will often proclaim what they can do in a certain expensive proprietary image editor that shall not be named, so I'm going to demonstrate just the same things are do-able from another certain free, open source program. My claim is that [GIMP](http://www.gimp.org/) is _just_ as capable of making your pictures lie as any other mainstream image manipulation software. diff --git a/_posts/2011-09-30-certificate-expired-warning.md b/_posts/2011-09-30-certificate-expired-warning.md index f0d99390d..d294a2a50 100644 --- a/_posts/2011-09-30-certificate-expired-warning.md +++ b/_posts/2011-09-30-certificate-expired-warning.md @@ -3,7 +3,7 @@ layout: html/default title: Certificate expired warning created: 1317410352 categories: announcements -tags: announcements +tags: announcements, cert, ssl ---
-----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
diff --git a/_posts/2011-10-09-vim.md b/_posts/2011-10-09-vim.md
index dbdb43dc6..485e81d11 100644
--- a/_posts/2011-10-09-vim.md
+++ b/_posts/2011-10-09-vim.md
@@ -3,6 +3,6 @@ layout: html/default
 title: Vim
 created: 1318208041
 categories: announcements
-tags: announcements
+tags: announcements, vim, text editor
 ---
 October 13th at 7:00PM in Dreese 266, Daniel Thau will be giving a presentation on Vim, an extremely powerful text editing program. Vim is known for having a difficult learning curve, but for many of those who do any appreciable amount of work editing text (such as Unix configuration, programming, etc) the benefits can far outweigh the cost. Daniel will cover Vim's basic concepts and should get most who know nothing about Vim up to the point where they can use it. Additionally, Daniel will cover several more advanced concepts such as folding, q-macros, blockwise-visual tricks, and others. Feel free to come in with questions on anything Vim. Vim is available on Windows, Macs, Linux and others. If you've got a laptop, it may be a good idea to install vim and bring it in; playing with the various aspects of Vim introduced are a great way to learn about them.
diff --git a/_posts/2011-10-19-xiki.md b/_posts/2011-10-19-xiki.md
index b7b490af7..2e424623e 100644
--- a/_posts/2011-10-19-xiki.md
+++ b/_posts/2011-10-19-xiki.md
@@ -4,6 +4,6 @@ title: Xiki
 created: 1319067839
 alias: /au11/xiki.html
 categories: announcements
-tags: announcements
+tags: announcements, text editor, emacs
 ---
 October 20th at 7:00PM in Dreese 266, Paul Schwendenman will be giving a presentation on Xiki. Xiki is a modified version of emacs created specifically for web development with the goal of having an easy learning curve. Additionally, there will be a discussion and vote regarding some changes to the club constitution. [Link to slides](https://docs.google.com/present/view?id=0AYhc9WicNcjbZGNiM2dmMjhfMzhjemoybnNkcA&hl=en_US)
diff --git a/_posts/2011-10-24-regular-expressions.md b/_posts/2011-10-24-regular-expressions.md
index 8f7ecfac0..df67d6b70 100644
--- a/_posts/2011-10-24-regular-expressions.md
+++ b/_posts/2011-10-24-regular-expressions.md
@@ -4,6 +4,6 @@ title: Regular Expressions
 created: 1319496349
 alias: /au11/regex.html
 categories: announcements
-tags: announcements
+tags: announcements, bash, shell, terminal
 ---
 October 27th at 7:00PM in Dreese 266, Daniel Thau will be giving a presentation on Regular Expressions. Regular Expressions is a system for pattern recognition in text which is extremely useful for text processing. This talk may be especially appealing to up-and-coming *nix admins, since such systems rely heavily on text for things like configuration, but should be useful for anyone interested in software. The talk will mostly use examples with the grep and sed utilities, which are almost certainly already installed on your Linux or OSX laptops if you're bringing one along. If you're bringing a Windows laptop, grabbing Windows versions of such utilities (or Cygwin, or Linux in a VM) may be useful if you want to play along, but shouldn't be required to benefit from the talk.
diff --git a/_posts/2011-10-30-this-week-in-slashdot.md b/_posts/2011-10-30-this-week-in-slashdot.md
index d9bb172cb..b10657e30 100644
--- a/_posts/2011-10-30-this-week-in-slashdot.md
+++ b/_posts/2011-10-30-this-week-in-slashdot.md
@@ -3,6 +3,6 @@ layout: html/default
 title: This Week in Slashdot
 created: 1320024910
 categories: announcements
-tags: announcements
+tags: announcements, slashdot
 ---
 This Thursday, in [Dreese Labs](http://www.osu.edu/map/building.php?building=279) room 266, Alex Lingo will host his infamous _This Week in Slashdot_™ discussion. As is the general format, Alex will display and discuss major events in technology, with feedback from the audience. For the uninitiated, [Slashdot](http://slashdot.org/) (often abbreviated **/.**) is a nerd-oriented news website where the readers submit articles which are then accepted or rejected by editors and then published on the front page, with a new page typically appearing every couple of hours. From there, the readers have huge discussions about every aspect of the article, by posting comments. These comments are then [moderated](http://slashdot.org/moderation.shtml) by a randomly selected group of readers who can each add or subtract points from a limited number of comments for being funny/insightful/informative or offtopic/troll/flamebait, leaving only the highest rated comments immediately visible below the summary, often collectively making for a better read than the original article. Alex's discussion will attempt to mimic this format, and provoke civilized (yeah right!) discussion and debate about news topics that matter to nerds.
diff --git a/_posts/2011-11-07-clojure.md b/_posts/2011-11-07-clojure.md
index 01eb2ca32..67d2fc20a 100644
--- a/_posts/2011-11-07-clojure.md
+++ b/_posts/2011-11-07-clojure.md
@@ -4,7 +4,7 @@ title: Clojure
 created: 1320680363
 alias: /au11/clojure.html
 categories: announcements
-tags: announcements
+tags: announcements, clojure, language
 ---
 November 10th at 7:00PM in Dreese 266, Maxim Kim will be giving a presentation on Clojure. Clojure is a dynamic programming language that targets the Java Virtual Machine (and the CLR, and JavaScript). It is designed to be a general-purpose language, combining the approachability and interactive development of a scripting language with an efficient and robust infrastructure for multithreaded programming. Clojure is a compiled language - it compiles directly to JVM bytecode, yet remains completely dynamic. Every feature supported by Clojure is supported at runtime. Clojure provides easy access to the Java frameworks, with optional type hints and type inference, to ensure that calls to Java can avoid reflection.
 
diff --git a/_posts/2011-11-17-lan-party.md b/_posts/2011-11-17-lan-party.md
index 59e6150c9..911cc3bee 100644
--- a/_posts/2011-11-17-lan-party.md
+++ b/_posts/2011-11-17-lan-party.md
@@ -3,7 +3,7 @@ layout: html/default
 title: LAN Party
 created: 1321581342
 categories: announcements
-tags: announcements
+tags: announcements, lan, party
 ---
 Saturday, November 19th from 10:30AM-11:30PM (yes, 13 hours!) in the Ohio Union Interfaith Prayer and Reflection, the Open Source Club will be hosting a LAN party!
 
diff --git a/_posts/2011-11-28-open-source-operating-systems-and-winter-2011-planning.md b/_posts/2011-11-28-open-source-operating-systems-and-winter-2011-planning.md
index b917f4a2b..a4c4ac679 100644
--- a/_posts/2011-11-28-open-source-operating-systems-and-winter-2011-planning.md
+++ b/_posts/2011-11-28-open-source-operating-systems-and-winter-2011-planning.md
@@ -3,7 +3,7 @@ layout: html/default
 title: Open Source Operating Systems and Winter 2011 Planning
 created: 1322525494
 categories: announcements
-tags: announcements
+tags: announcements, os
 ---
 Thursday, December 1st at 7:00PM in Dreese room 266, a number of our members will be presenting on various Open Source Operating Systems.  These will not be overly in-depth as some of our past presentations have been; rather, these should just taste of what these Operating Systems are like or why people may be interested in learning more about them.
 
diff --git a/_posts/2012-01-01-distributed-version-control-systems.md b/_posts/2012-01-01-distributed-version-control-systems.md
index 3b449770d..227566038 100644
--- a/_posts/2012-01-01-distributed-version-control-systems.md
+++ b/_posts/2012-01-01-distributed-version-control-systems.md
@@ -3,6 +3,6 @@ layout: html/default
 title: Distributed Version Control Systems
 created: 1325441157
 categories: announcements
-tags: announcements
+tags: announcements, vc, version control, git
 ---
 January 5th, 2012 at 7:00PM in Dreese 266, Paul Schwendenman, Meisam Fathi Salmi and Daniel Thau will be giving presentations on Distributed Version Control Systems (DVCS).  DVCSs are distributed systems which keep track of software revisions.  These are usually, but not necessarily, used to manage programming projects.  Daniel will go over the idea behind a DVCS, as well as some of the stuff going on under the hood in one of them (git).  Meisam will continue presenting on git, going over things such as the git commands, config file, hooks, and daemon.  Paul will present on Bazaar, another DVCS.
diff --git a/_posts/2012-01-09-introduction-to-haskell-part-0.md b/_posts/2012-01-09-introduction-to-haskell-part-0.md
index 784c0ad26..ddc1092d0 100644
--- a/_posts/2012-01-09-introduction-to-haskell-part-0.md
+++ b/_posts/2012-01-09-introduction-to-haskell-part-0.md
@@ -4,7 +4,7 @@ title: Introduction to Haskell Part 0
 created: 1326149016
 alias: /wi12/haskell1.html
 categories: announcements
-tags: announcements
+tags: announcements, haskell, language
 ---
 *Introduction to Haskell Part 0*
 *Dreese 266*
diff --git a/_posts/2012-01-18-introduction-to-haskell-part-b.md b/_posts/2012-01-18-introduction-to-haskell-part-b.md
index 44d432348..5fc1f4fc2 100644
--- a/_posts/2012-01-18-introduction-to-haskell-part-b.md
+++ b/_posts/2012-01-18-introduction-to-haskell-part-b.md
@@ -4,7 +4,7 @@ title: Introduction to Haskell Part B
 created: 1326905888
 alias: /wi12/haskell2.html
 categories: announcements
-tags: announcements
+tags: announcements, haskell, language
 ---
 *Introduction to Haskell Part B*
 *Dreese 266*
diff --git a/_posts/2012-01-24-haskell-part-iii.md b/_posts/2012-01-24-haskell-part-iii.md
index 84fba444d..5861dca9a 100644
--- a/_posts/2012-01-24-haskell-part-iii.md
+++ b/_posts/2012-01-24-haskell-part-iii.md
@@ -4,7 +4,7 @@ title: 'Haskell: Part III'
 created: 1327444537
 alias: /wi12/haskell3.html
 categories: announcements
-tags: announcements
+tags: announcements, haskell, language
 ---
 Thursday January 26th, 2012
 Dreese Lab 266
diff --git a/_posts/2012-01-25-haskell-part-iii-winter-resistance-edition-snow-and-freezing-rain-will-not-stop-us-neither-will-dry-50f-weather.md b/_posts/2012-01-25-haskell-part-iii-winter-resistance-edition-snow-and-freezing-rain-will-not-stop-us-neither-will-dry-50f-weather.md
index f262412e8..5a27f0be7 100644
--- a/_posts/2012-01-25-haskell-part-iii-winter-resistance-edition-snow-and-freezing-rain-will-not-stop-us-neither-will-dry-50f-weather.md
+++ b/_posts/2012-01-25-haskell-part-iii-winter-resistance-edition-snow-and-freezing-rain-will-not-stop-us-neither-will-dry-50f-weather.md
@@ -4,7 +4,7 @@ title: 'Haskell: Part III: Winter Resistance Edition: Snow and Freezing Rain Wil
   Not Stop Us (neither will dry, 50F weather)'
 created: 1327518233
 categories: announcements
-tags: announcements
+tags: announcements, haskell, language
 ---
 *Thursday January 26, 2012*
 *Dreese Lab 266*
diff --git a/_posts/2012-01-30-unix-command-line-utilities.md b/_posts/2012-01-30-unix-command-line-utilities.md
index 542aa9f81..0a9fffce4 100644
--- a/_posts/2012-01-30-unix-command-line-utilities.md
+++ b/_posts/2012-01-30-unix-command-line-utilities.md
@@ -4,6 +4,6 @@ title: Unix Command-Line Utilities
 created: 1327964558
 alias: /wi12/unixutils.html
 categories: announcements
-tags: announcements
+tags: announcements, cli, terminal, shell
 ---
 Thursday, February 2nd at 7:00PM in Dreese 266 Daniel Thau will be presenting Unix CLI Utilities such as grep, sed and awk.  These tools are present on every Unix machine, and so if one ever finds him or herself on someone else's Unix box without their language of choice, her or she can always fall back to these tools.  Moreover, they're quite good at manipulating text - the fundamental necessity for managing a Unix system.  If you want to play along, bring just about any Unix or Unixy-like system with access to a terminal emulator, or if you're on Windows look into installing "cygwin,"
diff --git a/_posts/2012-02-03-the-shibboleth-project-and-web-authentication-at-osu.md b/_posts/2012-02-03-the-shibboleth-project-and-web-authentication-at-osu.md
index 6274a1bcb..3114b7b54 100644
--- a/_posts/2012-02-03-the-shibboleth-project-and-web-authentication-at-osu.md
+++ b/_posts/2012-02-03-the-shibboleth-project-and-web-authentication-at-osu.md
@@ -4,7 +4,7 @@ title: The Shibboleth Project and Web Authentication at OSU
 created: 1328284639
 alias: /wi12/shibboleth.html
 categories: announcements
-tags: announcements
+tags: announcements, shibboleth
 ---
 This Thursday at 7:00PM, in [Dreese Lab](http://www.osu.edu/map/building.php?building=279) room 266, Scott Cantor will be presenting on OSU's [central web-based authentication](https://webauth.service.ohio-state.edu/%7Eshibboleth/) system, [Shibboleth](http://shibboleth.internet2.edu/). Many of Ohio State's web-based applications and services rely on this open source project for authentication of students and employees and to obtain information about those users for personalization or limiting access to authorized users.
 
diff --git a/_posts/2012-02-07-introduction-to-gimp-image-editing.md b/_posts/2012-02-07-introduction-to-gimp-image-editing.md
index f393385a6..623fff461 100644
--- a/_posts/2012-02-07-introduction-to-gimp-image-editing.md
+++ b/_posts/2012-02-07-introduction-to-gimp-image-editing.md
@@ -4,7 +4,7 @@ title: Introduction to GIMP Image Editing
 created: 1328676642
 alias: /wi12/gimp.html
 categories: announcements
-tags: announcements
+tags: announcements, raster, image manipulation, photoshop
 ---
 This Thursday at 7:00PM, in [Dreese Lab](http://www.osu.edu/map/building.php?building=279) room 266, Brian Swaney will be teaching us the basics of [GIMP](http://www.gimp.org/) image editing. This presentation primarily will focus basic tools including but not limited to [cloning](http://docs.gimp.org/2.6/en/gimp-tool-clone.html)/[healing](http://docs.gimp.org/2.6/en/gimp-tool-heal.html), [layer](http://docs.gimp.org/en/gimp-image-combining.html) [masking](http://docs.gimp.org/2.6/en/gimp-layer-mask-menu.html), [fine](http://docs.gimp.org/2.6/en/gimp-using-paths-and-selections.html) [selections](http://docs.gimp.org/2.6/en/gimp-tool-iscissors.html), and [basic](http://docs.gimp.org/2.6/en/gimp-tool-rotate.html) [image](http://docs.gimp.org/2.6/en/gimp-tool-scale.html) [transformations](http://docs.gimp.org/2.6/en/gimp-tool-crop.html). To demonstrate that GIMP is on the same playing field as [other proprietary and expensive image editors](https://www.adobe.com/products/photoshopextended.html), some more [advanced techniques](https://www.youtube.com/watch?v=3RtFt6axp5s) may also be discussed if time allows. The talk is interactive, and use of a laptop with GIMP already installed is encouraged, but no prior experience with image editors is necessary. Nonetheless, the talk shall be informative for even experienced image editors.
 
diff --git a/_posts/2012-02-21-personal-projects.md b/_posts/2012-02-21-personal-projects.md
index 4a9ff5a1f..0159c0464 100644
--- a/_posts/2012-02-21-personal-projects.md
+++ b/_posts/2012-02-21-personal-projects.md
@@ -4,6 +4,6 @@ title: Personal Projects
 created: 1329872566
 alias: /sp12/projects.html
 categories: announcements
-tags: announcements
+tags: announcements, projects
 ---
 Thursday, February 23rd at 7:00PM in Dreese 266 various club members will be presenting personal projects. If you're working on anything, feel free to bring it in to show off!
diff --git a/_posts/2012-03-08-arduino-and-open-source-hardware.md b/_posts/2012-03-08-arduino-and-open-source-hardware.md
index 4a7726dcc..d08804767 100644
--- a/_posts/2012-03-08-arduino-and-open-source-hardware.md
+++ b/_posts/2012-03-08-arduino-and-open-source-hardware.md
@@ -4,7 +4,7 @@ title: Arduino and Open Source Hardware
 created: 1331258698
 alias: /au12/ardunio.html
 categories: announcements
-tags: announcements
+tags: announcements, ardunio, embedded
 ---
 THIS WEEK IN OPEN SOURCE!:
 
diff --git a/_posts/2012-04-05-portable-unix-shell-scripting.md b/_posts/2012-04-05-portable-unix-shell-scripting.md
index 07ff01fe5..0864ced2b 100644
--- a/_posts/2012-04-05-portable-unix-shell-scripting.md
+++ b/_posts/2012-04-05-portable-unix-shell-scripting.md
@@ -3,6 +3,6 @@ layout: html/default
 title: Portable Unix Shell Scripting
 created: 1333647937
 categories: announcements
-tags: announcements
+tags: announcements, shell, scripting, shellscript, bash, cli, terminal
 ---
 Thursday, April 5th 2012 at 7:00PM in [Dreese Lab](http://www.osu.edu/map/building.php?building=279) room 359, Daniel Thau will present on Portable Unix Shell Scripting. This presentation will partially depend on last quarter's Unix Utility talk, but if you missed it you should still be fine.
diff --git a/_posts/2012-04-10-sage-mathematics.md b/_posts/2012-04-10-sage-mathematics.md
index dd5999c1d..4c6e88dc9 100644
--- a/_posts/2012-04-10-sage-mathematics.md
+++ b/_posts/2012-04-10-sage-mathematics.md
@@ -4,6 +4,6 @@ title: Sage Mathematics
 created: 1334079533
 alias: /sp12/sage-mathematics.html
 categories: announcements
-tags: announcements
+tags: announcements, mathematica
 ---
 On Thursday the 12th, in [Dreese Lab](http://www.osu.edu/map/building.php?building=279) room 369, Daniel Thau will present the Sage mathematics program. Sage is intended to be an open source alternative to software such as Magma, Maple, Mathematica and Matlab. Based around Python, it is quite pleasant to script and surprising capable.
diff --git a/_posts/2012-04-17-blender-3d-modeling-and-short-films.md b/_posts/2012-04-17-blender-3d-modeling-and-short-films.md
index 39617f3b1..cf9fa7bf1 100644
--- a/_posts/2012-04-17-blender-3d-modeling-and-short-films.md
+++ b/_posts/2012-04-17-blender-3d-modeling-and-short-films.md
@@ -4,7 +4,7 @@ title: Blender 3D Modeling & Short Films
 created: 1334712220
 alias: /sp12/blender.html
 categories: announcements
-tags: announcements
+tags: announcements, 3d, animation
 ---
 Thursday, April 19th at 7:00PM in Dreese 369, Alex Lingo will demonstrating the basic usage of the Blender 3D modeling/rendering program. Blender is an powerful open-source application that is as powerful as professional 3D modeling packages, and has been used to create commercial and open-source 3D films. Several of the Open Movie Project films will be shown during the presentation!
 
diff --git a/_posts/2012-04-23-this-week-in-slashdot.md b/_posts/2012-04-23-this-week-in-slashdot.md
index ed30d467a..869c09887 100644
--- a/_posts/2012-04-23-this-week-in-slashdot.md
+++ b/_posts/2012-04-23-this-week-in-slashdot.md
@@ -3,6 +3,6 @@ layout: html/default
 title: This Week In Slashdot
 created: 1335219799
 categories: announcements
-tags: announcements
+tags: announcements, slashdot
 ---
 Thursday, April 26th at 7PM in Caldwell 369, Alex Lingo will be presenting an old club favorite known as "This Week in Slashdot". Slashdot (commonly abbreviated as /.) is a website located at http://slashdot.org that deals in news for the nerdy. Readers submit articles which are then accepted or rejected by editors and then published on the site. From there, the readers have huge discussions about every aspect of the article which can be very funny/interesting/insightful/etc and oft prove to be a very good read. Historically, the site has a history of having a pro open source bias, which is why we like it. Alex would like to take this format and apply it to a club meeting so that we can have similar discussions amongst our members in real time. No prior knowledge of /., or goings on in the world, is necessary to participate. Read slashdot prior to the meeting if you wish and bring your thoughts, opinions, ideas, rants, raves and what have you. I hope to see you all there, we love a good discussion!
diff --git a/_posts/2012-05-01-android.md b/_posts/2012-05-01-android.md
index 11a093811..f108ad5ea 100644
--- a/_posts/2012-05-01-android.md
+++ b/_posts/2012-05-01-android.md
@@ -3,6 +3,6 @@ layout: html/default
 title: Android
 created: 1335878392
 categories: announcements
-tags: announcements
+tags: announcements, android, java
 ---
 Thursday, May 3rd at 7PM in Dreese 369, Brad Hollander will be presenting the Android operating system. Android is Google's open-source mobile operating system for smartphones and tablets, built on top of a customized Linux kernel. Applications are written in Java and are compiled to be run on the Dalvik virtual machine.
diff --git a/_posts/2012-05-07-osc-spring-lan.md b/_posts/2012-05-07-osc-spring-lan.md
index 241018dbf..321ffda0d 100644
--- a/_posts/2012-05-07-osc-spring-lan.md
+++ b/_posts/2012-05-07-osc-spring-lan.md
@@ -4,7 +4,7 @@ title: OSC Spring LAN
 created: 1336407858
 alias: /sp12/osc-spring-lan.html
 categories: announcements
-tags: announcements
+tags: announcements, lan, party
 ---
 The OSC will be hosting its second LAN of the academic year on May 12th, 2012.
 
diff --git a/_posts/2012-05-07-python.md b/_posts/2012-05-07-python.md
index f12c77316..6a845d7d3 100644
--- a/_posts/2012-05-07-python.md
+++ b/_posts/2012-05-07-python.md
@@ -4,7 +4,7 @@ title: Python
 created: 1336407588
 alias: /sp12/python.html
 categories: announcements
-tags: announcements
+tags: announcements, python, language
 ---
 This Thursday, will be a presentation on Python. This presentation will cover many of the basics and bring people up to speed of creating applications in the language. The crash course into Python's basics will be "follow along" and questions are encouraged. The later half of the presentation will be presenting clever and nifty ways to accomplish various tasks that can be done in Python that are easier than building in other languages. A tour of the standard library is expected along with a tour of some open source Python projects that can be implemented into anything you may want to create.
 
diff --git a/_posts/2012-05-21-bedrock-linux.md b/_posts/2012-05-21-bedrock-linux.md
index 06b6af40b..0553097c0 100644
--- a/_posts/2012-05-21-bedrock-linux.md
+++ b/_posts/2012-05-21-bedrock-linux.md
@@ -4,6 +4,6 @@ title: Bedrock Linux
 created: 1337629005
 alias: /sp12/bedrock.html
 categories: announcements
-tags: announcements
+tags: announcements, bedrock, linux, os
 ---
 Thursday, May 24th at 7:00PM in Dreese 369, Daniel Thau will be presenting Bedrock Linux.  Bedrock Linux is a Linux distribution created by Daniel with the aim of making most of the (often seemingly mutually-exclusive) benefits of various other Linux distributions available simultaneously and transparently.  For example, if one would like a rock-solid stable base (for example, from Debian or a RHEL clone) yet still have easy access to cutting-edge packages (from, say, Arch Linux), Bedrock will provide a means to achieve this.
diff --git a/_posts/2012-05-29-personal-projects.md b/_posts/2012-05-29-personal-projects.md
index 725b5e642..8d0ff79d0 100644
--- a/_posts/2012-05-29-personal-projects.md
+++ b/_posts/2012-05-29-personal-projects.md
@@ -3,6 +3,6 @@ layout: html/default
 title: Personal Projects
 created: 1338314284
 categories: announcements
-tags: announcements
+tags: announcements, projects
 ---
 Thursday, May 31st at 7:00PM in Dreese 369, We will be presenting personal projects which is my favorite meeting. So come with your projects in hand and ready to show off and we will get through as many as possible.
diff --git a/_posts/2012-06-28-irc-channel-moved-to-osuosc.md b/_posts/2012-06-28-irc-channel-moved-to-osuosc.md
index 40ec4dc4f..ef7c8df26 100644
--- a/_posts/2012-06-28-irc-channel-moved-to-osuosc.md
+++ b/_posts/2012-06-28-irc-channel-moved-to-osuosc.md
@@ -4,6 +4,6 @@ title: 'IRC Channel moved to #osuosc'
 created: 1340929308
 alias: /irc/new-channel.html
 categories: announcements
-tags: announcements
+tags: announcements, irc
 ---
 Our IRC channel #osu_osc has been moved over to #osuosc on freenode. The older channel is currently setup to forward people over to the newer channel. This was done for several reasons, a few of which are to make our channel name match up with the cloaks we provide ([more about how freenode operates](https://freenode.net/group_registration.shtml)), and simplify the channel name. A few new things you may notice, besides the name, are that everyone is +v (voiced) upon joining the channel and a few new modes set. The voice is [a work around](http://swhack.com/logs/2011-03-08#T18-50-27) for those who the IRCd may consider typing too fast or pasting anything more than a few lines. Also those with the @osuosc/* cloaks are +e and +I'ed on the room. The +e means that those with the cloaks are exempt from any bans or quiets, and the +I means that those with the cloaks can join if the room becomes +i for any reason in the future (even if temporarily). The ACL (Access Control List) remains the same from the previous room, /msg ChanServ access #osuosc list. For an explanation of all the channel modes set at any give time you can pull up help in two places: **/quote help cmode** or [freenode's guide to "Using the network"](https://freenode.net/using_the_network.shtml). (Note the /quote command also works for user modes too, **/quote help umode**.) Also at this time the channel #osuosc-ops was created for those who have privileges on #osuosc to handle any type of dispute that may arise in the future from a ban. This channel will primarily be for handling any type of disputes that may arise from a ban or any other channel management. This channel is logged for internal use of the ops. The rules for the channel remain the same as previously set and remember the channel is still logged.
diff --git a/_posts/2012-08-16-first-meeting-what-is-open-source.md b/_posts/2012-08-16-first-meeting-what-is-open-source.md
index 99ed020dd..d436e211e 100644
--- a/_posts/2012-08-16-first-meeting-what-is-open-source.md
+++ b/_posts/2012-08-16-first-meeting-what-is-open-source.md
@@ -3,7 +3,7 @@ layout: html/default
 title: 'First Meeting: What is Open Source?'
 created: 1345173953
 categories: announcements
-tags: announcements
+tags: announcements, first
 ---
 Thursday, August 23rd at 7:00 PM in Dreese Labs room 266, The Ohio State University Open Source Club will have its first meeting of the 2012-2013 academic year. Paul Schwendenman, this year's president, will be giving an introduction to what it means for something to be Open Source- hopefully helping to explain to any potential new members what the club is really about.
 
diff --git a/_posts/2012-08-24-wi-fi-hacking.md b/_posts/2012-08-24-wi-fi-hacking.md
index f51fd9069..2ac97acd1 100644
--- a/_posts/2012-08-24-wi-fi-hacking.md
+++ b/_posts/2012-08-24-wi-fi-hacking.md
@@ -4,7 +4,7 @@ title: Wi-Fi Hacking
 created: 1345834176
 alias: /au12/wi-fi-hacking.html
 categories: announcements
-tags: announcements
+tags: announcements, hack, wifi, wireless, security, privacy
 ---
 I, Michael Yanovich, will be covering Wi-Fi Hacking on 2012/08/30 at 7:00pm (20120830T1900-0400 for those who love ISO8601 compliant dates) in Dreese Labs 266. What I want people to walk away from this talk with is the knowledge of how to try to protect their Access Points (AP) the best they can with currently available technology. I will start off with a basic introduction into simple Electricity and Magnetism (E&M) and quickly move into some of the layers of the OSI Model of networking involved. The bulk of the talk will be a live demonstration of testing the security of WEP and WPA (1 and 2). I encourage people to follow along and learn the most they can about wireless security. I'm bringing my own equipment for us to attack and I'm giving permission to those who attend to help out and to help show off the weakness of various types of security implementations that I will be demonstrating. I also have surprise raw data information about wifi access points in the Columbus area that will definitely be a treat!
 
diff --git a/_posts/2012-09-03-android.md b/_posts/2012-09-03-android.md
index 8fb09d517..f1b796d9d 100644
--- a/_posts/2012-09-03-android.md
+++ b/_posts/2012-09-03-android.md
@@ -4,6 +4,6 @@ title: Android
 created: 1346714421
 alias: /au12/android.html
 categories: announcements
-tags: announcements
+tags: announcements, java, android, sdk
 ---
 This Thursday, September 6th at 7:00 pm in Dreese 266, Brad Hollander will be presenting the Android operating system. Android is Google's open-source mobile operating system for smartphones and tablets, built on top of a customized Linux kernel. Applications are written in Java and are compiled to be run on the Dalvik virtual machine. All are welcome and as always, there will be pizza.
diff --git a/_posts/2012-09-07-autumn-lan-party.md b/_posts/2012-09-07-autumn-lan-party.md
index b9904992c..2a6c064ca 100644
--- a/_posts/2012-09-07-autumn-lan-party.md
+++ b/_posts/2012-09-07-autumn-lan-party.md
@@ -3,7 +3,7 @@ layout: html/default
 title: Autumn LAN Party
 created: 1347075018
 categories: announcements
-tags: announcements
+tags: announcements, lan, party
 ---
 Good news everyone!
 
diff --git a/_posts/2012-09-07-emacs.md b/_posts/2012-09-07-emacs.md
index 54a7ea6e0..bb6a419a6 100644
--- a/_posts/2012-09-07-emacs.md
+++ b/_posts/2012-09-07-emacs.md
@@ -4,7 +4,7 @@ title: Emacs
 created: 1347041738
 alias: /au12/emacs.html
 categories: announcements
-tags: announcements
+tags: announcements, emacs, os
 ---
 This Thursday, September 13th at 7:00 pm in Dreese 266, Maxim Kim will be presenting the Emacs text editor.
 
diff --git a/_posts/2012-09-14-blender.md b/_posts/2012-09-14-blender.md
index c693f28d7..9a6257e26 100644
--- a/_posts/2012-09-14-blender.md
+++ b/_posts/2012-09-14-blender.md
@@ -4,7 +4,7 @@ title: Blender
 created: 1347645408
 alias: /au12/blender.html
 categories: announcements
-tags: announcements
+tags: announcements, 3d, animation
 ---
 This Thursday, September 20 at 7:00 pm in Dreese Labs 266, Steffan Pease will be presenting the Blender 3D Computer Graphics Software. Blender is a powerful open source application used for creating animated films, visual effects, interactive 3D applications or video games ([source](http://en.wikipedia.org/wiki/Blender_(software))). This will be interactive, as we will be making an example mesh, and texturing it with ambient occlusion and color.
 
diff --git a/_posts/2012-10-01-open-source-and-your-music.md b/_posts/2012-10-01-open-source-and-your-music.md
index 1e34ce2c8..d5703fca6 100644
--- a/_posts/2012-10-01-open-source-and-your-music.md
+++ b/_posts/2012-10-01-open-source-and-your-music.md
@@ -4,7 +4,7 @@ title: Open Source and Your Music
 created: 1349123594
 alias: /au12/open-source-and-your-music.html
 categories: announcements
-tags: announcements
+tags: announcements, audio, music
 ---
 Hello everyone!
 
diff --git a/_posts/2012-10-03-october-2012-lan-party.md b/_posts/2012-10-03-october-2012-lan-party.md
index b10645a0e..d32bb9212 100644
--- a/_posts/2012-10-03-october-2012-lan-party.md
+++ b/_posts/2012-10-03-october-2012-lan-party.md
@@ -3,7 +3,7 @@ layout: html/default
 title: October 2012 Lan Party
 created: 1349291911
 categories: announcements
-tags: announcements
+tags: announcements, lan, party
 ---
 This Saturday, from 12:00pm - 10:00pm in the Ohio Union Interfaith Prayer and Reflection Room, The Ohio State University Open Source Club will present it's **_second_** LAN Party of the autumn semester. Come out and join, meeting Open Source Club members and playing games (both open and closed source). The games include:
 
diff --git a/_posts/2012-10-04-introduction-to-vim.md b/_posts/2012-10-04-introduction-to-vim.md
index 7ed0b3c2b..70a96fbe7 100644
--- a/_posts/2012-10-04-introduction-to-vim.md
+++ b/_posts/2012-10-04-introduction-to-vim.md
@@ -4,7 +4,7 @@ title: Introduction to Vim
 created: 1349406655
 alias: /au12/vim-intro.html
 categories: announcements
-tags: announcements
+tags: announcements, vim
 ---
 Thursday, October 11th at 7:00PM in Dreese Labs 264, Daniel Thau will be presenting an introduction to the Vim text editor.  Vim is known for having a difficult learning curve, but for many of those who do any appreciable amount of work editing text (such as, but not limited to, programming), the benefits can far outweigh the costs.
 
diff --git a/_posts/2012-10-21-advanced-overview-of-vim.md b/_posts/2012-10-21-advanced-overview-of-vim.md
index bfd4df4cc..19b11ef2e 100644
--- a/_posts/2012-10-21-advanced-overview-of-vim.md
+++ b/_posts/2012-10-21-advanced-overview-of-vim.md
@@ -4,7 +4,7 @@ title: Advanced Overview of Vim
 created: 1350847223
 alias: /au12/advanced-overview-vim.html
 categories: announcements
-tags: announcements
+tags: announcements, vim, cli
 ---
 Thursday, October 25th at 7:00PM in Dreese Labs 266, Daniel Thau will be presenting an overview of various advanced functionality for the Vim text editor.  This talk is not intended to fully educate the audience on the use of the discussed functionality so much as make the audience aware of the advanced functionality Vim has to offer in order to have something to work towards.  Comfort with the basics of Vim would be useful but not required.
 
diff --git a/_posts/2012-10-30-open-stack.md b/_posts/2012-10-30-open-stack.md
index e1bc843a4..2104c5303 100644
--- a/_posts/2012-10-30-open-stack.md
+++ b/_posts/2012-10-30-open-stack.md
@@ -4,7 +4,7 @@ title: Open Stack
 created: 1351635395
 alias: /au12/open-stack.html
 categories: announcements
-tags: announcements
+tags: announcements, devops
 ---
 This Thursday, November 1st at 7:00PM in Dreese Labs 266, Joel Friedly will be presenting an overview of OpenStack.
 
diff --git a/_posts/2012-11-06-forensic-analysis.md b/_posts/2012-11-06-forensic-analysis.md
index e927c6f79..7626230c5 100644
--- a/_posts/2012-11-06-forensic-analysis.md
+++ b/_posts/2012-11-06-forensic-analysis.md
@@ -4,7 +4,7 @@ title: Forensic Analysis
 created: 1352230012
 alias: /au12/forensic-analysis.html
 categories: announcements
-tags: announcements
+tags: announcements, forensics
 ---
 This week's meeting will include a presentation by C. Matthew Curtin, the first faculty advisor of our club as well as a Lecturer in the Department of Computer Science and Engineering.  He is the founder of Interhack, a computer expert firm with offices in Columbus and Chicago.  With clients across North America, Interhack consults in high-stakes situations including data breaches, mission-critical system failure, and forensic analysis of computer systems and data in complex litigation.
 
diff --git a/_posts/2012-11-15-ardunio.md b/_posts/2012-11-15-ardunio.md
index bf6eb473c..8bf380409 100644
--- a/_posts/2012-11-15-ardunio.md
+++ b/_posts/2012-11-15-ardunio.md
@@ -4,6 +4,6 @@ title: Ardunio
 created: 1353001583
 alias: /sp12/arduino.html
 categories: announcements
-tags: announcements
+tags: announcements, embedded
 ---
 Ryan Karason will be demonstrating open source hardware. The purpose of the lecture is to discuss the basic principles of electricity as applied to circuitry and to introduce the open hardware prototyping platform created by Arduino. If you are interested in getting involved in making your own circuits or better understanding others' circuits so you can hack them, show up this Thursday; November 15, 2012 at 7PM in 266 Dreese Laboratory.
diff --git a/_posts/2012-11-27-personal-projects.md b/_posts/2012-11-27-personal-projects.md
index d70e162fa..2ce012f79 100644
--- a/_posts/2012-11-27-personal-projects.md
+++ b/_posts/2012-11-27-personal-projects.md
@@ -3,7 +3,7 @@ layout: html/default
 title: Personal Projects
 created: 1354040393
 categories: announcements
-tags: announcements
+tags: announcements, projects
 ---
 Hello everyone!
 
diff --git a/_posts/2013-01-08-open-source-operating-systems-and-semester-planning.md b/_posts/2013-01-08-open-source-operating-systems-and-semester-planning.md
index 797b011cb..b9000e1d6 100644
--- a/_posts/2013-01-08-open-source-operating-systems-and-semester-planning.md
+++ b/_posts/2013-01-08-open-source-operating-systems-and-semester-planning.md
@@ -4,7 +4,7 @@ title: Open Source Operating Systems and Semester Planning
 created: 1357660813
 alias: /sp13/open-source-operating-systems-and-semester-planning.html
 categories: announcements
-tags: announcements
+tags: announcements, os
 ---
 This week, Thursday 2013/01/10 at 7pm in Dreese 369, The Ohio State University Open Source Club will be presenting Free and Open Source Operating Systems- An Overview, introduction, and discussion. Members of the club will present different open source operating systems, with the end goal of making everyone more knowledgeable on the variety of distributions out there.
 
diff --git a/_posts/2013-01-14-the-command-line.md b/_posts/2013-01-14-the-command-line.md
index 4810c0959..27ca04d77 100644
--- a/_posts/2013-01-14-the-command-line.md
+++ b/_posts/2013-01-14-the-command-line.md
@@ -4,7 +4,7 @@ title: The Command Line
 created: 1358178548
 alias: /sp13/command-line.html
 categories: announcements
-tags: announcements
+tags: announcements, cli, terminal, bash, shell
 ---
 Hello everyone!
 
diff --git a/_posts/2013-01-22-irc.md b/_posts/2013-01-22-irc.md
index a92141ef4..18136d470 100644
--- a/_posts/2013-01-22-irc.md
+++ b/_posts/2013-01-22-irc.md
@@ -3,7 +3,7 @@ layout: html/default
 title: IRC
 created: 1358880672
 categories: announcements
-tags: announcements
+tags: announcements, irc
 ---
 This Thursday, 2013/01/24 at 7:00pm (EST, -5G MT) in Dreese Labs 369, Michael Yanovich will take you upon a journey of exploring the depths of IRC. He will be covering: what IRC is, what IRC is used for, and most importantly how to interface with IRC. From general observations, it appears that many in the club use IRC and many more would like to participate in the IRC channel #osuosc on freenode. (#osuosc webchat) The goal of this talk is to provide information on using IRC in a terminal that is remotely connected a dedicated machine running a GNU/Linux variant in a way that facilitates easy access and optimal uptime. While there exist countless IRC clients for countless platforms this talk is going to focus on using IRC from a GNU/Linux machine that is left on 24/7, "dedicated", so that one can SSH into the machine (from Windows, Mac and GNU/Linux) and pull up their session the way they left it. This is often called "idling" and most people on the larger IRC networks often "idle". The software combination that will be described in detail for this talk is WeeChat and tmux. If you would like to follow along, please bring a laptop running a GNU/Linux variant and have a working Internet connection. There will be no slides and this will be a live demonstration of how to set up WeeChat and tmux on the GNU/Linux distribution Debian 6 "Squeeze".
 

diff --git a/_posts/2013-01-24-gimp-image-editing.md b/_posts/2013-01-24-gimp-image-editing.md index 388d51f94..9d7f0378d 100644 --- a/_posts/2013-01-24-gimp-image-editing.md +++ b/_posts/2013-01-24-gimp-image-editing.md @@ -4,7 +4,7 @@ title: GIMP Image Editing created: 1359058368 alias: /sp13/gimp.html categories: announcements -tags: announcements +tags: announcements, gimp, image manipulation, raster, photoshop --- This Thursday at 7 pm, in Dreese Lab 369, Brian Swaney will teach us GIMP image editing techniques. The presentation will be interactive and encourage audience participation, so you should bring a laptop with GIMP already installed to follow along. Some techniques covered may include [cloning](http://docs.gimp.org/2.6/en/gimp-tool-clone.html)/[healing](http://docs.gimp.org/2.6/en/gimp-tool-heal.html), [layer](http://docs.gimp.org/en/gimp-image-combining.html) [masking](http://docs.gimp.org/2.6/en/gimp-layer-mask-menu.html), [fine](http://docs.gimp.org/2.6/en/gimp-using-paths-and-selections.html) [selections](http://docs.gimp.org/2.6/en/gimp-tool-iscissors.html), and [basic](http://docs.gimp.org/2.6/en/gimp-tool-rotate.html) [image](http://docs.gimp.org/2.6/en/gimp-tool-scale.html) [transformations](http://docs.gimp.org/2.6/en/gimp-tool-crop.html). Some more [advanced techniques](https://www.youtube.com/watch?v=3RtFt6axp5s) may be covered if time allows, just to show that GIMP can live up to the same standard as _other editors whose names are withheld due to trademark licensing concerns_, but no prior experience is required. diff --git a/_posts/2013-02-04-introduction-to-android-development-by-harris.md b/_posts/2013-02-04-introduction-to-android-development-by-harris.md index 41b6192ee..bcbe7eb84 100644 --- a/_posts/2013-02-04-introduction-to-android-development-by-harris.md +++ b/_posts/2013-02-04-introduction-to-android-development-by-harris.md @@ -4,7 +4,7 @@ title: Introduction to Android Development by Harris created: 1360013376 alias: /sp13/introduction-android-development-harris.html categories: announcements -tags: announcements +tags: announcements, java, android --- Hello everyone! diff --git a/_posts/2013-02-11-getting-the-most-battery-out-of-your-laptop.md b/_posts/2013-02-11-getting-the-most-battery-out-of-your-laptop.md index 037a6ab6b..d1a93407c 100644 --- a/_posts/2013-02-11-getting-the-most-battery-out-of-your-laptop.md +++ b/_posts/2013-02-11-getting-the-most-battery-out-of-your-laptop.md @@ -4,6 +4,6 @@ title: Getting the Most Battery out of Your Laptop created: 1360605846 alias: /sp13/getting-most-battery-out-your-laptop.html categories: announcements -tags: announcements +tags: announcements, battery --- This Thursday, 2013/02/14 at 7pm in Dreese Labs 369, Daniel Thau will be presenting techniques to maximize battery life on a Linux laptop. With the techniques which will be presented, it is not unusual for laptops to have battery lives that actually outlast manufacturer's advertised specifications; for example, Daniel's Lenovo x230 with a 94Wh battery tends to last upwards of 12 hours in real-world conditions. If you *really* love your laptop, and want to show it how much you care this Valentine's day, this presentation will show you how to treat it right. diff --git a/_posts/2013-02-18-willie-the-irc-bot.md b/_posts/2013-02-18-willie-the-irc-bot.md index f5d31b747..2d3ab9e29 100644 --- a/_posts/2013-02-18-willie-the-irc-bot.md +++ b/_posts/2013-02-18-willie-the-irc-bot.md @@ -4,7 +4,7 @@ title: Willie the IRC bot created: 1361200539 alias: /sp13/willie-irc-bot.html categories: announcements -tags: announcements +tags: announcements, bot, irc --- This Thursday, 2013/02/21 at 7pm in Dreese Labs 369, Edward Powell will be presenting on the Willie IRC bot. The bot has all sorts of cool features, like the ability to retrieve your time and weather, or the upvotes on a Reddit post, all from within an IRC channel. Even better, it's designed to make it easy for you to write your own features, with a simple and featureful API. Both the API and the included features will be covered, along with some information about how the bot works behind the scenes. diff --git a/_posts/2013-02-25-raspberry-pi.md b/_posts/2013-02-25-raspberry-pi.md index 7c86fe966..bb494fed1 100644 --- a/_posts/2013-02-25-raspberry-pi.md +++ b/_posts/2013-02-25-raspberry-pi.md @@ -4,7 +4,7 @@ title: Raspberry Pi created: 1361826453 alias: /sp13/raspberry-pi.html categories: announcements -tags: announcements +tags: announcements, pi, embedded, hardware --- This Thursday, 2013/02/28 at 7pm in Dreese Labs 369, the Ohio State Open Source Club will be presenting "Raspberry Pi: All that you can do for $35." This meeting will consist at first with a presentation by Chris Wallace into what this little guy is all about, followed by a series consisting primarily of members sharing their experiences with the Raspberry Pi, a $35 computer platform about the size of a credit card ([http://raspberrypi.org/](http://www.raspberrypi.org/)). Come on down and check out the neat computer and hobby projects we have been up to in our spare time, and get an idea of all the possibilities out there for a computer that fits in your hand! diff --git a/_posts/2013-03-04-distributed-version-control.md b/_posts/2013-03-04-distributed-version-control.md index e53b6cbc1..3bd468e37 100644 --- a/_posts/2013-03-04-distributed-version-control.md +++ b/_posts/2013-03-04-distributed-version-control.md @@ -4,7 +4,7 @@ title: Distributed Version Control created: 1362378684 alias: /sp13/distributed-version-control.html categories: announcements -tags: announcements +tags: announcements, vc, version control, git --- This Thursday, 2013/03/07 at 7pm in Dreese Labs 369, the Ohio State Open Source Club will be presenting "Distributed Version Control v1" This meeting will be presented by Paul Schwendenman. diff --git a/_posts/2013-03-18-shell-scripting.md b/_posts/2013-03-18-shell-scripting.md index d4e9f9e5d..505c82bf1 100644 --- a/_posts/2013-03-18-shell-scripting.md +++ b/_posts/2013-03-18-shell-scripting.md @@ -4,7 +4,7 @@ title: Shell Scripting created: 1363638199 alias: /sp13/shell-scripting.html categories: announcements -tags: announcements +tags: announcements, shell, terminal, shellscript, scripting, bash --- Thursday, March 21nd, 2013 in Dreese Labs 369, Daniel Thau will present an introduction to POSIX Bourne shell scripting. A general familiarity with a UNIX command line environment and UNIX utilities (grep, sed, awk, etc) will be useful but not required. If you've ever expressed interest in making your life easier at the command line, this could be the talk for you. diff --git a/_posts/2013-03-25-python.md b/_posts/2013-03-25-python.md index 758453f0b..49b81595b 100644 --- a/_posts/2013-03-25-python.md +++ b/_posts/2013-03-25-python.md @@ -4,6 +4,6 @@ title: Python created: 1364227683 alias: /sp13/python.html categories: announcements -tags: announcements +tags: announcements, language, python --- This Thursday, 2013/03/28 at 7pm in Dreese Labs 369, Edward Powell will be presenting an introduction to the Python programming language. The presentation will be a follow-along crash course in the language. It will cover the basics of the language and key parts of the standard library, as well as some interesting third-party libraries. It will also include some of the cooler advanced features, and some interesting ways you can use Python to make quick and easy solutions to problems. diff --git a/_posts/2013-03-25-richard-stallman-visiting-osu.md b/_posts/2013-03-25-richard-stallman-visiting-osu.md index 302469aef..f268e0692 100644 --- a/_posts/2013-03-25-richard-stallman-visiting-osu.md +++ b/_posts/2013-03-25-richard-stallman-visiting-osu.md @@ -4,7 +4,7 @@ title: Richard Stallman visiting OSU created: 1364222208 alias: /sp13/richard-stallman-visiting-osu.html categories: announcements -tags: announcements +tags: announcements, rms, fsf, free, gnu, stallman, emacs --- This Monday, Richard Stallman is visiting OSU as a guest lecturer in the computer science department. His presentation will be at 4 pm in the [Journalism Building](http://www.osu.edu/map/building.php?building=046), room 300, and the lecture is open to the public. diff --git a/_posts/2013-04-08-security-and-elections.md b/_posts/2013-04-08-security-and-elections.md index 4da188f85..8e7d2ca4c 100644 --- a/_posts/2013-04-08-security-and-elections.md +++ b/_posts/2013-04-08-security-and-elections.md @@ -4,7 +4,7 @@ title: Security and Elections created: 1365454195 alias: /sp13/security-and-elections.html categories: announcements -tags: announcements +tags: announcements, security --- This Thursday, 2013/04/11 at 7:00pm in Dreese Labs 369, the Ohio State Open Source Club will be presenting Security. This will be a talk consisting of multiple members going up and speaking about different topics in the open source world of security. diff --git a/_posts/2013-08-17-what-is-open-source.md b/_posts/2013-08-17-what-is-open-source.md index a53d1ec39..53ee97b17 100644 --- a/_posts/2013-08-17-what-is-open-source.md +++ b/_posts/2013-08-17-what-is-open-source.md @@ -4,7 +4,7 @@ title: What is Open Source created: 1376769457 alias: /au13/what-open-source.html categories: announcements -tags: announcements +tags: announcements, first --- This Thursday 2013/08/22 at 7pm in Dreese Labs 266, Chris Wallace will present our very first meeting of the 2013-2014 academic year ``What is Open Source''. As in the past, this first meeting will serve as an introduction to what the term open source means and is about, as well as what we do in this club. We will also discuss current privacy issues (PRISM and friends), and free/open source alternatives to popular products. diff --git a/_posts/2013-09-02-introduction-to-command-line.md b/_posts/2013-09-02-introduction-to-command-line.md index 1b91b074d..8a98c3407 100644 --- a/_posts/2013-09-02-introduction-to-command-line.md +++ b/_posts/2013-09-02-introduction-to-command-line.md @@ -4,7 +4,7 @@ title: Introduction to Command Line created: 1378165847 alias: /au13/introduction-command-line.html categories: announcements -tags: announcements +tags: announcements, cli, howto, terminal --- This Thursday, September 5th at 7pm in Caldwell Labs 120, Brad Hollander will present ``Introduction to the Command Line''. This presentation/lecture is geared toward beginner users of the GNU/Linux OS, with an end goal of getting participants comfortable in a shell environment. Questions will be welcome at any time throughout the presentation as well. diff --git a/_posts/2013-09-08-overview-of-web-servers.md b/_posts/2013-09-08-overview-of-web-servers.md index cbdf48a29..622652b8a 100644 --- a/_posts/2013-09-08-overview-of-web-servers.md +++ b/_posts/2013-09-08-overview-of-web-servers.md @@ -4,7 +4,7 @@ title: Overview of Web Servers created: 1378671092 alias: /au13/overview-web-servers.html categories: announcements -tags: announcements +tags: announcements, hosting, servers --- This Thursday, September 12, in Caldwell Labs 120, Matt Meinwald will discuss Free HTTP servers, including Apache, Lighttpd, and Nginx. He will go over some of the benefits and limitations of each, and also compare configuration. Some command-line knowledge would be helpful, but no prior web server experience is needed. You will not necessarily walk out an expert on web servers, but by the end of the meeting, you should have the resources to set up a basic web server. diff --git a/_posts/2013-09-12-connecting-to-irc.md b/_posts/2013-09-12-connecting-to-irc.md index dbefa507b..45b790c69 100644 --- a/_posts/2013-09-12-connecting-to-irc.md +++ b/_posts/2013-09-12-connecting-to-irc.md @@ -3,7 +3,7 @@ layout: html/default title: Connecting to IRC created: 1378959734 categories: announcements -tags: announcements +tags: announcements, irc --- #### Foreward diff --git a/_posts/2013-09-16-wireless-security.md b/_posts/2013-09-16-wireless-security.md index da330208a..53001c006 100644 --- a/_posts/2013-09-16-wireless-security.md +++ b/_posts/2013-09-16-wireless-security.md @@ -4,7 +4,7 @@ title: Wireless Security created: 1379362929 alias: /au13/wireless-security.html categories: announcements -tags: announcements +tags: announcements, wifi, wireless, security, privacy --- This Thursday, 2013/09/19 at 7pm, in Caldwell Labs 120, Chris Wallace will present Wireless Security. In this talk, we will discuss different ways of penetrating wireless access points with the goal of explaining how security works in a wifi world. The takeaway from this is that, once you're out there, you should be able to protect your wifi as best as possible. This talk is intended to be interactive, which means that there will be an access point on location that we'll be attempting to gain access to. This talk is also intended to be informative, which means that we'll be discussing some of the different types of authentication out there in the world. DISCLAIMER: We do not encourage the use of any of the software and/or techniques to be used on any equipment besides equipment that you either own or are given explicit permission from the owner of said equipment. Also we are NOT responsible for the actions people take using these techniques learned at this meeting. All information that is being taught is very easily available on the Internet via your favorite search engine. **I reiterate, DO NOT, UNDER ANY CIRCUMSTANCES, DO THIS ON ANY EQUIPMENT YOU DO NOT OWN OR DO NOT HAVE EXPRESS WRITTEN PERMISSION TO DO SO.** In order to get the most from this talk, it helps to come with the software preinstalled. There are only two packages they you need: aircrack-ng and "john the ripper." diff --git a/_posts/2013-10-01-awk.md b/_posts/2013-10-01-awk.md index c7db60065..8dc282099 100644 --- a/_posts/2013-10-01-awk.md +++ b/_posts/2013-10-01-awk.md @@ -4,7 +4,7 @@ title: AWK created: 1380666549 alias: /au13/awk.html categories: announcements -tags: announcements +tags: announcements, cli, awk, bash, shell, shellscript --- This Thursday, 2013/10/03 in Caldwell Labs 120, Daniel Thau will be presenting the AWK programming language. AWK is an interpreted programming language which excels at text processing and quick-and-dirty one-liners. It is part of the POSIX standard and will thus be found on just about every unix system, including exceedingly minimal ones. AWK has a number of relatively unique aspects that can make it quite enjoyable to use - for its target use, an AWK program is often significantly smaller than almost every other language. diff --git a/_posts/2013-10-08-security-and-encryption.md b/_posts/2013-10-08-security-and-encryption.md index c187a87ac..1a3f21e39 100644 --- a/_posts/2013-10-08-security-and-encryption.md +++ b/_posts/2013-10-08-security-and-encryption.md @@ -4,7 +4,7 @@ title: Security and Encryption created: 1381244533 alias: /au13/security-and-encryption.html categories: announcements -tags: announcements +tags: announcements, security, encryption, privacy --- This Thursday, 2013/10/10 at 7:00pm in Caldwell Labs 120, The Ohio State Open Source Club will present "Security and Encryption". This talk will consist of different members presenting on a variety of topics in the world of personal encryption and protecting your privacy. If you have an interest in security, or cryptographic systems as they apply computing, this is probably the talk for you. diff --git a/_posts/2013-10-15-android.md b/_posts/2013-10-15-android.md index 9de499dea..362f96c89 100644 --- a/_posts/2013-10-15-android.md +++ b/_posts/2013-10-15-android.md @@ -4,7 +4,7 @@ title: Android created: 1381844867 alias: /au13/android.html categories: announcements -tags: announcements +tags: announcements, android, java --- This Thursday, 2013/17/10 at 7:00pm in Caldwell Labs 120, Brad Hollander (slackbyte) will be presenting the Android operating system. Android is a Linux based, open source operating system, owned by Google, for phones and tablets. While key concepts of Android app development will be discussed, this presentation will be primarily focused on how the operating system works "under the hood" and the way that it leverages Linux for its security and stability. diff --git a/_posts/2013-10-20-javascript.md b/_posts/2013-10-20-javascript.md index 5531d21e5..a6663f645 100644 --- a/_posts/2013-10-20-javascript.md +++ b/_posts/2013-10-20-javascript.md @@ -4,7 +4,7 @@ title: JavaScript created: 1382318415 alias: /au13/javascript.html categories: announcements -tags: announcements +tags: announcements, javascript, language, js --- This Thursday, 2013/24/10 at 7:00pm in Caldwell Labs 120, Maxim Kim will be presenting JavaScript. This will be about 40 min long. It will be a high level overview of the language with some examples covering both server and client side. Slides can be found [here](http://slid.es/maximkim/deck/). diff --git a/_posts/2013-11-05-internet-privacy-and-anonymization.md b/_posts/2013-11-05-internet-privacy-and-anonymization.md index f22125a06..69c8bde46 100644 --- a/_posts/2013-11-05-internet-privacy-and-anonymization.md +++ b/_posts/2013-11-05-internet-privacy-and-anonymization.md @@ -4,7 +4,7 @@ title: Internet Privacy and Anonymization created: 1383683481 alias: /au13/internet-privacy-and-anonymization.html categories: announcements -tags: announcements +tags: announcements, privacy, security --- Hey everyone, sorry for the late email! diff --git a/_posts/2013-11-06-lan-party.md b/_posts/2013-11-06-lan-party.md index d8eb8ecdb..dcace1d61 100644 --- a/_posts/2013-11-06-lan-party.md +++ b/_posts/2013-11-06-lan-party.md @@ -4,7 +4,7 @@ title: LAN Party created: 1383783318 alias: /au13/lan-party.html categories: announcements -tags: announcements +tags: announcements, lan --- Hey everyone, diff --git a/_posts/2013-11-17-vim.md b/_posts/2013-11-17-vim.md index bd211acd5..fb9d8a37b 100644 --- a/_posts/2013-11-17-vim.md +++ b/_posts/2013-11-17-vim.md @@ -4,7 +4,7 @@ title: vim created: 1384723669 alias: /au13/vim.html categories: announcements -tags: announcements +tags: announcements, vim, text editor --- This Thursday, 2013/11/21 at 7:00PM in Caldwell Labs 120, Daniel Thau will present a tour of advanced Vim functionality. Prior Vim experience is not required. Even if you do not use or like Vim, you may still get some useful ideas to incorporate into your workflow with other editors/IDEs. A potential (and incomplete) list of topics is below. diff --git a/_posts/2014-01-07-welcome-back.md b/_posts/2014-01-07-welcome-back.md index fef6c1b64..6789d42f8 100644 --- a/_posts/2014-01-07-welcome-back.md +++ b/_posts/2014-01-07-welcome-back.md @@ -3,7 +3,7 @@ layout: html/default title: Welcome Back created: 1389136468 categories: announcements -tags: announcements +tags: announcements, first --- Hello everyone! diff --git a/_posts/2014-01-20-distributed-version-control-systems.md b/_posts/2014-01-20-distributed-version-control-systems.md index 7d291c2f6..f7d1547d9 100644 --- a/_posts/2014-01-20-distributed-version-control-systems.md +++ b/_posts/2014-01-20-distributed-version-control-systems.md @@ -4,7 +4,7 @@ title: Distributed Version Control Systems created: 1390257211 alias: /sp14/distributed-version-control-systems.html categories: announcements -tags: announcements +tags: announcements, vc, version control, git --- Greetings! diff --git a/_posts/2014-01-27-resume-review.md b/_posts/2014-01-27-resume-review.md index d1c3790e0..fb066145c 100644 --- a/_posts/2014-01-27-resume-review.md +++ b/_posts/2014-01-27-resume-review.md @@ -4,7 +4,7 @@ title: Resume Review created: 1390837344 alias: /sp14/resume-review.html categories: announcements -tags: announcements +tags: announcements, resume --- Hello! diff --git a/_posts/2014-02-04-filesystems.md b/_posts/2014-02-04-filesystems.md index e6b767a31..a7a638fb6 100644 --- a/_posts/2014-02-04-filesystems.md +++ b/_posts/2014-02-04-filesystems.md @@ -4,7 +4,7 @@ title: Filesystems created: 1391526229 alias: /sp14/filesystems.html categories: announcements -tags: announcements +tags: announcements, fs, filesystem --- This Thursday, February 6th at 7:00pm in Caldwell Labs 120, Paul Schellin will present "Filesystems" diff --git a/_posts/2014-02-11-init-discussions.md b/_posts/2014-02-11-init-discussions.md index fdb152e96..7d4fc5c31 100644 --- a/_posts/2014-02-11-init-discussions.md +++ b/_posts/2014-02-11-init-discussions.md @@ -4,7 +4,7 @@ title: Init Discussions created: 1392137194 alias: /sp14/init-discussions.html categories: announcements -tags: announcements +tags: announcements, systemd, init system, daemon --- This Thursday, 2014/02/13 at 7:00pm in Caldwell Labs 120, The Open Source Club will have a discussion on Init Systems. diff --git a/_posts/2014-02-17-osc-goes-to-colug-openstack.md b/_posts/2014-02-17-osc-goes-to-colug-openstack.md index 6a5252a15..d3a0faa97 100644 --- a/_posts/2014-02-17-osc-goes-to-colug-openstack.md +++ b/_posts/2014-02-17-osc-goes-to-colug-openstack.md @@ -4,7 +4,7 @@ title: OSC Goes to COLUG! (OpenStack) created: 1392667845 alias: /sp14/osc-goes-colug-openstack.html categories: announcements -tags: announcements +tags: announcements, devops --- Greetings Everyone, diff --git a/_posts/2014-03-04-securing-public-wireless-use-openvpn.md b/_posts/2014-03-04-securing-public-wireless-use-openvpn.md index 25cff7ff4..5bf6480d8 100644 --- a/_posts/2014-03-04-securing-public-wireless-use-openvpn.md +++ b/_posts/2014-03-04-securing-public-wireless-use-openvpn.md @@ -4,7 +4,7 @@ title: 'Securing Public Wireless Use: OpenVPN' created: 1393978024 alias: /sp14/securing-public-wireless-use-openvpn.html categories: announcements -tags: announcements +tags: announcements, vpn, security, privacy --- This Thursday, 2014/03/06 in Caldwell Labs 120, Will Osler will present Securing Public Wireless Use: OpenVPN. With the prevalence of free public WiFi access in restaurants, shops, and venues across the city it's important to know the risks associated with connecting -- and what you can do about it. This talk focuses on the dangers associated with using public non-encrypted WiFi, several ways to protect yourself and the advantages and disadvantages of several solutions. diff --git a/_posts/2014-03-17-raspberry-pi-officer-nominations.md b/_posts/2014-03-17-raspberry-pi-officer-nominations.md index c8680d4ef..59283545a 100644 --- a/_posts/2014-03-17-raspberry-pi-officer-nominations.md +++ b/_posts/2014-03-17-raspberry-pi-officer-nominations.md @@ -4,7 +4,7 @@ title: Raspberry Pi / Officer Nominations created: 1395094857 alias: /sp14/raspberry-pi-officer-nominations.html categories: announcements -tags: announcements +tags: announcements, pi --- This Thursday, 2014/03/20 at 7pm in Caldwell Labs (CL) 120, the Open Source Club will present Raspberry Pi, the arm powered $35 computer, available online and also at micro center. diff --git a/_posts/2014-03-24-bedrock-linux.md b/_posts/2014-03-24-bedrock-linux.md index 846969711..714c0d49a 100644 --- a/_posts/2014-03-24-bedrock-linux.md +++ b/_posts/2014-03-24-bedrock-linux.md @@ -4,6 +4,6 @@ title: Bedrock Linux created: 1395719444 alias: /sp14/bedrock-linux.html categories: announcements -tags: announcements +tags: announcements, bedrock, linux, os --- This Thursday, May 27th at 7:00PM in Caldwell Labs (CL) 120, Daniel Thau and Brad Hollander will present Bedrock Linux. Bedrock Linux is a Linux distribution founded by Daniel with the aim of making most of the (often seemingly mutually-exclusive) benefits of various other Linux distributions available simultaneously and transparently. For example, if one would like a rock-solid stable base (for example, from Debian or a RHEL clone) yet still have easy access to cutting-edge packages (from, say, Arch Linux), Bedrock will provide a means to achieve this. diff --git a/_posts/2014-03-28-constitution.md b/_posts/2014-03-28-constitution.md index 73b85b6e7..90f9721c1 100644 --- a/_posts/2014-03-28-constitution.md +++ b/_posts/2014-03-28-constitution.md @@ -3,7 +3,7 @@ layout: html/default title: Constitution alias: /about/constitution.html categories: history -tags: history +tags: history, constitution --- Preamble diff --git a/_posts/2014-03-28-open-source-hardware-arduino.md b/_posts/2014-03-28-open-source-hardware-arduino.md index feef89406..84e58d70e 100644 --- a/_posts/2014-03-28-open-source-hardware-arduino.md +++ b/_posts/2014-03-28-open-source-hardware-arduino.md @@ -4,7 +4,7 @@ title: Open Source Hardware (Arduino) created: 1396033334 alias: /sp14/open-source-hardware-arduino.html categories: announcements -tags: announcements +tags: announcements, embedded --- Thursday, April 3rd at 7:00PM in Caldwell Labs (CL) 120, Ben Rhoads will present Arduino and Open-Source Hardware. The first half of the meeting will discuss Arduino, an open-source physical computing platform based on a simple microcontroller board, and the second half of the meeting will be a PCB layout demonstration using Upverter. Upverter is the Github equivalent for circuitry. You can create a free Upverter account if you would like to follow along during the demonstration. (http://upverter.com) diff --git a/_posts/2014-04-18-cracking-the-data-encryption-standard.md b/_posts/2014-04-18-cracking-the-data-encryption-standard.md index 9ded95f38..895fb2e1b 100644 --- a/_posts/2014-04-18-cracking-the-data-encryption-standard.md +++ b/_posts/2014-04-18-cracking-the-data-encryption-standard.md @@ -4,7 +4,7 @@ title: Cracking the Data Encryption Standard created: 1397829368 alias: /sp14/cracking-data-encryption-standard.html categories: announcements -tags: announcements +tags: announcements, encryption, security --- Thursday, April 24th 2014 in Caldwell Labs 120, C. Matthew Curtin will present "Cracking the Data Encryption Standard." diff --git a/_posts/2014-09-01-linux-installfest.md b/_posts/2014-09-01-linux-installfest.md index 495d07709..3a21cc2d1 100644 --- a/_posts/2014-09-01-linux-installfest.md +++ b/_posts/2014-09-01-linux-installfest.md @@ -4,7 +4,7 @@ title: Linux Installfest created: 1409613608 alias: /au14/linux-installfest.html categories: announcements -tags: announcements +tags: announcements, installfest --- Thursday, 2014-09-04 at 7pm in Caldwell Labs 120, Chris Wallace and the Open Source Club will present "Linux InstallFest". We'll be helping you to install GNU/Linux on your machines, and will be available to answer any questions you may have. diff --git a/_posts/2014-09-08-wireless-security.md b/_posts/2014-09-08-wireless-security.md index 0fa4824db..d0affa241 100644 --- a/_posts/2014-09-08-wireless-security.md +++ b/_posts/2014-09-08-wireless-security.md @@ -4,7 +4,7 @@ title: Wireless Security created: 1410194925 alias: /au14/wireless-security.html categories: announcements -tags: announcements +tags: announcements, wireless, wifi, security, hack --- This Thursday, 2014/09/11 at 7pm, in Caldwell Labs 120, Chris Wallace will present Wireless Security. In this talk, we will discuss different ways of penetrating wireless access points with the goal of explaining how security works in a wifi world. The takeaway from this is that, once you're out there, you should be able to protect your wifi as best as possible. This talk is intended to be interactive, which means that there will be an access point on location that we'll be attempting to gain access to. This talk is also intended to be informative, which means that we'll be discussing some of the different types of authentication out there in the world. diff --git a/_posts/2014-09-15-introduction-to-the-command-line.md b/_posts/2014-09-15-introduction-to-the-command-line.md index f32aee348..0c27ca0b9 100644 --- a/_posts/2014-09-15-introduction-to-the-command-line.md +++ b/_posts/2014-09-15-introduction-to-the-command-line.md @@ -4,7 +4,7 @@ title: Introduction to the Command Line created: 1410804781 alias: /au14/introduction-command-line.html categories: announcements -tags: announcements +tags: announcements, cli, terminal --- Thursday, 2014-09-18 at 7:00pm in Caldwell Labs 120, George Kvaratskhelia will present "Introduction to the Command Line". This talk, geared toward beginners to the world of Unix and Unix-like systems, will cover the absolute basics of getting around and being productive in your Linux environment. diff --git a/_posts/2014-09-22-pure-data.md b/_posts/2014-09-22-pure-data.md index 53b64405a..95a071e71 100644 --- a/_posts/2014-09-22-pure-data.md +++ b/_posts/2014-09-22-pure-data.md @@ -4,7 +4,7 @@ title: Pure Data created: 1411435677 alias: /au14/pure-data.html categories: announcements -tags: announcements +tags: announcements, embedded --- Thursday, 2014/09/25 at 7:00pm in Caldwell Labs 120, Alex Fuhr will present Pure Data. Pure Data is an open source, minimal, and visual programming language for audio, graphic, and signal processing. This talk will start by covering the basic building blocks of the language, then dive deeper into the following topics: diff --git a/_posts/2014-09-29-zimbra-open-source-mail-and-groupware.md b/_posts/2014-09-29-zimbra-open-source-mail-and-groupware.md index 454d37f41..d018db022 100644 --- a/_posts/2014-09-29-zimbra-open-source-mail-and-groupware.md +++ b/_posts/2014-09-29-zimbra-open-source-mail-and-groupware.md @@ -4,7 +4,7 @@ title: 'Zimbra: Open Source Mail and Groupware' created: 1412036488 alias: /au14/zimbra-open-source-mail-and-groupware.html categories: announcements -tags: announcements +tags: announcements, hosted, self-hosted, mail, email, server --- This Thursday, 2014-10-02 in Caldwell Labs 120, William Osler will present Zimbra: Open Source Mail & Groupware. Description follows. diff --git a/_posts/2014-10-06-personal-projects.md b/_posts/2014-10-06-personal-projects.md index 1fec6d4b9..593dfa9ca 100644 --- a/_posts/2014-10-06-personal-projects.md +++ b/_posts/2014-10-06-personal-projects.md @@ -4,7 +4,7 @@ title: Personal Projects created: 1412633832 alias: /au14/personal-projects.html categories: announcements -tags: announcements +tags: announcements, projects --- Hi everyone! diff --git a/_posts/2014-10-12-love-your-music-and-movies-again-with-linux.md b/_posts/2014-10-12-love-your-music-and-movies-again-with-linux.md index d8bc0582a..e9b7fe3b1 100644 --- a/_posts/2014-10-12-love-your-music-and-movies-again-with-linux.md +++ b/_posts/2014-10-12-love-your-music-and-movies-again-with-linux.md @@ -4,7 +4,7 @@ title: Love your Music and Movies again with Linux created: 1413147462 alias: /au14/love-your-music-and-movies-again-linux.html categories: announcements -tags: announcements +tags: announcements, music, audio, video --- Thursday, 2014-10-16 at 7:00pm in Caldwell Labs 120, Chris Wallace will present Love your Music and Movies again with Linux. Description follows: diff --git a/_posts/2014-10-15-elixir.md b/_posts/2014-10-15-elixir.md index 6f4323ea3..e18bfd38d 100644 --- a/_posts/2014-10-15-elixir.md +++ b/_posts/2014-10-15-elixir.md @@ -4,7 +4,7 @@ title: Elixir created: 1413401261 alias: /au14/elixir.html categories: announcements -tags: announcements +tags: announcements, elixir, language --- Thursday, 2014-10-30 at 7:00pm in Caldwell Labs 120, Jon Arnett will present Elixir. Description follows: diff --git a/_posts/2014-10-21-open-source-at-facebook.md b/_posts/2014-10-21-open-source-at-facebook.md index 633e3b913..d661b6711 100644 --- a/_posts/2014-10-21-open-source-at-facebook.md +++ b/_posts/2014-10-21-open-source-at-facebook.md @@ -4,7 +4,7 @@ title: Open Source at Facebook created: 1413918722 alias: /au14/open-source-facebook.html categories: announcements -tags: announcements +tags: announcements, facebook, community --- Thursday, 2014-10-23 at 7:00pm in Caldwell Labs 120, Patrick Shuff (an engineer at Facebook) will present "Open Source at Facebook". Description follows: diff --git a/_posts/2014-11-10-web-privacy.md b/_posts/2014-11-10-web-privacy.md index 0a2e02628..1438526e7 100644 --- a/_posts/2014-11-10-web-privacy.md +++ b/_posts/2014-11-10-web-privacy.md @@ -4,7 +4,7 @@ title: Web Privacy created: 1415655843 alias: /au14/web-privacy.html categories: announcements -tags: announcements +tags: announcements, privacy, security --- Thursday 2014/11/13, at 7:00pm in Caldwell Labs 120 we will be discussing Internet Privacy, as well as tools that can keep you anonymous on the Internet. Topics will include Tor, Firefox Extensions, and Darknets, as well as a discussion on technical privacy. diff --git a/_posts/2014-11-18-introduction-to-security-concepts.md b/_posts/2014-11-18-introduction-to-security-concepts.md index 4e8ce9ad5..e10a16fcc 100644 --- a/_posts/2014-11-18-introduction-to-security-concepts.md +++ b/_posts/2014-11-18-introduction-to-security-concepts.md @@ -4,7 +4,7 @@ title: Introduction to Security Concepts created: 1416335820 alias: /au14/introduction-security-concepts.html categories: announcements -tags: announcements +tags: announcements, security --- Thursday, 2014-11-02 at 7:00pm in Caldwell Lab 120, John Toterhi of Battelle will present "Introduction to Security Concepts." diff --git a/_posts/2014-12-01-raspberry-pi.md b/_posts/2014-12-01-raspberry-pi.md index 65df0ee4b..616032cb6 100644 --- a/_posts/2014-12-01-raspberry-pi.md +++ b/_posts/2014-12-01-raspberry-pi.md @@ -4,7 +4,7 @@ title: Raspberry Pi created: 1417444956 alias: /au14/raspberry-pi.html categories: announcements -tags: announcements +tags: announcements, embedded, pi --- This Thursday, 2014/12/04 at 7:00pm in Caldwell Labs 120, The Open Source Club will present "Raspberry Pi". Come by to learn all about the board and it's alternatives, or just check out the cool projects club members have been working on. If you yourself have done something interesting with your pi, show it off! diff --git a/_posts/2015-01-12-welcome-back.md b/_posts/2015-01-12-welcome-back.md index 38bdf0568..0a89053f3 100644 --- a/_posts/2015-01-12-welcome-back.md +++ b/_posts/2015-01-12-welcome-back.md @@ -3,6 +3,6 @@ layout: html/default title: Welcome Back created: 1421095148 categories: announcements -tags: announcements +tags: announcements, first --- This Thursday, 2015/01/15 at 7:00pm in Caldwell Labs 120, The Open Source Club will present "Welcome Back". We'll be around to socialize and plan the upcoming meetings. diff --git a/_posts/2015-01-20-introduction-to-web-development.md b/_posts/2015-01-20-introduction-to-web-development.md index eaca631bf..d59291959 100644 --- a/_posts/2015-01-20-introduction-to-web-development.md +++ b/_posts/2015-01-20-introduction-to-web-development.md @@ -4,7 +4,7 @@ title: Introduction to Web Development created: 1421782137 alias: /sp15/introduction-web-development.html categories: announcements -tags: announcements +tags: announcements, webdev, web --- Thursday, 2015-01-22, Jon Arnett (President of the Collegiate Web Developer Group here on campus) and Eli Gladman will present "Intro to Web Development". A description from Jon follows: diff --git a/_posts/2015-01-26-python.md b/_posts/2015-01-26-python.md index f93702223..430f1963c 100644 --- a/_posts/2015-01-26-python.md +++ b/_posts/2015-01-26-python.md @@ -4,7 +4,7 @@ title: Python created: 1422296957 alias: /sp15/python.html categories: announcements -tags: announcements +tags: announcements, scripting, language --- Thursday, 2015-01-29 at 7:00pm in Caldwell Labs 120, Chris Wallace and George Kvaratskhelia will preset "Python". diff --git a/_posts/2015-02-09-mediawiki.md b/_posts/2015-02-09-mediawiki.md index 342841926..ab0d7e1ae 100644 --- a/_posts/2015-02-09-mediawiki.md +++ b/_posts/2015-02-09-mediawiki.md @@ -4,7 +4,7 @@ title: MediaWiki created: 1423527835 alias: /sp15/mediawiki.html categories: announcements -tags: announcements +tags: announcements, wiki --- This Thursday, 2015-02-12 at 7:00pm in Caldwell Labs 120, Kevin Payravi will present "MediaWiki". Description follows: diff --git a/_posts/2015-02-23-open-source-and-web-browsers.md b/_posts/2015-02-23-open-source-and-web-browsers.md index 068390204..792958234 100644 --- a/_posts/2015-02-23-open-source-and-web-browsers.md +++ b/_posts/2015-02-23-open-source-and-web-browsers.md @@ -4,7 +4,7 @@ title: Open Source and Web Browsers created: 1424717623 alias: /sp15/open-source-and-web-browsers.html categories: announcements -tags: announcements +tags: announcements, chrome, firefox, browser, web --- Thursday, 2015-02-26 at 7:00pm in Caldwell Labs 120, Nikit Malkan (Treasurer of the Open Source Club) will present Open Source and Web Browsers. A short description follows: diff --git a/_posts/2015-03-03-owncloud.md b/_posts/2015-03-03-owncloud.md index 3dc6f39e7..c43a138f6 100644 --- a/_posts/2015-03-03-owncloud.md +++ b/_posts/2015-03-03-owncloud.md @@ -4,7 +4,7 @@ title: ownCloud created: 1425413247 alias: /sp15/owncloud.html categories: announcements -tags: announcements +tags: announcements, hosted, cloud, dropbox --- This Thursday, 2015-03-05 at 7:00pm in Caldwell Labs 120, Stephen Haffner will present Owncloud. This talk will go over pros and cons of Owncloud, as well as how it stacks up against other self-hosted file storage solutions. There will also be a demo of setting up and using ownCloud. diff --git a/_posts/2015-03-09-linux-multimedia.md b/_posts/2015-03-09-linux-multimedia.md index dc958e228..9b1707c9a 100644 --- a/_posts/2015-03-09-linux-multimedia.md +++ b/_posts/2015-03-09-linux-multimedia.md @@ -4,7 +4,7 @@ title: Linux Multimedia created: 1425917556 alias: /sp15/linux-multimedia.html categories: announcements -tags: announcements +tags: announcements, audio, music --- This Thursday, 2015-03-12 at 7:00pm in Caldwell Labs 120, Brandon Dahl will present Linux Multimedia. A short description follows: diff --git a/_posts/2015-03-23-postgresql.md b/_posts/2015-03-23-postgresql.md index 72e89a2a5..0ea7ff0b0 100644 --- a/_posts/2015-03-23-postgresql.md +++ b/_posts/2015-03-23-postgresql.md @@ -4,7 +4,7 @@ title: PostgreSQL created: 1427140442 alias: /sp15/postgresql.html categories: announcements -tags: announcements +tags: announcements, database, db, sql, postgres --- This Thursday, 2015-03-26 at 7:00pm in Caldwell Labs 120, Jeff Casavant will be speaking about PostgreSQL. A short description follows: diff --git a/_posts/2015-03-31-beaglebone-and-embedded-linux.md b/_posts/2015-03-31-beaglebone-and-embedded-linux.md index 88f716877..c8545a6fb 100644 --- a/_posts/2015-03-31-beaglebone-and-embedded-linux.md +++ b/_posts/2015-03-31-beaglebone-and-embedded-linux.md @@ -4,7 +4,7 @@ title: BeagleBone and Embedded Linux created: 1427846702 alias: /sp15/beaglebone-and-embedded-linux.html categories: announcements -tags: announcements +tags: announcements, linux, embedded --- Thursday, 2015-04-02 at 7:00pm in Caldwell Labs 120, Eli Gladman will be speaking about BeagleBone. A short description follows: diff --git a/_posts/2015-04-08-cryptocurrencies-and-elections.md b/_posts/2015-04-08-cryptocurrencies-and-elections.md index 980efe530..4b02a713f 100644 --- a/_posts/2015-04-08-cryptocurrencies-and-elections.md +++ b/_posts/2015-04-08-cryptocurrencies-and-elections.md @@ -4,7 +4,7 @@ title: Cryptocurrencies and Elections created: 1428493460 alias: /sp15/cryptocurrencies-and-elections.html categories: announcements -tags: announcements +tags: announcements, security --- Thursday, 2015-04-09, Alex Krieger will present Cryptocurrencies. This will provide more of the technical details of how these schemes (such as Bitcoin, Litecoin, and Dogecoin) work. diff --git a/_posts/2015-04-13-lightning-talks.md b/_posts/2015-04-13-lightning-talks.md index ca935d150..c3a2a7797 100644 --- a/_posts/2015-04-13-lightning-talks.md +++ b/_posts/2015-04-13-lightning-talks.md @@ -3,7 +3,7 @@ layout: html/default title: Lightning Talks created: 1428964429 categories: announcements -tags: announcements +tags: announcements, lightning talk --- Hi everyone, diff --git a/_posts/2015-04-20-advanced-vim-tutor.md b/_posts/2015-04-20-advanced-vim-tutor.md index 84eeb854a..2d19b58e4 100644 --- a/_posts/2015-04-20-advanced-vim-tutor.md +++ b/_posts/2015-04-20-advanced-vim-tutor.md @@ -4,7 +4,7 @@ title: Advanced Vim Tutor created: 1429539424 alias: /sp15/advanced-vim-tutor.html categories: announcements -tags: announcements +tags: announcements, vim, text editor --- This Thursday, 2015/04/23 at 7:00PM in Caldwell Labs 120, Daniel Thau will present a tour of Vim functionality. Prior Vim experience is not diff --git a/_posts/2015-04-30-irc.md b/_posts/2015-04-30-irc.md index b5bc4b56d..77cf49b7c 100644 --- a/_posts/2015-04-30-irc.md +++ b/_posts/2015-04-30-irc.md @@ -2,7 +2,7 @@ layout: html/default title: Come hangout with us on IRC categories: tutorials -tags: tutorials +tags: tutorials, irc alias: [/irc.html, /irc, /irc-beginner.html, /irc.1.html] --- diff --git a/_posts/2015-07-23-officers.md b/_posts/2015-07-23-officers.md index 5d113b376..f086f8fa7 100644 --- a/_posts/2015-07-23-officers.md +++ b/_posts/2015-07-23-officers.md @@ -3,7 +3,7 @@ layout: html/default title: Club Officers alias: /about/officers.html categories: history -tags: history +tags: history, elections --- diff --git a/_posts/2015-08-20-osuwireless.md b/_posts/2015-08-20-osuwireless.md index 6de7559fb..af0ce5c7f 100644 --- a/_posts/2015-08-20-osuwireless.md +++ b/_posts/2015-08-20-osuwireless.md @@ -2,7 +2,7 @@ layout: html/default title: Connecting to osuwireless with linux categories: tutorials -tags: tutorials +tags: tutorials, wifi, osuwireless, wireless, howto --- Steps will vary depending on your distro of choice, but the same principles apply: diff --git a/_posts/2015-08-21-semester-schedule.md b/_posts/2015-08-21-semester-schedule.md index 509b8700d..ca235d014 100644 --- a/_posts/2015-08-21-semester-schedule.md +++ b/_posts/2015-08-21-semester-schedule.md @@ -2,7 +2,7 @@ layout: html/default title: Autumn 2015 Semester Schedule categories: meetings -tags: meetings +tags: meetings, schedule alias: /meetings/2015/08/21/semester-scehdule/ --- diff --git a/_posts/2015-08-23-first-meeting-of-the-semester.md b/_posts/2015-08-23-first-meeting-of-the-semester.md index b17b8d666..665b29eef 100644 --- a/_posts/2015-08-23-first-meeting-of-the-semester.md +++ b/_posts/2015-08-23-first-meeting-of-the-semester.md @@ -2,7 +2,7 @@ layout: html/default title: First Meeting of the Semester categories: announcements -tags: announcements +tags: announcements, first --- Hi everyone, diff --git a/_posts/2015-08-30-linux-installfest.md b/_posts/2015-08-30-linux-installfest.md index 66d62be6e..757141233 100644 --- a/_posts/2015-08-30-linux-installfest.md +++ b/_posts/2015-08-30-linux-installfest.md @@ -2,7 +2,7 @@ layout: html/default title: Linux Installfest categories: announcements -tags: announcements +tags: announcements, linux, installfest meeting: August 30th 2015 --- diff --git a/_posts/2015-09-08-command-line.md b/_posts/2015-09-08-command-line.md index f00d9baf1..80a2e1406 100644 --- a/_posts/2015-09-08-command-line.md +++ b/_posts/2015-09-08-command-line.md @@ -2,7 +2,7 @@ layout: html/default title: Introduction to the Command Line categories: announcements -tags: announcements +tags: announcements, cli, howto, terminal meeting: September 10th 2015 --- diff --git a/_posts/2015-09-14-ohio-hackathon.md b/_posts/2015-09-14-ohio-hackathon.md index df5217e2f..24a1032e3 100644 --- a/_posts/2015-09-14-ohio-hackathon.md +++ b/_posts/2015-09-14-ohio-hackathon.md @@ -2,7 +2,7 @@ layout: html/default title: OHI/O 2015 Hackathon categories: events -tags: events +tags: events, hackathon --- The 2015 OHI/O Hackathon is fast approaching. [Register now](http://hack.osu.edu/). diff --git a/_posts/2015-09-15-lightning-talks.md b/_posts/2015-09-15-lightning-talks.md index 702244390..2b8c8cb8b 100644 --- a/_posts/2015-09-15-lightning-talks.md +++ b/_posts/2015-09-15-lightning-talks.md @@ -2,7 +2,7 @@ layout: html/default title: Lightning Talks categories: announcements -tags: announcements +tags: announcements, lightning talk meeting: September 17th 2015 --- diff --git a/_posts/2015-09-20-opensource-at-facebook.md b/_posts/2015-09-20-opensource-at-facebook.md index c126c8d7b..65ce8cff7 100644 --- a/_posts/2015-09-20-opensource-at-facebook.md +++ b/_posts/2015-09-20-opensource-at-facebook.md @@ -2,7 +2,7 @@ layout: html/default title: Open Source at Facebook categories: announcements -tags: announcements +tags: announcements, facebook, community meeting: September 24th 2015 --- diff --git a/_posts/2015-10-01-filesystems.md b/_posts/2015-10-01-filesystems.md index 58a5bb92e..df6b37050 100644 --- a/_posts/2015-10-01-filesystems.md +++ b/_posts/2015-10-01-filesystems.md @@ -2,7 +2,7 @@ layout: html/default title: Logical Volumes and Fancy Filesystems categories: announcements -tags: announcements +tags: announcements, fs, filesystems meeting: October 1st 2015 --- diff --git a/_posts/2015-10-03-gpg.md b/_posts/2015-10-03-gpg.md index 09b0b2384..efd3a06b3 100644 --- a/_posts/2015-10-03-gpg.md +++ b/_posts/2015-10-03-gpg.md @@ -2,7 +2,7 @@ layout: html/default title: Pretty Good Privacy: Secure communications with PGP categories: announcements -tags: announcements +tags: announcements, gpg, pgp, encryption, security meeting: October 8th 2015 --- diff --git a/_posts/2015-10-27-wireless-security-and-penetration-testing.md b/_posts/2015-10-27-wireless-security-and-penetration-testing.md index abc737472..3440daed1 100644 --- a/_posts/2015-10-27-wireless-security-and-penetration-testing.md +++ b/_posts/2015-10-27-wireless-security-and-penetration-testing.md @@ -2,7 +2,7 @@ layout: html/default title: Wireless Security and Penetration Testing categories: announcements -tags: announcements +tags: announcements, wifi, wireless, security meeting: October 29th 2015 --- diff --git a/_posts/2015-10-30-license-to-code.md b/_posts/2015-10-30-license-to-code.md index 2361a6e81..f29b2c87e 100644 --- a/_posts/2015-10-30-license-to-code.md +++ b/_posts/2015-10-30-license-to-code.md @@ -2,7 +2,7 @@ layout: html/default title: License to Code categories: announcements -tags: announcements +tags: announcements, license, legal meeting: November 5th 2015 --- diff --git a/_posts/2015-11-11-git-introduction-and-explanation.md b/_posts/2015-11-11-git-introduction-and-explanation.md index a0a3faa5a..faeb10f09 100644 --- a/_posts/2015-11-11-git-introduction-and-explanation.md +++ b/_posts/2015-11-11-git-introduction-and-explanation.md @@ -2,7 +2,7 @@ layout: html/default title: Git - An Introduction and Explanation categories: announcements -tags: announcements +tags: announcements, git, vc, version control meeting: November 12th 2015 --- diff --git a/_posts/2015-11-18-password-management.md b/_posts/2015-11-18-password-management.md index c6ae6a171..cc4b10560 100644 --- a/_posts/2015-11-18-password-management.md +++ b/_posts/2015-11-18-password-management.md @@ -2,7 +2,7 @@ layout: html/default title: Password Management categories: announcements -tags: announcements +tags: announcements, security, passwords meeting: November 19th 2015 --- This Thursday, November 19th at 7PM in Caldwell 120, We will discuss the many ways to safe guard/manage your passwords. diff --git a/_posts/2015-12-01-redis.md b/_posts/2015-12-01-redis.md index 15512256b..98335c36e 100644 --- a/_posts/2015-12-01-redis.md +++ b/_posts/2015-12-01-redis.md @@ -2,7 +2,7 @@ layout: html/default title: Redis categories: announcements -tags: announcements +tags: announcements, redis, database, nosql meeting: December 3rd 2015 --- This Thursday, December 3rd at 7PM in Caldwell 120, J3RN will be talking about Redis, the in-memory key-value store. diff --git a/_posts/2015-12-09-meteor.md b/_posts/2015-12-09-meteor.md index 449a28d17..6fb17691c 100644 --- a/_posts/2015-12-09-meteor.md +++ b/_posts/2015-12-09-meteor.md @@ -2,10 +2,10 @@ layout: html/default title: Meteor.js categories: announcements -tags: announcements +tags: announcements, meteor, meteorjs, js, javascript, webdev, web development meeting: December 10th 2015 --- -This Thursday, December 10th at 7PM in Caldwell 120, I will be discussing / demoing Meteor.js. +This Thursday, December 10th at 7PM in Caldwell 120, I will be discussing / demoing Meteor.js. "Meteor is a full-stack JavaScript App Platform that assemble all the pieces you need to build modern web and mobile apps, with a single JavaScript codebase." diff --git a/_posts/2015-12-22-semester-schedule.md b/_posts/2015-12-22-semester-schedule.md index 255afcef0..bb83fd80d 100644 --- a/_posts/2015-12-22-semester-schedule.md +++ b/_posts/2015-12-22-semester-schedule.md @@ -2,7 +2,7 @@ layout: html/default title: Spring 2016 Semester Schedule categories: meetings -tags: meetings +tags: meetings, schedule --- Feel free to contact us to arrange a presentation on our schedule this semester. Just email [officers@opensource.osu.edu](mailto:officers@opensource.osu.edu) diff --git a/_posts/2016-01-10-welcome-back.md b/_posts/2016-01-10-welcome-back.md index 473799b4f..02cc5bc87 100644 --- a/_posts/2016-01-10-welcome-back.md +++ b/_posts/2016-01-10-welcome-back.md @@ -2,7 +2,7 @@ layout: html/default title: Welcome Back categories: announcements -tags: announcements +tags: announcements, first meeting_date: 2016-01-14 --- This Thursday, January 14th at 7PM in Caldwell 120, we will be voting on whether diff --git a/_posts/2016-01-21-lightning_talks.md b/_posts/2016-01-21-lightning_talks.md index 64038023b..957652665 100644 --- a/_posts/2016-01-21-lightning_talks.md +++ b/_posts/2016-01-21-lightning_talks.md @@ -2,7 +2,7 @@ layout: html/default title: Meeting Planning + Lightning Talks categories: announcements -tags: announcements +tags: announcements, lightning talk meeting_date: 2016-01-21 --- Tonight's meeting will be drafting future talks for the semester + some diff --git a/_posts/2016-01-27-arch_linux.md b/_posts/2016-01-27-arch_linux.md index f4c477d5f..0811619b8 100644 --- a/_posts/2016-01-27-arch_linux.md +++ b/_posts/2016-01-27-arch_linux.md @@ -2,7 +2,7 @@ layout: html/default title: Arch Linux categories: announcements -tags: announcements +tags: announcements, arch linux, distribution, distro meeting_date: 2016-01-28 --- Thursday's talk will be on installing Arch Linux, performed by our longtime