[Web][1a] - [iTunes][1b]
[Web][2a] - [iTunes][2b]
on run | |
tell application "Finder" | |
get bounds of window of desktop | |
set DesktopSize to bounds of window of desktop | |
set DesktopWidth to item 3 of DesktopSize | |
set DesktopHeight to item 4 of DesktopSize | |
end tell | |
tell application "App Store" | |
activate | |
set the bounds of the first window to {0, 0, DesktopWidth, DesktopHeight} |
I hereby claim:
To claim this, I am signing this object:
Kullanımı:
aynı dizine .json
olarak dummy datayı koy sonra;
source ./server.sh
server_json
All attendees, speakers, sponsors and volunteers at our conference are required to agree with the following code of conduct. Organisers will enforce this code throughout the event. We are expecting cooperation from all participants to help ensuring a safe environment for everybody.
tl;dr: Don’t be a Jerk
At any time you can walk up to one of our team members and report your concern. Else: shoot an email at social -at- kod.io, or call the number we’ll publish on the day of the conference.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>webBox.io | web 101 eğitimi, 24 Kasım 2014</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="/css/style.css"> | |
</head> | |
<body> |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>Coffee Test</title> | |
$styles | |
</head> | |
<body> | |
<h1>Coffee Script Tests on iPad</h1> |
#!/usr/bin/env bash | |
set -e | |
for flac_file in *.flac; do | |
f=$(basename "${flac_file}" .flac) | |
flac -c -d "${flac_file}" | lame --preset insane - "${f}.mp3" | |
done |
_bundler_complete() | |
{ | |
if [[ ! `which bundle` ]]; then | |
return | |
fi | |
local cur prev commands | |
commands="help install update package exec config check list show outdated console open viz init gem platform" | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
prev="${COMP_WORDS[COMP_CWORD-1]}" |