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
### | |
I don't advise trying to edit this file directly. This was coded using coffeescript. | |
Coffeescript source here: https://gist.github.com/3779098 | |
### | |
`function onOpen(){}` | |
`function populateProfile(){}` | |
`function clearUpgradeFields(){}` | |
`function clearAllFields(){}` | |
`function spreadsheetName(){}` |
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
RewriteEngine on | |
RewriteCond %{THE_REQUEST} /(.*)\.s?html | |
RewriteRule ^.*$ /%1 [R=301,L] | |
RewriteCond %{REQUEST_FILENAME}\.shtml -f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*/?[\w\d\-]+)$ $1.shtml [L] |
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
function() | |
local unit = nil | |
local group_type = "" | |
local group_size = 0 | |
if IsInRaid() then | |
group_type = "raid" | |
group_size = 40 | |
elseif IsInGroup() then | |
group_type = "party" |
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
Rake::Task["db:structure:dump"].clear | |
namespace :db do | |
namespace :structure do | |
desc "Overriding the task db:structure:dump task to remove -i option from pg_dump to make postgres 9.5 compatible" | |
task :dump => [:environment, :load_config] do | |
config = current_config | |
filename = ENV['DB_STRUCTURE'] || File.join(Rails.root, "db", "structure.sql") | |
case config['adapter'] | |
when /mysql/, 'oci', 'oracle' | |
ActiveRecord::Base.establish_connection(config) |
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
Homebrew build logs for postgis on Ubuntu 17.10 | |
Build date: 2019-08-07 15:47:49 |
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
Homebrew build logs for postgresql@12 on Ubuntu 20.04.1 LTS | |
Build date: 2020-12-01 13:50:05 |
OlderNewer