Want to present something at HSKL?
January 5, 2011 by spoonfork · Leave a Comment
As a hackerspace, we are not only providing memberships and infrastructures for members to work on their project, but we also provide the space as an avenue to share ideas, knowledge and skills. If you have interesting stuff to present (as long as the topic is acceptable), please fill up this form, and we’ll arrange from there. Allow at least two weeks before the scheduled presentation so that we have ample time to publicize the event. So how does this work?
- Fill up the form
- One of our members will contact you to confirm the date
- We will then start publicizing the talk
So what kind of topics are allowed? There is not restrictions on topics, as long as it does not involve politics, religion and race. Ideally, the any of the following will do:
- Open source
- Programming
- Security
- Web app technologies
- Hardware
- Electronics
- DIY stuff
- HAM radio
- Anything that involves creative use of technology
Who can present? Anyone can present, regardless of whether they are members or not. We also welcome any of the user groups out there such as the Python, Ubuntu, etc groups to present.
When is the best time/day to present? For security topics, the ideal time would be during the monthly security meetup which is scheduled on the first Tuesday of every month. Fridays are reserved for Electronics. You can check our event calendar for the time and date.
We are looking forward for your contribution and exciting topics!
Share this article
Income and Expenditure Statement – December 2010
The following is our income and expenditure statement for December 2010. Our balance for the year 2010 is RM172.23 RM887.23. Our income and expenditure statement for the year 2011 is available at http://bit.ly/hskl-finance2011. Our finances are updated every month. For members that have not pay their membership fees, please do so as soon as possible.
NOTE: As part of our effort as a not-for-profit and community-backed hackerspace, we are publishing our finance statement for all to see. If you have any questions regarding the statements, please email m...@hackerspace.my, or talk to any of our members.
Share this article
Annual General Meeting: Agenda
January 3, 2011 by spoonfork · 2 Comments
What?
This will be our annual general meeting for 2011. The following are the agenda/topic of discussions:
- Election of new committee members
- Review of financial status
- Review of keymaster lists
- Status of registration for society
- Planning of HSKL university roadshow
- Hardware sponsorships
- Plans/activities for 1st quarter 2011
- Other matters
When?
- January 16th, 2011 (
SaturdaySunday). 10am – 1pm
Where?
- HackerspaceKL
Who?
- All members of HSKL
- All committee members of HSKL
- New members, or anyone that are interested to know what HackerspaceKL is all about
Share this article
A space for tech-minded people
January 2, 2011 by spoonfork · Leave a Comment
HackerspaceKL is featured in today’s edition of The Star. Here’s an excerpt of the article:
WALKING past workbenches housing electronics projects and soldering irons, Meling Mudin gestures to a room piled high with cables, wires, spare motor parts, and even an old ceiling fan. “Think of it as a garage,” says the Dell IT security manager. “We provide the tools and space to make whatever you want; you just show up with your ideas.” This sums up the basic philosophy behind HackerspaceKL.
And of course the emphasis on “innovative”:
.. we want to nurture that sense of exploring ideas, regardless of whether they are practical or not. “I think if we’re talking about building an innovative society, that’s the kind of mindset you need to have. Who knows, our projects may lead to some great inventions one day!” he says.
The rest of the article can be read here.
Share this article
Migration From Plone to WordPress
December 30, 2010 by spoonfork · 2 Comments
Migrating from Plone to WordPress is not quite as straightforward as it may seem. In fact, it was quite a PITA. One of the factors for this was that none of us (except for @kagesenshi) have deep technical expertise on the innerworkings of Plone, or Zope. There was one solution, but reading through it, I know it would be a PITA.
So I decided that the best solution would be to parse Plone’s RSS feed and import them to WordPress’ MySQL database. This seems to be the most sensible, effective and headache free solution – provided that your Plone entries (articles, news, etc) combined are not in thousands.
The first thing that you need to do is to aggregate the entire Plone site. The steps to do this is well documented here.
The RSS by default will publish only 15 items. You have to change the RSS’ setting to, well, a very large number if you want to parse all the contents. This can be done by navigating to synPropertiesForm of the Plone site.
So now you will have all the site’s content in RSS. Parsing the RSS is easy. My first attempt was to use ElementTree, a library that I always use whenever dealing with stuff XML-ish. Apparently it didn’t work properly, so I used feedparser instead.
Here’s a snippet of the code that does the job. This code reads a RSS file. feedparser can also retrieve the RSS remotely.
import feedparser
import os
import sys
import MySQLdb as mdb
# get this from the db
# post_author id
# mel => 1
# sniffit => 2
# klks => 3
# apparently unicode is not handled properly eventhough uft8 is aleady set, so edit the RSS file and remove Unicode chars first
if __name__ == '__main__':
file = sys.argv[1]
if not os.path.exists(file):
print "Error: Unable to find file: " + file
sys.exit(1)
dbname = "yourdb"
dbpass = "yourpassword"
dbhost = "localhost"
dbuser = "youruser"
conn = mdb.connect(dbhost, dbuser, dbpass, dbname, charset="utf8")
cursor = conn.cursor()
f = feedparser.parse(file)
l = len(f['entries'])
print "Processing %d entries" % l
for post in f['entries']:
title = post.title
link = post.link
content = post.description
content = content.encode('utf8')
postdate = post.date
slug = link.split("/")[-1]
author = post.author
post_author = ""
if author == 'mel': post_author = "1"
if author == 'sniffit': post_author = "2"
if author == 'klks': post_author = "3"
print "Importing post " + title
q = "INSERT INTO wp_posts (post_date, post_date_gmt, post_content, post_title, post_name, post_author) VALUES (%s,%s,%s,%s,%s,%s)"
cursor.execute(q, (postdate, postdate, content, title, slug, post_author))
conn.commit()
cursor.close()
conn.close()There are a few things that this script doesn’t do, namely tags and categories. This can be coded, or done manually. Also, the RSS’ HTML output as generated by Plone may contain some garbage or wayward HTML tags (which are pretty consistent in around 80% of contents) and this can be cleaned up manually or by code.
Share this article
HackerspaceKL Update: The one where we are announcing a few stuff
December 28, 2010 by spoonfork · Leave a Comment
2011 is fast approaching, 2010 is fast ending, and come January, HSKL will be exactly one year old. In light of this, it is my duty announce a few things. Here they are, in no particular order:
Membership fee to be reduced from RM100/month (professional adult) and RM50/month (full-time students) to RM50 to all.
Yes you read that right. We are reducing the membership fees from RM100/month (professional adult) and RM50/month (full-time student) to a flat fee of RM50 for everyone. There are several reasons for the fee reductions, but one of the main purpose is to get and attract more members to join the space. In line with the reduction of fees, HSKL will be conducting a series of activities to attract more memberships – such as university road shows. Membership is still for a minimum of 3 months, and members can choose to pay either every 3 months, or for 1 year. Check out this page on how to be a member.
Annual General Meeting, 16th January 2011
We will be having our annual general meeting on the 16th of January 2011 (Sunday). The meeting will be held from 10am – 1pm at HackerspaceKL. The meeting agenda has not been finalized yet, and will be announced in the next few days. Key to the AGM will be the selection of new committee members, 2011 activity planning, and so on. Stay tuned for more announcements. I am sad to announce that this will be the final AGM that I will chair as I will be relinquishing my role as HSKL’s President. Instead, in line with the Registrar of Society’s requirements, I will be one of HSKL’s three Permanent Life Member.
HSKL Security Meetup
The first ever HSKL Security Meetup will take place on the 11th January 2011 (Tuesday), from 8pm – 11pm. This is a monthly meetup that will take place every first Tuesday of the month (subject to holidays, etc), and the first meetup is on the second Tuesday due to the holidays. The format of the meetup is pretty simple: It is a 1.5 – 2 hours meetup with an hour of technical presentation, followed by Q&A, brainstorming, and lepak session.
What?
- Monthly get together to present, and discuss security-related stuff
- Anything and everything about security (including physical security and hardware hacking)
- Technical/semi-technical in nature
- 1 hour of presentation, followed by Q&A, brainstorming, discussions and lepak session
When?
- Every first Tuesday of the month, unless otherwise stated
Where?
- HackerspaceKL
Who?
- Everyone is invited! If you are interested in security, you should be there
Cost?
- Free for members. We’re all about keeping knowledge free, but in the real world that we live in, everything requires money. Hence non-members are required a minimum donation of RM15. Your donation will be used for the upkeep of the space.
The first talk for the first meetup is titled “UniPwned! – Hacking UniFi for the LOLZ” by The Sexy Kambingz Crew and HSKL members. Here’s an abstract of the talk:
This 30 minute presentation will talk about the recent deployment of TM’s new HSBB service and the security aspects of it. We’ll mainly be focusing on hacking the D-LINK DIR-615 router which is issued to all UniFi subscribers. From stealing account credentials, to ways of building a router based botnet. There will also be a Q&A session in hopes of discussing other potential attack vectors.
Share this article
What do we have at the space?
December 8, 2010 by spoonfork · Leave a Comment
We have the following items for use by members at the space:
- Soldering iron
- Soldering flux
- Solder wire
- Pliers, snippers, IC extractor, wire cutters, diagonal pliers
- Screwdriver set
- Solder sucker
- Digital and analog multimeter
- Single core wires
- Variable power supply
- Etching materials
- Iron
- Printer (please buzz @spoonfork if you need to use the printer)
- Drill (please buzz @spoonfork if you need to use it)
- Electronic components (resistors, diodes, capacitors, etc)
- Old circuit boards
- Seeduino (as pointed by @kakeman, spelling fail, should be Seeeduino)
- Projector
- Breadboard, veroboards, etc
- Old PCs
- Old hard disks
- Lots and lots of cables
- … and many more!
Basically, we have enough electronic equipments to use if you want to get started on your projects. The members also have their toys, which are usually shared among each other:
- Various Arduinos (Arduino Uno, Arduino S3V3, Arduino Uno Mega, Seeeduino, Freeduino, Duemilanove, and many more!)
- Arduno sheilds: Ethernet shield, Xbee module and adaptor, QuarterK, LOLshield, motor party add-on, etc
- Bus pirate
- USBTinyISP programmer
- LCDs (16×2, 20×2), GLCD
- LED matrix
- … and many more!
We also have t-shirts and stickers for sale.
Share this article
This Week’s Electronics Friday is Cancelled
This week’s electronics Friday (3rd December 2010) is cancelled since most of the members will be out of town due to the Awal Muharram celebration on the 7th of December.
As a side note, we are still testing out the Google Calendar Events, so events may or may not appear on the Events page. To keep updated on our events, follow us on Twitter (@hackerspacekl) and subscribe to our blog as we will post event details on the blog as well.
Share this article
Migration to WordPress
December 1, 2010 by spoonfork · 2 Comments
After a long battle with Plone, we have finally decided to migrate the WordPress. When we started, we used Trac, then Plone, and now WordPress. Why the change?
With Plone, we wanted to have a system that can manage membership. For example, members can view their membership status, renew their membership, and be sent notification when membership fees are due. However, Plone doesn’t have this feature built-in, and we don’t have enough expertise to hack Plone. As far as membership management is concerned, we don’t have members in the hundreds, so I have been using a simple excel file to keep track of members and payment.
With Plone, we also wanted a system for event management, and Plone is great for that. The calendaring system rocks. It was tightly integrated with Twitter, so new events that are added will be tweeted out immediately. Posted items are integrated to the mailing list, so any new posting will be sent to the mailing list. The calendar and event system are the only function in Plone that works for us.
So Plone had been used primarily to blog. However, it is a monster. It’s slow, non-intuitive, and even the easiest of tasks such as adding multiple photos to a post seems daunting. This has been a major discouragement, and one of the primarily reasons why we seldom post new stuff (you can point the finger at Mr. Lazy too).
And so we decided to move to WordPress. WordPress has everything we need (we still don’t need the membership management thingamagick). The only exception is the event and calendar system that worked for us in Plone. For that, we chose Google Calendar Event, a really nice and functional plugin for WordPress. It is not as awesome as the one that we have in Plone (as @kakeman has repeatedly pointed out, ad nauseum), but it works. One limitation is that new events that are added are not automatically tweeted. If you know how to integrate Google Calendar with Twitter notification, do let us know.
As for migration from Plone to WordPress, it was a pain in the ass, and will be the subject for another post.
Share this article
HSKL Income & Expenditure Statement – December 2010
Our latest income and expenditure statement can be found here. The are a few good news regarding our finances:
- HSKL is officially debt free. Money owed to @spoonfork totalling RM10,209.04 have been fully paid.
- HSKL’s account is positive for the first time in many months
- We have successfully managed to keep costs low
The not so good news are:
- We still have very limited members to keep the space alive. In November, our membership count was 13, and at RM100 per person per month, that is just enough to pay for rental.
For the past two months, the most common feedback that I get from would-be new members was “RM100 per month ah? Why so expensive. Cannot afford la.” So why is RM100 so expensive per month?
But that is the wrong question to ask. The right question to ask is “Why is HSKL charging RM100 per month?“. The simple answer to that question is: we don’t have enough members. The more members we have, the less that everyone will have to pay.
The first year (almost!) of HSKL’s founding have been largely spent on developing core skills and knowledge. The handful of members that we have have accomplished so much. We started with zero knowledge on Arduino up to a point where we can design and build our own shield now. And we are slowly gaining recognition in the community.
The next step would logically, to recruit more members, and work on more interesting projects, and get everything that was planned executed. And hopefully, we will get more members and lower the membership fee.
OK, back to the accounts. Summary, since January:
- Average income per month is RM1808.67
- Average expenses per month is RM1800.92
- Balance: RM93.03
And for those who hasn’t paid their membership fees, please do so as soon as possible.
