R important things

R has no block comment, but you can still do the following things: In RStudio: Ctrl+Shift+C if(false){xxx} block   python to R df.tail() -> tail(df) dropna(df) ->na.omit(df) / df[complete.cases(df),] df.describe() -> summary(df), library(psych): describe(df) df.shape -> dim(df)

pycharm for django and sass

For django: professional version. create a new django project: just create a new one import a django project: import the project activate django support For Sass: make sure, the sass support is activate: File -> Setting -> Plugin install…

Decode a famous website

Many news medien encode their paid text, but some of them has very simple encode mechanism. 😀 I wrote the following code to decode a famous webseite.  Just copy following codes in the console, then, you will see the text.…

Cassandra, Python, R, Node.js

It is quite nice, that Cassandra has driver for Python, R and Node.js. If you want to build a website with Cassandra DB which has also heavily scientific programming, I would suggest the following combination: Python Flask  or Django +…