skip page navigationOregon State University

OSLUG Planet

Voted!

Frederic Wenzel - Tue, 08/25/2009 - 08:21

On September 27, 2009, the Federal Republic of Germany will vote for their 17th “Bundestag”, i.e., its federal parliament. Due to my absence on the actual election day, I went to the ballot today already for early voting. Here is proof:

The staff were very helpful and interestingly, there were actually a lot of people asking for absentee ballots.

Another observation struck me as odd while reading the ballot: Of all people, the direct candidate of one of the nationalist parties*) is a “Fremdsprachensekretärin”, or certified multi-lingual secretary. Yup, a foreign-language secretary by day, moonlighting as a xenophobe. Life’s ironic.

*) whom I didn’t vote for, just in case that was unobvious.

Categories: OSLUG Planet

Reflecting on gsoc program

Jose Cedeno - Sun, 08/23/2009 - 14:54
Last week, MartinL tested the timeline course format and he found a couple of bugs. I got those bugs fixed, and submitted a task to the moodle tracker to get the test site updated. As soon as the test site is updated, I will make a call for new testers. Earlier in the week, I [...]
Categories: OSLUG Planet

Changing gmail account associated to android phone without factory reset

Jose Cedeno - Sun, 08/23/2009 - 11:41
A couple of days ago, while I was in irc I read a good tip that James_B found. You can change the gmail account that the google apps use without having to do a factory reset on the phone. Just go to: Settings>apps>manage apps and clear the data for “google apps”. This works on Android [...]
Categories: OSLUG Planet

Adding Empty Directories to git-svn

Frederic Wenzel - Tue, 08/18/2009 - 07:34

Just a reminder, because I always forget it: When you use git-svn on an svn repository and your code base contains empty directories (say, for temporary files, or log files), they will be ignored by git unless they contain at least one file.

Paradox? Maybe. There’s a good reason however: git ignores empty directories because it tracks (file) content, not a bunch of directories some of which happen to contain a file (the concept of tracking files might be the only thing git has remotely in common with good ol’ CVS — though git also does not deeply care about file names, only content).

The “common” way to handle this is by adding a .gitignore file to the repository. This won’t harm svn-only clients, but it’ll make git-svn clients pick up the (almost) empty directory properly.

This is what you need to do.

mkdir empty_dir
echo '*' > empty_dir/.gitignore
echo '!.gitignore' >> empty_dir/.gitignore
git add empty_dir
git commit -m 'adding empty directory' empty_dir

The .gitignore file tells git what file names not to track inside the directory in question. The asterisk means, ignore all files, but the second line makes sure the .gitignore file itself is recognized and added to the repository.

Categories: OSLUG Planet

Actual update on last week’s work

Jose Cedeno - Mon, 08/17/2009 - 02:41
Since I forgot to click on ‘publish’ last week (I got two blog posts today), here’s my actual moodle update for last week: * Updated code in cvs repo with latest 1.9.x version of course format * I found a typo in the 1.9.x version of the course format (wasn’t causing a bug) * Read documentation on how [...]
Categories: OSLUG Planet

GSOC Pencils down is nearing

Jose Cedeno - Mon, 08/17/2009 - 02:33
Last week I spent reading and doing some research on Moodle 2.0. I also fixed a couple of minor usability bugs in the course format. Nothing too big. I tested the course format some more. After reading more in the forums, it looks like I should start to focus on porting the timeline course format [...]
Categories: OSLUG Planet

New Contact Page for Mirwin

Justin Gallardo - Fri, 08/14/2009 - 05:51

Within a week of launching the Mirwin site, we have had users giving us feedback on various bugs that we had missed. One of the bugs that really bothered me was the 'Contact Us' page seemed to not be working as well as it was suppose to be. One of the big complaints that we got that the captcha was a bit tough to read. I found this a bit surprising, as we were using ReCaptcha for our forms, but at the request of users, I decided to try my hand at making something a little easier for users to understand and see.

read more

Categories: OSLUG Planet

… and Fred

Frederic Wenzel - Thu, 08/13/2009 - 02:54

Today at icanhascheezburger.com:

Apparently, I have my own lolcat

(Thanks for the link, Dolske!)

Categories: OSLUG Planet

Mirwin Consulting is alive!

Justin Gallardo - Sun, 08/09/2009 - 14:04

Well after a lot of effort, I'm very excited to announce that I've founded a new company, Mirwin Consulting L.L.C. with Michael. Woo!

</shameless plug>

Categories: OSLUG Planet

Is Twitter down?

Frederic Wenzel - Thu, 08/06/2009 - 08:48

Yes, yes it is. Says istwitterdown.com:

In fact, it is “too down” even to display the fail-whale. I’ve not seen that before

PS: On an unrelated side note: hasthelargehadroncolliderdestroyedtheworldyet.com?

Categories: OSLUG Planet

Domaine de Tara

Frederic Wenzel - Tue, 08/04/2009 - 04:49

Just recently, my fiancée Tara joined the blogging community with her first own blog called “Domaine de Tara”.

She started off with a nice little article on the hunt for American-style brown sugar in Germany. It also includes a yummy recipe for baking Oatmeal Walnut Chocolate Chunk Cookies which — in spite of the sugar-related difficulties — turned out more than delicious.

Her future posts are likely going to be about food (both her passion and profession) and German strangeness she’s just bound to stumble across every once in awhile…

Feel free to visit her blog, say hello, and maybe even subscribe to the RSS feed. Have fun!

The photo is from a trip we took to Provence, where a winery coincidentally carries my fiancée’s name.

Categories: OSLUG Planet

Spot der Piratenpartei zur Bundestagswahl 2009

Frederic Wenzel - Tue, 08/04/2009 - 03:10

Am 27. September Piratenpartei wählen.

Categories: OSLUG Planet

Timeline Course Format Update

Jose Cedeno - Fri, 07/31/2009 - 03:00
Last week on the timeline course format saga: * I kept testing the course format. I haven’t run into any new bugs * Updated the cvs repo * Fixed a small performance bug that affected the course format when only one section was being displayed * Looked in more detail for ways to fix the performance bottlenecks in the [...]
Categories: OSLUG Planet

shipped libcloud

Alex Polvi - Thu, 07/23/2009 - 15:45

Woo! We shipped an implementation of libcloud, check it out over on libcloud.org. It is a pure python library for working with a variety of cloud server providers. It is still a work in progress, but would love to get others involved!

Categories: OSLUG Planet

gsoc update

Jose Cedeno - Mon, 07/20/2009 - 22:54
Last week was a good week. Woot, I passed the midterm examinations of gsoc. I got some coding work done. Thanks to arborrow and Jordan from moodle, I was able to get a demo setup for the timeline course and created a course so that community members could provide usability feedback as well as help [...]
Categories: OSLUG Planet

Home

Michael Burns - Tue, 07/14/2009 - 12:51

Mirwin is an Oregon-based web design and consulting company. For a combined 17 years of industry experience, we provide a small-town feel with big city results.

Categories: OSLUG Planet

Google Calendar Widget for Elgg1.5

Justin Gallardo - Mon, 07/13/2009 - 06:19

With the big migration of Beaversource to the OSL complete, I've finally gotten to shift my focus back to actual coding.

One of my first projects for migrating Beaversource to the newer version of Elgg is to recreate the feature we call "Project Profiles" inside of Elgg 1.5. These profiles give all of the projects a social profile with forums, comment walls, pictures, etc. In order to learn more about how the new plug-in system works, I decided to port over the Google calendar widget I wrote for Elgg 0.9.x to the new version of Elgg. So I thought I'd toss it online for anyone else possibly using Elgg.

Its available in git at http://jiraffe.net/git/googlecalendar.git for anyone that wants it.

Cheers!

read more

Categories: OSLUG Planet

Moodle Updates

Jose Cedeno - Sat, 07/11/2009 - 12:08
Last week was productive. I tested my js changes some more, and they looked good. Later on I found a couple of bugs and fixed them. Unfortunately that shine the light on more bugs . I am still working on them. Javascript sorting of sections is not as simple as it should be. [...]
Categories: OSLUG Planet

Services

Michael Burns - Fri, 07/10/2009 - 14:54

Mirwin is an Oregon-based company with a decade of web development experience. We build custom, maintainable websites to the exact needs of our customers.

We specialize in building community-oriented sites that rely on heavy involvement from users.

Categories: OSLUG Planet

Javascript debugging, weird yoga poses, and more

Jose Cedeno - Wed, 07/01/2009 - 23:48
Last week, summer classes started at Oregon State University. I usually don’t take classes during the summer. I like to take time off from school, homework and just re-charge. Since I’m an international student at Oregon State University, in order for me to participate in gsoc, I have to take a minimum of 3 credits [...]
Categories: OSLUG Planet
Syndicate content