#android parse web page - jsoup. use in intelliJ IDE
now you can parse web page like jQUery, "jsoup".
##install jsoup,
Download jsoup jar, and import to your project. save jsoup.jar in libs folder in your project.
app = angular.module("myApp", ["service.create"]) |
<div class="container" ng-app ng-controller="rootController"> | |
<form action="/comment/create" method="POST" id="message-form"> | |
<div class="form-group"> | |
<input type="text" id="messge" ng-model="message" name="comments" placeholder="input comments ..." > | |
</div> | |
<button type="submit" class="btn btn-success">comment</button> | |
</form> | |
<div class="message"> |
var http = require("http"); | |
var port = 1337; | |
http.createServer(function (req, res) { | |
res.end("OK"); | |
}).listen(port); | |
console.log("Start server port is " + port ); |
#!/bin/sh | |
#need to install redis and mysql | |
# MacOS env | |
brew install redis | |
brew install mysql | |
brew install zmq | |
cd ~/ |
#android parse web page - jsoup. use in intelliJ IDE
now you can parse web page like jQUery, "jsoup".
##install jsoup,
Download jsoup jar, and import to your project. save jsoup.jar in libs folder in your project.
#when genymotion runs error.
After a lots setting, we can start intellij with genymotion.
if you face executed ERROR, message like this,
Failure [INSTALL_FAILED_OLDER_SDK]
##make sure you ADV version.
#start with intellijIDE
download intellijIDE
and flow the starting of android, because i want to learn android coding. :D
#first, download android sdk
// Path: /api/models/user.js | |
module.exports = { | |
attributes: { | |
/* e.g. | |
nickname: 'string' | |
*/ | |
username: "string", |
npm install -g express grunt-init grunt bower coffee-script js2coffee |
# linux or mac | |
cd ~/ | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash | |
cat ~/.nvm/nvm.sh >> ~/.bashrc | |
source ~/.nvm/nvm.sh | |
nvm install v10.15.3 | |
nvm use v10.15.3 | |
nvm alias default v10.15.3 |