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
2013-11-26 21:02:02.648546|INFO |ServerLibPriv | | TeamSpeak 3 Server 3.0.10.1 (2013-11-08 11:09:56) | |
2013-11-26 21:02:02.658673|INFO |ServerLibPriv | | SystemInformation: Linux 2.6.18-028stab092.1 #1 SMP Wed Jul 20 19:47:12 MSD 2011 x86_64 Binary: 64bit | |
2013-11-26 21:02:02.659756|INFO |DatabaseQuery | | dbPlugin name: SQLite3 plugin, Version 2, (c)TeamSpeak Systems GmbH | |
2013-11-26 21:02:02.659787|INFO |DatabaseQuery | | dbPlugin version: 3.7.3 | |
2013-11-26 21:02:02.660090|INFO |DatabaseQuery | | checking database integrity (may take a while) | |
2013-11-26 21:02:02.774899|WARNING |Accounting | | Unable to find valid license key, falling back to limited functionality |
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
// Gets called by notification | |
-(void)reloadTableView{ | |
[self.tableView reloadData]; | |
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[self.workoutSessionManager currentExercises].count -1 inSection:0]; | |
WJSelectExerciseCell *cell = (WJSelectExerciseCell*)[self.tableView cellForRowAtIndexPath:indexPath]; | |
cell.alpha = 0; | |
cell.transform = CGAffineTransformMakeScale(0.8, 0.8); | |
[UIView animateWithDuration:0.4 delay:0.35 usingSpringWithDamping:0.7 initialSpringVelocity:1 options:UIViewAnimationOptionCurveEaseInOut animations:^{ |
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
{"45" => {"time_slot_ids"=>["1"]}, "46"= >{ "time_slot_ids"=>["1", "2"]}} |
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
# render my_response_template.js.erb | |
respond_to do |format| | |
format.js { render 'my_response_template', layout: false } | |
end |
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
// Get current date in ISO 8601 string | |
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; | |
NSLocale *enUSPOSIXLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"]; | |
[dateFormatter setLocale:enUSPOSIXLocale]; | |
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"]; | |
NSDate *now = [NSDate date]; | |
NSString *endedAt = [dateFormatter stringFromDate:now]; | |
self.workoutSessionManager.workoutSession.endedAt = endedAt |
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
# Nokogiri | |
gem install nokogiri -- --with-xml2-include=/usr/local/Cellar/libxml2/2.9.2/include/libxml2 --with-xml2-lib=/usr/local/Cellar/libxml2/2.9.2/lib --with-iconv-lib=/usr/local/Cellar/libiconv/1.14/lib --with-iconv-include=/usr/local/Cellar/libiconv/1.14/include --use-system-libraries | |
# PG | |
gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.6/bin/pg_config |
OlderNewer