- Python 3
- Pip 3
$ brew install python3| // launch.json | |
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Attach", | |
| "type": "node", |
| // Based off example code from Hal Robertson | |
| // https://github.com/halrobertson/test-restify-passport-facebook | |
| // See discussion: https://groups.google.com/forum/?fromgroups#!topic/passportjs/zCz0nXB_gao | |
| var restify = require('restify') | |
| // config vars | |
| var FB_LOGIN_PATH = '/api/facebook_login' | |
| var FB_CALLBACK_PATH = '/api/facebook_callback' | |
| var FB_APPID = '<<YOUR APPID HERE>>' |
| var heightScroll = $("textarea").get(0).scrollHeight; //Receives scroll height | |
| var heightTextarea = $("textarea").height(); //Receives textarea height | |
| var height = heightTextarea; | |
| for(height; heightScroll > heightTextarea; height++) { | |
| heightTextarea = height; //Textarea height receives the current height | |
| $("textarea").css("height", height); //Textarea height receives the height value changed | |
| } |
| <html> | |
| <head> | |
| <title>jsonp test</title> | |
| <script src="http://code.jquery.com/jquery-1.6.2.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function(){ | |
| $('#select_link').click(function(e){ | |
| e.preventDefault(); | |
| console.log('select_link clicked'); | |