Skip to content

Instantly share code, notes, and snippets.

View onderceylan's full-sized avatar
🌚
Waiting for the next full moon

Önder Ceylan onderceylan

🌚
Waiting for the next full moon
View GitHub Profile
@onderceylan
onderceylan / reducer.ts
Created September 19, 2018 20:25
Persistent storage of your store - reducer
import { Action, ActionReducer, ActionReducerMap, createFeatureSelector, MetaReducer } from '@ngrx/store';
import * as fromTimezone from './timezone.reducer';
import * as fromNotifications from './notification.reducer';
import { localStorageSync } from 'ngrx-store-localstorage';
export const FEATURE_NAME = 'settings';
const STORE_KEYS_TO_PERSIST = ['timezone', 'notifications'];
export interface SettingsState {
timezone: fromTimezone.TimezoneState;
@onderceylan
onderceylan / ci_scripts_deploy_01_hockey_app
Created March 16, 2018 08:41
CI scripts for hybrid mobile apps - Deploy your application to HockeyApp
#!/bin/bash
echo "Deploying QA build to HockeyApp"
commit_message=$(git log --oneline -5)
message=''
strategy='add'
commit_sha=`git rev-parse HEAD`
notify='0'
build_server_url='your-build-plan-url'
@onderceylan
onderceylan / ci_scripts_setup_02_codesigning_preparation
Last active March 16, 2018 09:34
CI scripts for hybrid mobile apps - Code signing preparation
#!/bin/bash
# Setup custom keychain
## Create a new keychain
security create-keychain -p "your-keychain-password-here" your-custom-keychain.keychain
security set-keychain-settings ~/Library/Keychains/your-custom-keychain.keychain-db
## Set default keychain
security default-keychain -s ~/Library/Keychains/your-custom-keychain.keychain-db
@onderceylan
onderceylan / ci_scripts_setup_01_install_system_dependencies
Last active February 9, 2018 13:45
CI scripts for hybrid mobile apps
#!/bin/bash
# Install homebrew
if ! which -s brew > /dev/null; then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Install yarn
if ! which -s yarn > /dev/null; then
curl -o- -L https://yarnpkg.com/install.sh | bash
@onderceylan
onderceylan / convertToInternationalTurkishNumber.applescript
Created October 2, 2016 20:50
AppleScript code for adding Turkish international phone prefix to every phone item in Apple Contacts
tell application "Contacts"
repeat with i from 1 to (count every person)
set phoneProperties to properties of phones of person i
repeat with j from 1 to (count of phoneProperties)
if value of item j of phoneProperties does not contain "+" then
set oldPhone to value of item j of phoneProperties
set value of item j of phones of person i to "+9" & oldPhone
end if
end repeat
end repeat
@onderceylan
onderceylan / gwd-handlers.js
Created September 16, 2015 15:37
frameElement
<script type="text/javascript" gwd-events="handlers">gwd.handleExpand_buttonAction=function(){window.frameElement.style.height='415px';gwd.actions.gwdGenericad.goToPage("gwd-ad","expanded-page")};gwd.handleClose_buttonAction=function(){window.frameElement.style.height='90px';gwd.actions.gwdGenericad.goToPage("gwd-ad","banner-page")};gwd.auto_Gwd_taparea_1Action=function(event){gwd.actions.gwdGenericad.exit("gwd-ad","http://adclick.g.doubleclick.net/aclk?sa=l&ai=CHCeMcIr5VdCpM8m4b5HzvLgDAQB7EAEguWAoBIgBAZABAMABA...",true)}</script>