- http://www.twilio.com/blog/2015/07/how-to-protect-your-android-device-from-stagefright-exploit.html -- 173,909
- http://www.twilio.com/blog/2015/08/setting-up-react-for-es6-with-webpack-and-babel-2.html -- 81,714
- http://www.twilio.com/blog/2015/10/asyncawait-the-hero-javascript-deserved.html -- 51,525
- http://www.twilio.com/blog/2013/12/votr-part-5-angularjs-crud-restful-apis.html -- 48,326
- http://www.twilio.com/blog/2013/04/add-two-factor-authentication-to-your-website-with-google-authenticator-and-twilio-sms.html -- 40,695
- http://www.twilio.com/blog/2015/02/arduino-wifi-getting-started-arduino-yun.html -- 40,195
- http://www.twilio.com/blog/2015/12/getting-started-with-swift-on-linux.html -- 37,355
- http://www.twilio.com/blog/2016/02/patrick-mckenzie-on-salary-negotiation-job-hunting.html -- 36,997
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
// POST: Call/Create | |
[HttpPost] | |
public async Task<JsonResult> Create(string phoneNumber) | |
{ | |
// Delete a phone number. | |
await _service.DeleteByPhoneNumberAsync(phoneNumber); | |
// Create a phone number. | |
var verificationCode = GenerateVerificationCode(); | |
await _service.CreateAsync( |
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
# The numbers will be pulled in groups of 50, so if you | |
# have more than 50 numbers then you'll have to run this | |
# script more than once. | |
require 'twilio-ruby' | |
# Get your Account Sid and Auth Token from twilio.com/user/account | |
account_sid = ENV['TWILIO_ACCOUNT_SID'] | |
auth_token = ENV['TWILIO_AUTH_TOKEN'] | |
client = Twilio::REST::Client.new(account_sid, auth_token) |
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
-- Prelude functions which are defined in terms of foldr | |
-- http://www.cis.upenn.edu/~cis194/spring13/lectures/04-higher-order.html | |
length' :: [a] -> Int | |
length' = foldr (\_ acc -> 1 + acc) 0 | |
sum' :: Num a => [a] -> a | |
sum' = foldr (*) 1 | |
product' :: Num a => [a] -> a |
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
using System; | |
using System.Collections.Specialized; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using Authy.Net; | |
using Newtonsoft.Json; | |
namespace Authy.Net | |
{ |
List remotes repositories.
git remote -v
Add a new remote upstream repository that will be synced with the fork.
NewerOlder