Machine Learning & IoT
- 21 Sep, 2018
Today I gave a presentation about machine learning and IoT focusing on industrial maintenance. The event was the third industrial maintenance workshop in Belo Horizonte. An opportunity to talk about IBM Watson and IIoT to the industry in my region. Machine Learning e IoT na manutenção Industrial(//www.slideshare.net/Keniowdc/machine-learning-e-iot-na-manuteno-industrial "Machine Learning e IoT na manutenção Industrial")
Machine Learning & IoTRead MoreDomino 10 Beta 2 on Docker
- 20 Aug, 2018
Domino 10 beta 2 started last week. I download the files and wish to run it on docker. I follow Tim Clark's blog series(https://tc-soft.com/blog/docker-pt1) about Domino 9.0.1 on Docker. I change a few lines on dockerfile (just change the installation file name). Another difference was the line to start the container. I add the port 8585 to do a remote setup docker run -it -p 1352:1352 -p 8888:80 -p 8443:443 -p 8585:8585 --name Domino10Beta -v domino\data:/local/notesdata kenio:Domino10Beta2 !(http://www.mysphere.com.br/wp-content/uploads/2018/08/Screen-Shot-2018-08-19-at-21.47.40.png)
Domino 10 Beta 2 on DockerRead MoreVirtual Server from SoftLayer - Missing Configurations
- 16 Aug, 2018
I ordered two servers from SoftLayer to host some wordpress sites. I tried to update the server using yum update but i got the error bellow Loading mirror speeds from cached hostfile http://mirrors.service.networklayer.com/centos/7/os/x86\64/repodata/repomd.xml: \Errno 12\ Timeout on http://mirrors.service.networklayer.com/centos/7/os/x86\64/repodata/repomd.xml: (28, 'Connection timed out after 30001 milliseconds') Trying other mirror. http://mirrors.service.networklayer.com/centos/7/os/x86\64/repodata/repomd.xml: \Errno 14\ curl56 - "Callback aborted" Trying other mirror. http://mirrors.service.networklayer.com/centos/7/extras/x86\64/repodata/repomd.xml: \Errno 14\ curl56 - "Callback abor
Virtual Server from SoftLayer - Missing ConfigurationsRead MoreHow to start with Machine Learning and Neural Networks
- 19 Jun, 2018
Many people want to start their studies in neural networks and machine learning as a whole. So I decided to make a guide that I'm using to study these two technologies. First, you have to choose a language. I chose Python. Python can be downloaded through the Anaconda distribution, which in addition to packing in a functional way, still has a control panel for installations from other libraries: https://www.anaconda.com/download. Now, you're going to need an IDE. Do I currently use Visual Studio Code https://code.visualstudio.com. Don't know Python? Follow the Basic Tutorial category at https://www.tutorialspoint.com/python/index.htm. It's a start. There are many good courses in Coursera
How to start with Machine Learning and Neural NetworksRead MoreIBM ICS - Product Information for General Data Protection Regulation (GDPR)
- 25 May, 2018
IBM publised a TechNote listing links and pdf files about GDPR for ICS products See the TechNote here(http://www-01.ibm.com/support/docview.wss?uid=swg27051100) Thanks to Robert Ingran for sharing this.
IBM ICS - Product Information for General Data Protection Regulation (GDPR)Read MoreSetup command line tools to work with IBM Cloudant
- 06 May, 2018
Command line tools are always welcome. Today i need to setup my MAC to work with IBM Cloudant Install curl on your MAC if you haven't done it yet. 1 - You need to setup the Cloudant DB using your IBM Cloud account. 2 - Go to service credentials and get your username, password and hostname Sample: "username": "xxxx-xxx-xxx-bluemix", "password": "yourcloudantpassword", "host": "xxxx-xxx-xxx-bluemix.cloudant.com" 3 - Test the connection curl –v –u xxxx-xxx-xxx-bluemix 'https://xxxx-xxx-xxx-bluemix.cloudant.com' The command will prompt for the password: yourcloudantpassword You will see a lot off lines but pay attention on the line Authorization: Basic. This will be used to setup acur
Setup command line tools to work with IBM CloudantRead MoreThis is my city - Belo Horizonte
- 30 Apr, 2018
I meet several people when i was in Las Vegas. No one know about my city until i talk about 2014 Soccer World Cup and tell about Germany 7 x 1 Brazil game. The video bellow, show another face of the city.
This is my city - Belo HorizonteRead MoreTrack time spent on projects with IBM Cloud
- 26 Apr, 2018
For professionals who bill on an hourly basis—lawyers, accountants, and so on—time tracking is a critical part of the billing process. A time-tracking tool that allows them to easily enter work hours and obtain summary reports at the end of the week or month is of critical importance. In this tutoria(https://www.ibm.com/developerworks/cloud/library/cl-track-time-on-projects-with-ibm-cloud-1/index.html) l, you will see the process of building a simple time-tracking tool and deploying it on IBM Cloud.
Track time spent on projects with IBM CloudRead MoreSetup Error on MAC - Watson Python SDK
- 19 Apr, 2018
Today i got the following error when i install watson python sdk on my MAC: I use the command : sudo pip install watson-developer-cloud The exception was: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 342, in run prefix=options.prefix\path, File "/Library/Python/2.7/site-packages/pip/req/req\set.py", line 778, in install requirement.uninstall(auto\confirm=True) File "/Library/Python/2.7/site-packages/pip/req/req\install.py", line 754, in uninstall paths\to\remove.remove(auto\confirm) File "/Library/Python/2.7/site-packa
Setup Error on MAC - Watson Python SDKRead MoreForrester Names IBM a Leader in Conversational Computing Platforms Wave
- 18 Apr, 2018
IBM Watson Assistant is named as a Leader in conversational computing. It has become increasingly important for businesses to build engaging interactions that deliver value to their customers, and IBM is proud to offer technologies that help developers and enterprises enhance those experiences. The report evaluated the most significant conversational computing platforms, diving into each vendor’s current offering and strategy and including customer feedback. I always work with IBM Watson Assistant to create Virtual Assistants, since the name was "dialog". This service is my first option to create conversational applications. More information on this link(https://www.ibm.com/blogs/watson/
Forrester Names IBM a Leader in Conversational Computing Platforms WaveRead MoreRename several files on MAC using command line
- 05 Apr, 2018
Today i need to rename lots of files from .txt to .json. I type the following on the terminal window: for f in .txt; do mv "$f" "$(basename "$f" .txt).json" done
Rename several files on MAC using command lineRead MoreConfiguring Cross Origin Resource Sharing on a Liberty server
- 08 Mar, 2018
You can enable Cross Origin Resource Sharing (CORS) for your web applications on a Liberty server. Enabling CORS will allow JavaScript clients to make requests against your application on the Liberty server even if the client and the server are on two different domains. Web browsers prevent these requests due to same-origin policy. I create the following configuration on my local machine on server.xml file:
Configuring Cross Origin Resource Sharing on a Liberty serverRead More