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 / 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>
@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 / 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 / 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 / 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 / events.selector.ts
Last active September 21, 2018 18:23
Composing selectors - selector
import { createSelector } from '@ngrx/store';
import * as fromFeature from '../reducers';
import * as fromEvents from '../reducers/events.reducer';
import * as fromSettingsSelectors from '../../../settings/store/selectors';
import { eventEntityAdapter } from '../reducers/events.reducer';
import { filterEventEntitiesByUserSettings } from '../../utils/notification-utils';
import { filter, size } from 'lodash-es';
// This is a basic use case to slice feature state
export const getEventsState = createSelector(
@onderceylan
onderceylan / manifest.json
Last active January 21, 2019 22:16
Build a production ready PWA with Angular and Firebase - manifest.json
{
"name": "ITNEXT Summit 2018",
"short_name": "ITNEXT",
"description": "Be the best explorer in next-gen technologies. Experience use-cases, howtos and best-practices with latest frontend and backend technologies, network and security, engineering and low-code development with OutSystems.",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"orientation": "portrait",
"scope": "/",
"start_url": "/?utm_source=itnext_pwa_a2hs",
@onderceylan
onderceylan / firebase.json
Created January 26, 2019 10:06
Build a production ready PWA with Angular and Firebase - firebase.json
{
"hosting": {
"public": "www",
"ignore": [
"firebase.json",
"3rdpartylicenses.txt",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
@onderceylan
onderceylan / ngsw.json
Created January 28, 2019 23:29
Build a production ready PWA with Angular and Firebase - ngsw.json
{
"configVersion": 1,
"appData": {
"version": "1.1.0",
"changelog": "Added better resource caching"
},
"index": "/index.html",
"assetGroups": [
{
"name": "shell",