This file contains 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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle Test' | |
}); |
This file contains 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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle Test' | |
}); |
This file contains 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
:scope { | |
/* ... */ | |
} | |
:scope[state|size=small] { | |
/* ... */ | |
} | |
:scope[state|size=large] { | |
/* ... */ |
This file contains 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/bash | |
# This simple bash script will auto-update a CloudFlare DNS entry if a computer's public IP address changes. | |
# Simply place it in a folder called /etc/ddns and add a cron job to call it every minute or so. | |
# The five configuration options below are specific to your account and must be set. | |
DOMAIN_NAME="domain.name.tld" | |
AUTH_EMAIL="[email protected]" | |
AUTH_KEY="__cloudflare_auth_key__" | |
ZONE_ID="__cloudflare_zone_identifier__" | |
RECORD_ID="__cloudflare_record_identifier__" |