-
Open the Terminal
-
Use
mysqldumpto backup your databases -
Check for MySQL processes with:
ps -ax | grep mysql -
Stop and kill any MySQL processes
-
Analyze MySQL on HomeBrew:
brew remove mysql
| 阿爸 a1'ba4 18137 | |
| 阿昌族 a1'chang1'zu2 50849 | |
| 阿斗 a1'dou3 42632 | |
| 阿飞 a1'fei1 48603 | |
| 阿富汗 a1'fu4'han4 3461 | |
| 阿訇 a1'hong1 34432 | |
| 阿拉伯数字 a1'la1'bo2'shu4'zi4 35937 | |
| 阿拉伯语 a1'la1'bo2'yu3 30476 | |
| 阿妈 a1'ma1 16220 | |
| 阿门 a1'men2 47913 |
| # | |
| # mmm m m mmm mmm mmm mmmmm mmm | |
| # " # "m m m" #" # # " #" "# # # # #" # | |
| # m"""# #m#m# #"""" """m # # # # # #"""" | |
| # "mm"# # # "#mm" "mmm" "#m#" # # # "#mm" | |
| # | |
| # nginx configuration For Ruby/Rack web applications | |
| # | |
| # Cooked up with style, care and a bit of *secret* | |
| # nerdy spice. :-) |
| adb help // List all comands | |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader |
| adb help // List all comands | |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader |
| #!/bin/bash | |
| # Run as root or sudo the commands that need it as you go. | |
| # brew version 0.9.5 | |
| # Mac OS X 10.10.1 | |
| # A little bit changed version of this: | |
| # http://stackoverflow.com/questions/19538118/osx-mavericks-bind-no-longer-installed-how-to-get-local-dns-server-working |
| // 1. Go to https://twitter.com/following. | |
| // 2. Keep scrolling to the bottom repeatedly until all your followers are loaded. | |
| // 3. Run this in your console. | |
| [].slice.call(document.querySelectorAll('.unfollow-text')).forEach(function(button) { | |
| button.click(); | |
| }); |
| /* Scroll to the bottom of https://twitter.com/following | |
| Open the Console and run the following | |
| */ | |
| $('.ProfileCard-content').each(function(){var status = $(this).find('.FollowStatus').text();var unfollowButton = $(this).find('.user-actions-follow-button');if(status != 'follows you'){unfollowButton.click();}}); |
| function DeCasteljauBezier(points, density, step){ | |
| //if (points.length < 3) return null; | |
| console.time('bezier'); | |
| var ps = points.map(function(p){ | |
| return { | |
| x: p.x, | |
| y: p.y | |
| }; | |
| }), | |
| results = [], |
| // | |
| // UILabel+FontSize.Swift | |
| // | |
| // Created by Nutchaphon Rewik on 7/11/15. | |
| // Copyright (c) 2015 Nutchaphon Rewik. All rights reserved. | |
| // | |
| import UIKit | |
| extension UILabel{ |