This file contains hidden or 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
$wgAuthRemoteuserUserName = function() { | |
$credentials = explode( ':',$_SERVER['REMOTE_USER_DATA']); | |
$username = ucfirst($credentials[0]); | |
return $username ? $username : ""; | |
}; |
This file contains hidden or 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
logging: | |
filters: | |
stack: | |
(): galaxy.web.stack.application_stack_log_filter | |
formatters: | |
stack: | |
(): galaxy.web.stack.application_stack_log_formatter | |
handlers: | |
console: | |
class: logging.StreamHandler |
This file contains hidden or 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
# Cell 1 | |
import pandas as pd | |
import os, sys | |
response_data = pd.read_csv('Downloads/Fire_Rescue_Responses.csv') | |
response_data.head() | |
rd_addr_loc = response_data['Location Address'].str.split('\n', 1, expand=True) | |
rd_addr_loc.columns = ['Address', 'Location'] | |
rd_date = response_data['Response Date'].str.split(' ', 1, expand=True) | |
rd_date.columns = ['Date', 'Time'] |