This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Allow uploads | |
## http://www.mediawiki.org/wiki/Manual:Configuring_file_uploads | |
$wgFileExtensions = array_merge($wgFileExtensions, array('doc', 'xls', 'mpp', 'ppt', 'pdf', 'zip')); | |
$wgEnableUploads = true; # Enable uploads | |
## http://www.mediawiki.org/wiki/Manual:Mime_type_detection | |
$wgMimeDetectorCommand = "file -bi"; | |
## Prevent users from replacing files: http://www.mediawiki.org/wiki/Manual:Configuring_file_uploads | |
$wgGroupPermissions['user']['reupload'] = false; | |
$wgGroupPermissions['autoconfirmed']['reupload'] = false; | |
## Allow users to reupload own files: http://www.mediawiki.org/wiki/Manual:User_rights |
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 8.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Timestamp,I will regularly attend meetings within 2 miles (3.2 kilometers) of these locations:,I have attended this many Portland Ruby Brigade meetings or events during the last 12 months: | |
6/10/2009 18:16:21,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace, Souk, etc), SE Portland near Mt. Tabor, Beaverton near MAX station",8/12/2009 | |
6/10/2009 18:26:27,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace, Souk, etc), SE Portland near Mt. Tabor, Belgium",8/12/2009 | |
6/10/2009 18:26:52,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace, Souk, etc)",4/7/2009 | |
6/10/2009 18:31:18,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace, Souk, etc), SE Portland near Mt. Tabor",1/3/2009 | |
6/10/2009 18:31:31,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace, Souk, etc)",4/7/2009 | |
6/10/2009 18:37:32,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace, Souk, etc), SE Portland near Mt. Tabor",4/7/2009 | |
6/10/2009 18:38:42,"Downtown Portland and nearby (e.g., PSU, AboutUs, NedSpace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Is the ExtUtils::Installed in Perl 5.10 broken? | |
I need to be able to query an installed CPAN package and find out what files it | |
contains. I had code that worked fine with Perl 5.8, but it doesn't work with | |
5.10. Any ideas? Is there another way that I should be doing this? | |
# From shell, install a silly package: | |
cpan Acme::please | |
# From Perl, get the lists of file in this package: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stop spammers from broadcasting to your Google Groups | |
===================================================== | |
Is your Google Groups mailing list broadcasting messages from spammers? | |
If so, it makes your group look bad, annoys subscribers, pollutes the | |
archives, and hurts your community. | |
Thankfully, you can easily stop these spam broadcasts. By changing your | |
group settings, administrators will be able to see the first posts made | |
by new members and decide whether to allow them before they're broadcast |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Thunderbird 3 user interface tweaks | |
* =================================== | |
* | |
* These changes improve Thunderbird's behavior on smaller screens. You should | |
* add these to your Thunderbird profile's "chrome/userChrome.css" file. You | |
* will probably need to create a directory and file. | |
*/ | |
/* Show a dot for unstarred messages in the message listing so that it's easy | |
* to tell which messages have are starred. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Vimium" adds vi-like key mappings to Google Chrome browser: http://bit.ly/9K14IQ | |
You can change your mappings in Extensions > Vimium > Advanced Options > Key mappings. | |
Here are key mappings that I find useful: | |
map b scrollFullPageUp | |
map m previousTab | |
map , nextTab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"===[ Settings ]======================================================== | |
" Autocomplete using Firefox Awesomebar subsystem | |
set complete=l | |
" Show completions as you type? '' waits for tab, 'auto' shows them immediately | |
set wildoptions='' | |
" Select the longest autocomplete match | |
set wildmode='list:full' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tell controller not to check for authenticity token: | |
Rails.configuration.action_controller.allow_forgery_protection = false | |
# Create a session: | |
app = ActionController::Integration::Session.new | |
# Setup parameters from log: | |
params = {"start_date"=>"2010-04-15", "end_date"=>"2010-04-15", "commit"=>"Create", "event"=>{"title"=>"Brain Silo Hackfest/Open House", "url"=>"http://brainsilo.org", "venue_id"=>"202392003", "description"=>"The silo is open to any interested parties who want to hack or just check out the space during the welcome meeting. <b>This is an Open House meeting</b>\r\n\r\nNOTE: The entrance for the space is on the backside of the building in the alley -- NOT at the mailing address. See this satellite view for clarification: http://bit.ly/8Arvpt\r\n\r\nThe outside door is at the top of a set of stairs. The space is marked with a small sticker that is labeled \"BrainSilo\"\r\n", "tag_list"=>"brainsilo, hackfest"}, "venue_name"=>"bRainSilo", "trap_field"=>"", "start_time"=>"07:00 PM", "end_time"= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This gist describe's the OpenConferenceWare data structures | |
# related to user favorites. | |
# | |
# The hope is that this will help with creating an algorithm that | |
# can schedule sessions in an optimal way based on: | |
# | |
# * User favorites: Don't schedule talks at same time if many | |
# users favorite them together. | |
# * Tracks: Balance out tracks so that there aren't, for example, | |
# only "cooking" track talks happening at the same time. |