Skip to content

Instantly share code, notes, and snippets.

View dac09's full-sized avatar

Daniel Choudhury dac09

  • Bangkok
  • 08:49 (UTC +07:00)
View GitHub Profile
@dac09
dac09 / injecting $http in the console
Last active August 29, 2015 14:16 — forked from chrishokamp/injecting $http in the console
injecting $http in the console Angular JS
var angularAppName = 'angularStore'; //replace this with your app name
var $inj = angular.injector([angularAppName]);
var serv = $inj.get('$http');
var x = serv({method: 'POST', url: 'http://127.0.0.1:5000'}).success(function(data){console.log(data)}).error(function(data, status, header){ console.log(data); console.log(status); console.log(header);});
console.log(x);
@dac09
dac09 / gist:932db6d5aba4d7020a47
Created April 13, 2015 19:54
Alfred Jira custom url
Alfred Custom Searches for Jira and Confluence
j - Jira issue number search - https://YOURCOMPANY.atlassian.net/issues/?jql=text%20~%20"{query}"
j+ - Jira issue full text search - https://YOURCOMPANY.atlassian.net/QuickSearch.jspa?searchString={query}
c+ - Confluence text search - https://YOURCOMPANY.atlassian.net/wiki/dosearchsite.action?queryString={query}
@dac09
dac09 / gist:7a6f030cf018888b435b
Created June 1, 2015 12:28
Xcode 6 IPA build from command line
xcodebuild -scheme AppName clean archive -archivePath build/archiveName
xcodebuild -exportArchive -exportFormat ipa -archivePath " build/archiveName.xcarchive" -exportPath "build/AppName.ipa" -exportProvisioningProfile "ProvisioningProfileName"
@dac09
dac09 / 0_reuse_code.js
Created March 29, 2016 23:17
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@dac09
dac09 / Monzo Webhooks + Fieldbook codelet integration
Last active October 1, 2016 15:18
Mondo Webhooks and fieldbook
Code to setup an integration between Mondo/Monzo webhooks and Fieldbook.
https://monzo.com/ and https://fieldbook.com
@dac09
dac09 / .fzfgit
Created June 10, 2016 15:34
Fzf Git aliases
# fbr - checkout git branch (including remote branches)
fbr() {
local branches branch
branches=$(git branch --all | grep -v HEAD) &&
branch=$(echo "$branches" |
fzf-tmux -d $(( 2 + $(wc -l <<< "$branches") )) +m) &&
git checkout $(echo "$branch" | sed "s/.* //" | sed "s#remotes/[^/]*/##")
}
# fco - checkout git branch/tag
@dac09
dac09 / cordovaPromise.js
Created October 25, 2016 11:02
Function to wrap cordova plugin functions in a Promise, to allow Angular / Zone.js to pick up changes
/**
* Function to wrap cordova plugin functions in
* a Promise, to allow Angular / Zone.js to pick up changes
*/
export function cordovaPromise(original : Function) {
return (...args: any[]) => {
return new Promise((resolve, reject) => {
original.call(this, resolve, reject, ...args);
});
@dac09
dac09 / retryRequest.js
Last active November 27, 2017 18:43
Retry request on condition, for epic
const validateResponse = ajaxResponse => {
if (ajaxResponse.status === 202) { // async operation on backend
return Observable.throw({ retry: true, ajaxResponse });
}
return Observable.of(ajaxResponse);
};
const userDataCaching = errors =>
errors
@dac09
dac09 / resolve-externally.js
Created December 28, 2017 12:12
Resolving promise externally
async function showRationaleDialog(title: string, message: string) {
let done;
const result = new Promise(resolve => {
done = resolve;
});
const alert = Alert.alert(title, message, [
{
text: 'OK',
onPress: () => done()
@dac09
dac09 / TabbedNavigator.js
Last active January 2, 2018 17:29
HOC With TabNavigator React Navigation
type Props = {
navigation: NavigationScreenProp<*>
};
const TabNavigatorInstance = TabNavigator(tabRouteConfig, tabNavigationConfig);
class TabbedNavigator extends Component<Props> {
// This is required for it to work, somewhat undocumented
// https://github.com/react-navigation/react-navigation/issues/3076