Monday, December 26, 2016

Programming Language (Popularity)

http://www.tiobe.com/tiobe-index/

http://githut.info/

http://pypl.github.io/PYPL.html

http://spectrum.ieee.org/static/interactive-the-top-programming-languages-2016

Source:
https://dzone.com/articles/what-are-the-most-popular-programming-languages

Draw Your Future

https://www.youtube.com/watch?v=4vl6wCiUZYc

Patti Dobrowolski

Creative Activator - Up Your Creative Genius

http://pattidobrowolski.com/

IoT Conferences 2017

http://www.businessinsider.com/internet-of-things-conferences-2016-12

Friday, December 23, 2016

Python Monitoring

http://www.netuitive.com/python-monitoring/
http://maximebf.com/blog/2012/12/monitoring-python-web-app/#.WF0yvht95RY

https://newrelic.com/python
https://www.appdynamics.com/python/

Flowchart tool

https://www.draw.io/

poste.io mailserver

https://poste.io/
https://hub.docker.com/r/analogic/poste.io/

$ docker run \
    -p 25:25 \
    -p 80:80 \
    -p 110:110 \
    -p 143:143 \
    -p 443:443 \
    -p 465:465 \
    -p 587:587 \
    -p 993:993 \
    -p 995:995 \
    -v /etc/localtime:/etc/localtime:ro \
    -v /your-data-dir/data:/data \
    --name "mailserver" \
    -t analogic/poste.io

Thursday, December 22, 2016

Monitoring Postgresql

https://www.postgresql.org/docs/current/static/monitoring-stats.html
https://blog.pandorafms.org/how-to-monitor-postgress/
https://wiki.postgresql.org/wiki/Disk_Usage
https://www.enterprisedb.com/monitor-cpu-and-memory-percentage-used-each-process-postgresqlppas-91
https://aaronparecki.com/2015/02/19/8/monitoring-cpu-memory-usage-from-postgres
https://wiki.postgresql.org/wiki/Performance_Analysis_Tools

https://russ.garrett.co.uk/2015/10/02/postgres-monitoring-cheatsheet/
http://opm.io

Dorking

https://www.exploit-db.com/google-hacking-database/

Sunday, December 18, 2016

UX Tools

http://patternlab.io/
http://fractal.build/

Source: http://www.creativebloq.com/inspiration/the-6-best-new-ux-tools-of-2016?ref=webdesignernews.com


http://www.creativebloq.com/web-design/10-reasons-you-should-be-using-atomic-design-61620771

Design: Choose colour palette

culrs.com

Friday, December 16, 2016

Hibernate Tutorials

https://github.com/halyph/hibernate-tutorials

http://docs.jboss.org/hibernate/orm/current/quickstart/html_single/#tutorial-native


Wednesday, December 14, 2016

Create background threads in Java

http://stackoverflow.com/questions/12551514/create-threads-in-java-to-run-in-background

Native Operating System and Hardware Information (Java)

https://github.com/oshi/oshi

Sunday, December 11, 2016

SSL to VM

https://docs.microsoft.com/en-us/azure/app-service-web/web-sites-purchase-ssl-web-site

Add domain name to Azure

https://docs.microsoft.com/en-us/azure/app-service-web/web-sites-custom-domain-name

Friday, December 9, 2016

Nginx Error Logging

https://www.nginx.com/resources/admin-guide/logging-and-monitoring/

http://mark-kay.net/2013/12/16/setting-up-a-central-logging-server-with-rsyslog/
#!/etc/rsyslog.d/40-nginx.conf
$ModLoad imfile
$InputFileName /var/log/nginx/error.log
$InputFileTag nginx:
$InputFileStateFile stat-nginx-error
$InputFileSeverity warning
$InputFileFacility local7
$InputRunFileMonitor
$InputFileName /var/log/nginx/access.log
$InputFileTag nginx:
$InputFileStateFile stat-nginx-access
$InputFileSeverity info
$InputFileFacility local7
$InputRunFileMonitor
$InputFilePollInterval 10
:syslogtag,isequal,"nginx:" /var/syslog/nginx.log

https://www.digitalocean.com/community/tutorials/understanding-the-nginx-configuration-file-structure-and-configuration-contexts

https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-16-04
https://www.cyberciti.biz/faq/nginx-linux-restart/

Papertrail for log files

http://help.papertrailapp.com/kb/configuration/advanced-unix-logging-tips/#rsyslog_aggregate_log_files

Thursday, December 8, 2016

GELF logging for Java


https://github.com/t0xa/gelfj

For log4j2
--------------
https://github.com/Graylog2/log4j2-gelf
https://github.com/Graylog2/gelfclient

http://stackoverflow.com/questions/26847569/how-to-get-gelfj-appender-work-in-log4j

https://mvnrepository.com/artifact/org.graylog2

Wednesday, December 7, 2016

Get log files into rsyslog

http://chase-seibert.github.io/blog/2011/01/07/getting-arbitrary-log-files-into-rsyslog.html

Tuesday, December 6, 2016

Openssl version in Ubuntu

http://askubuntu.com/questions/504928/how-to-check-which-openssl-version-is-use-by-apache-on-ubuntu-12-04

apt-cache policy openssl

Recipe Dataset

 https://github.com/cweber/cookbook/blob/master/recipes.csv

View Docker Container Volume

docker run --rm --volumes-from pg_test -t -i busybox sh

https://docs.docker.com/engine/examples/postgresql_service/

Log Aggregator: papertrailapp.com

http://help.papertrailapp.com/kb/configuration/configuring-centralized-logging-from-python-apps/

Python logging: sysloghandler

https://docs.python.org/3/library/logging.handlers.html#sysloghandler

Docker for Java Developers

https://www.youtube.com/watch?v=ZNdc4-yFTeA&feature=youtu.be

https://github.com/oreilly-docker-book

https://examples.javacodegeeks.com/devops/docker/introduction-docker-java-developers/

Monday, December 5, 2016

Azure MySQL: network inbound rule for external access

http://stackoverflow.com/questions/35295331/connect-to-mysql-server-inside-docker-container-in-an-microsoft-azure-vm

https://docs.microsoft.com/en-us/azure/store-php-create-mysql-database

Sunday, December 4, 2016

Packaging/Workflow for Web App

https://bower.io/
http://gulpjs.com/

Friday, December 2, 2016

Webpack JS

https://webpack.js.org/

Change NodeJS version: nvm

https://www.liquidweb.com/kb/how-to-install-nvm-node-version-manager-for-node-js-on-ubuntu-12-04-lts/

https://github.com/creationix/nvm#installation

ReactJS stuff

https://www.youtube.com/watch?v=BF58ZJ1ZQxY
https://github.com/ReactTraining/react-router
https://egghead.io/courses/build-your-first-react-js-application

https://github.com/enaqx/awesome-react
http://startreact.com/
http://buildwithreact.com/

http://tutorialzine.com/2015/04/first-webapp-react/
https://github.com/ReactTraining/react-router


https://medium.mybridge.co/22-amazing-open-source-react-projects-cb8230ec719f#.hll3gu6kx
https://necmttn.github.io/Open_Source_React_Apps/
https://github.com/Necmttn/Open_Source_React_Apps
https://medium.com/the-react-native-log/5-open-source-react-native-projects-to-learn-from-fb7e5cfe29f2#.qhljtv8hy

IDE
https://www.decosoftware.com/
atom.io
sublime (https://github.com/babel/babel-sublime)
https://www.quora.com/What-is-the-best-editor-to-write-React-and-React-Native-code

Templates
https://github.com/minskybelieve/sb-admin-seed-react
https://github.com/minskybelieve/react-universal-web-apps
https://github.com/lmammino/judo-heroes
https://github.com/jiwonbest/amazing-react-projects
https://github.com/BinaryMuse/imgsible
https://github.com/andrewngu/sound-redux
https://github.com/keppelen/react-facebook-login

Templates (Commercial)
https://www.strapui.com/themes/ani-reactjs-theme/

Server
https://www.npmjs.com/package/react-server-example
https://www.smashingmagazine.com/2016/03/server-side-rendering-react-node-express/
https://scotch.io/tutorials/react-on-the-server-for-beginners-build-a-universal-react-and-node-app

Thursday, December 1, 2016

run npm command gives error "/usr/bin/env: node: No such file or directory

https://github.com/nodejs/node-v0.x-archive/issues/3911

ReactJS Themes

http://startreact.com/themes/