NYC Ruby Roundtable - November 8, 2017
Paul Stefan Ort, @PaulStefanOrt github.com/paulstefanort
Def Method, Dependable <[email protected]>
- find changes across gem versions
- example: Rails 5.0.5 -> Rails 5.1.0
Paul Stefan Ort, @PaulStefanOrt
Def Method, Dependable [email protected]
- find changes across gem versions
- identify potentially conflicting monkeypatches
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
grep -E "^setenv" /etc/launchd.conf | xargs -t -L 1 launchctl |
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
// (http://stackoverflow.com/questions/410471/how-can-i-pop-a-view-from-a-uinavigationcontroller-and-replace-it-with-another-i) | |
// locally store the navigation controller since | |
// self.navigationController will be nil once we are popped | |
UINavigationController *navController = self.navigationController; | |
/* Not necessary with ARC | |
// retain ourselves so that the controller will still exist once it's popped off | |
[[self retain] autorelease]; | |
*/ |
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
@interface ViewController | |
@end | |
@implementation ViewController | |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { | |
[firstControl resignFirstResponder]; | |
[secondControl resignFirstResponder]; | |
[thirdControl resignFirstResponder]; | |
// ... | |
} |
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
# Remove the last character of each line in the file: | |
:%s/.$// |
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 | |
RewriteRule ^/(.*)$ http://www.newdomain.com [R=301,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
# Originally from https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Enable the 2D Dock | |
defaults write com.apple.dock no-glass -bool true | |
# Disable menu bar transparency | |
defaults write -g AppleEnableMenuBarTransparency -bool false | |
# Expand save panel by default | |
defaults write -g NSNavPanelExpandedStateForSaveMode -bool true |
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
<?php | |
/* From http://stackoverflow.com/questions/5039494/yii-ajax-button-how-to-prevent-multiple-js-onclick-bindings */ | |
echo CHtml::submitButton($diary->isNewRecord ? 'Создать' : 'Сохранить', array('id' => 'newRecSubmit')); | |
Yii::app()->clientScript->registerScript('btnNewRec', " | |
var clickNewRec = function() | |
{ | |
jQuery.ajax({ | |
'success': function(data) { | |
$('#ui-tabs-1').empty(); | |
$('#ui-tabs-1').append(data); |
NewerOlder