This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript" charset="utf-8"> | |
window.onload = function(){ | |
location.href = "https://itunes.apple.com/us/app/3fende-xunnonyusuwomatome/id590384791?mt=8&uo=4"; | |
} | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
BasedOnStyle: Google | |
ColumnLimit: 200 | |
IndentWidth: 4 | |
BreakBeforeBraces: Linux | |
PointerBindsToType: false | |
ObjCSpaceAfterProperty: true | |
ObjCSpaceBeforeProtocolList: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="4514" systemVersion="13C64" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="9k6-sT-5eS"> | |
<dependencies> | |
<deployment defaultVersion="1536" identifier="iOS"/> | |
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3747"/> | |
</dependencies> | |
<scenes> | |
<!--View Controller--> | |
<scene sceneID="P0p-p3-Ypa"> | |
<objects> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Convert NodeList to Array http://davidwalsh.name/nodelist-array | |
var rangePairs = [].slice.call(document.querySelectorAll('dd.jobs-list-annual-salary')); | |
var averages = rangePairs.map(function(pair){ | |
var nums = pair.querySelectorAll('span.num'); | |
var floor = parseInt(nums[0].innerText) || 0; | |
var ceiling = parseInt(nums[1].innerText.replace(',', '')) || floor; | |
return parseInt((floor + ceiling)/2); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import CFNetwork; | |
@import Security; | |
#import <MailCore/MailCore.h> | |
const NSString * const DocomoMailAddress = @"[email protected]"; | |
const NSString * const DocomoMailUser = @"user"; | |
const NSString * const DocomoMailPassword = @"password"; | |
const NSString * const ExampleMailingAddress = @"[email protected]"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### TestFlight ### | |
API_TOKEN="YOUR_TESTFLIGHT_API_TOKEN" | |
TEAM_TOKEN="YOUR_TESTFLIGHT_TEAM_TOKEN" | |
MEMBER_LISTS="YOUR_TESTFLIGHT_MEMBER_LIST_NAMES,OTHER_LIST_NAME,..." | |
CONFIGURATION="Release" | |
SCHEME_NAME=$(shell basename *.xcodeproj .xcodeproj) | |
all: archive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
usage() | |
{ | |
echo " iossim-home [-d SDK] APPNAME\n" | |
exit | |
} | |
IOSSDK_VERSION="" | |
while getopts "d:" OPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-挑戦者求む!【ウチに来ない?】Ruby:素数の数を数えてください by CodeIQ運営事務局 アプリケーションエンジニアを募集する企業│CodeIQ https://codeiq.jp/ace/joboffer_apli/q488-} | |
import System.Environment | |
import Data.Numbers.Primes | |
findPrime :: Int -> [Int] | |
findPrime x = filter isPrime [0..x] | |
parseArgs :: [String] -> Int | |
parseArgs x = read $ head x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/0xced/3035167 | |
// Copyright (c) 2012-2013 Cédric Luthi / @0xced. All rights reserved. | |
// | |
#if TARGET_IPHONE_SIMULATOR | |
static const char *fakeCarrier = "🇰🇷GALAXY🇰🇷"; | |
#import <objc/runtime.h> |