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
1. Create a file called .bash_aliases using your favorite text editor. | |
gedit .bash_aliases | |
2. Write the alias you want to create, e.g: | |
alias update='sudo apt-get update' | |
3. Save the file and reconfigure your bashrc. | |
. ~/.bashrc | |
4. Check if your alias is added correctly. |
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
robot.respond /accumulate this request to my account/i, (msg) -> | |
user_id = msg.message.user.id; user_name = msg.message.user.name | |
requests = robot.brain.get(user_id) | |
if requests == null | |
robot.brain.set(user_id, 1) | |
else | |
robot.brain.set(user_id, requests+1) | |
requests = robot.brain.get(user_id) | |
content = if requests > 5 | |
# User exceed limit |
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
# Get Access Token | |
refresh_token = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
access_token = JSON.parse( | |
RestClient.post("https://accounts.google.com/o/oauth2/token", { | |
client_id: Rails.application.secrets.google_client_id, | |
client_secret: Rails.application.secrets.google_client_secret, | |
refresh_token: refresh_token, grant_type: "refresh_token" | |
}) |
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
wowza_stream_name = "wowza-stream-name" | |
youtube_host = "x.rtmp.youtube.com" | |
youtube_application = "livex" | |
youtube_stream_name = "xxxxx.xxxx-xxxx-xxxx-xxxx" | |
stream_target = "curl --digest -u \"wowza:#{stream_server.instance_id}\" -X POST --header \"Accept:application/json; charset=utf-8\" --header \"Content-type:application/json; charset=utf-8\" \"#{wowza_host}/pushpublish/mapentries/youtube\" -d '{ | |
\"restURI\": \"#{wowza_host}/pushpublish/mapentries/youtube\", | |
\"serverName\":\"_defaultServer_\", | |
\"sourceStreamName\": \"#{wowza_stream_name}\", | |
\"entryName\": \"youtube\", |
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
client_id = "xxxxxxxxxxxxxxxxxxxx" | |
client_secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" | |
redirect_uri = "http://localhost:3000/callback/dailymotion" | |
# Ask user permission | |
get = "https://www.dailymotion.com/oauth/authorize?response_type=code&client_id=#{client_id}&redirect_uri=#{redirect_uri}&scope=manage_videos" | |
# Get access_token & refresh_token |
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
Ubuntu: | |
sudo apt-get install dnsmasq | |
sudo gedit /etc/dnsmasq.conf | |
add: address=/rails.env/127.0.0.1 | |
sudo service dnsmasq restart | |
Mac: | |
brew install dnsmasq |
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
Show hidden characters
{ | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"default_line_ending": "unix", | |
"drag_text": false, | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 10, | |
"ignored_packages": ["Vintage"], | |
"line_padding_bottom": 1.5, | |
"line_padding_top": 1.5, | |
"material_theme_accent_scrollbars": true, |
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
var _URL = window.URL || window.webkitURL; | |
$("#article_image").change(function(){ | |
var file, img, reader; | |
if ((file = this.files[0])) { | |
img = new Image(); | |
img.onload = function(){ | |
if ( (this.width < 960) || (this.height < 300) ) { | |
alert("Image must be larger than 960x300 pixels!") | |
} else { |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
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
{ | |
"editor.tabSize": 2, | |
"editor.smoothScrolling": true, | |
"editor.minimap.enabled": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"workbench.startupEditor": "none", | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.matchBrackets": "never", |
OlderNewer