View react-tracking-context-array-override.js
import React, { Component, Fragment } from "react"; | |
import ReactDOM from "react-dom"; | |
import track, { useTracking } from "react-tracking"; | |
import "./styles.css"; | |
// React hooks example | |
const HookButton = () => { | |
const { trackEvent } = useTracking(); |
View cbuuid.swift
extension CBUUID { | |
var type: UUID { | |
return UUID(rawValue: uuidString)! | |
} | |
enum UUID: String { | |
case main = "xxx" | |
View update_order.diff
diff --git a/update_order.json b/update_order2.json | |
index 7dc070a..c61893d 100755 | |
--- a/update_order.json | |
+++ b/update_order2.json | |
@@ -5,13 +5,13 @@ | |
"controller": "BLFulfillment::ShopifyWebhooksController", | |
"action": "update_order", | |
"status": 204, | |
- "duration": 17.72, | |
+ "duration": 16.7, |
View NSDataExtensions.swift
// | |
// NSDataExtensions.swift | |
// MAPO | |
// | |
// Created by Hugues Bernet-Rollande on 21/3/16. | |
// Copyright © 2016 WB Technologies. All rights reserved. | |
// | |
import Foundation |
View .bash_profile
rspec-match() { | |
# rspec-match blah | |
# will run all specs matching blah | |
echo "running specs matching $1" | |
find spec -wholename "*$1*"| grep -v "factories"| xargs bin/rspec | |
} | |
rspec-branch() { | |
# will run all touches specs edited/created in current branch | |
current_branch_name=`git branch | grep \* | cut -d ' ' -f2` |
View ViewController.swift
import UIKit | |
import CoreBluetooth | |
import RxSwift | |
import RxBluetoothKit | |
extension CBUUID { | |
var type: UUID { | |
return UUID(rawValue: uuidString)! | |
} | |
View Reactive.swift
// | |
// Reactive.swift | |
// RxSwift | |
// | |
// Created by Yury Korolev on 5/2/16. | |
// Copyright © 2016 Krunoslav Zaher. All rights reserved. | |
// | |
/** | |
Use `Reactive` proxy as customization point for constrained protocol extensions. |
View diff.patch
$ git diff | |
diff --git a/app/services/conversation_service.rb b/app/services/conversation_service.rb | |
index f1dd0faa..f54d3a8d 100644 | |
--- a/app/services/conversation_service.rb | |
+++ b/app/services/conversation_service.rb | |
@@ -164,20 +164,19 @@ class ConversationService | |
send_push_notifications_to_users(recipient, user, conversation, :remove_user) | |
end | |
log_action(conversation, :update_out, removed_memberships.map(&:id)) if removed_memberships.any? | |
+ send_email_notifications(conversation, removed_memberships, :remove) |
View diff.patch
$ git diff | |
diff --git a/app/services/conversation_service.rb b/app/services/conversation_service.rb | |
index f1dd0faa..f54d3a8d 100644 | |
--- a/app/services/conversation_service.rb | |
+++ b/app/services/conversation_service.rb | |
@@ -164,20 +164,19 @@ class ConversationService | |
send_push_notifications_to_users(recipient, user, conversation, :remove_user) | |
end | |
log_action(conversation, :update_out, removed_memberships.map(&:id)) if removed_memberships.any? | |
+ send_email_notifications(conversation, removed_memberships, :remove) |
View prepare-commit-msg
#!/bin/bash | |
# This way you can customize which branches should be skipped when | |
# prepending commit message. | |
if [ -z "$BRANCHES_TO_SKIP" ]; then | |
BRANCHES_TO_SKIP=(master develop) | |
fi | |
BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
BRANCH_NAME="${BRANCH_NAME##*/}" | |
BRANCH_EXCLUDED=$(printf "%s\n" "${BRANCHES_TO_SKIP[@]}" | grep -c "^$BRANCH_NAME$") | |
BRANCH_IN_COMMIT=$(grep -c "\[$BRANCH_NAME\]" $1) |
NewerOlder