TLDR:
git rebase --onto newBase oldBase thingToRebase
if you had this:
TLDR:
git rebase --onto newBase oldBase thingToRebase
if you had this:
Info 0 [17:35:36.607] Starting TS Server | |
Info 1 [17:35:36.607] Version: 5.1.3 | |
Info 2 [17:35:36.607] Arguments: /Users/monroe/.nvm/versions/node/v16.15.0/bin/node /Applications/WebStorm.app/Contents/plugins/javascript-impl/jsLanguageServicesImpl/js-language-service.js -id=1698107736441 -debug-name=typescript --pluginProbeLocations /Users/monroe/dev/ekilah/deal-web,/Applications/WebStorm.app/Contents/plugins/javascript-impl/jsLanguageServicesImpl/typescript --globalPlugins tsc-ide-plugin | |
Info 3 [17:35:36.607] Platform: darwin NodeVersion: v16.15.0 CaseSensitive: false | |
Info 4 [17:35:36.607] ServerMode: undefined hasUnknownServerMode: undefined | |
Info 5 [17:35:36.614] Binding... | |
Err 6 [17:35:36.617] Process: Require is used /Users/monroe/dev/ekilah/deal-web/node_modules/typescript/lib/ | |
Info 7 [17:35:36.638] event: | |
{ | |
"seq": 0, |
Info 0 [16:40:35.653] Starting TS Server | |
Info 1 [16:40:35.654] Version: 5.2.2 | |
Info 2 [16:40:35.654] Arguments: /Users/monroe/.nvm/versions/node/v16.15.0/bin/node /Applications/WebStorm.app/Contents/plugins/javascript-impl/jsLanguageServicesImpl/js-language-service.js -id=1698104435420 -debug-name=typescript --pluginProbeLocations /Users/monroe/dev/ekilah/deal-web,/Applications/WebStorm.app/Contents/plugins/javascript-impl/jsLanguageServicesImpl/typescript --globalPlugins tsc-ide-plugin | |
Info 3 [16:40:35.654] Platform: darwin NodeVersion: v16.15.0 CaseSensitive: false | |
Info 4 [16:40:35.654] ServerMode: undefined hasUnknownServerMode: undefined | |
Info 5 [16:40:35.663] Binding... | |
Err 6 [16:40:35.667] Process: Require is used /Users/monroe/dev/ekilah/deal-web/node_modules/typescript/lib/ | |
Info 7 [16:40:35.708] event: | |
{ | |
"seq": 0, |
[user] | |
name = YOUR NAME | |
email = [email protected] | |
[color] | |
ui = auto | |
[push] | |
default = simple | |
[alias] | |
co = checkout | |
st = status |
# git prompt start | |
alias __git_ps1="git branch 2>/dev/null | grep '*' | sed 's/* \(.*\)/(\1)/'" | |
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# SETUP CONSTANTS | |
# Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
# I don't remember where I found this. o_O |
-- this script will toggle Q and E with the g502's left (11) and right (10) scroll wheel buttons. | |
-- that includes disabling one when the other is pressed, and vice versa. | |
isLeftPressed = false | |
isRightPressed = false | |
function OnEvent(event, arg) | |
--OutputLogMessage("event = %s, arg = %s\n", event, arg); | |
-- left pressed |
[alias] | |
amend = !git add . && git commit --amend --no-edit |
check process lita with pidfile /usr/local/var/run/lita.pid | |
start program = "/full/path/to/litadaemonscript/litadaemon start" | |
stop program = "/full/path/to/litadaemonscript/litadaemon stop" |
#!/usr/bin/env ruby | |
require 'httparty' | |
require 'json' | |
require 'ap' | |
require 'fileutils' | |
# require 'Date' | |
API_TOKEN = "FILL THIS IN WITH YOUR API KEY" | |
BASE_URL = "https://slack.com/api/" |
// register for heyzap ad network callbacks as early as you can | |
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(admobCallbackNotification:) name:HZMediationNetworkCallbackNotification object:@"admob"]; | |
- (void) adMobCallbackNotification:(NSNotification *)notif { | |
NSString *cosnt callback = notif.userInfo[HZNetworkCallbackNameUserInfoKey]; | |
if ([callback isEqualToString:HZNetworkCallbackAvailable] || [callback isEqualToString:HZNetworkCallbackDismiss]) { |