- Python script to handle excel data and populate a database, which is simpler, easier to troubleshoot and maintain and does not fill the drive with error dumps:
- Python script to handle excel data and populate a database, which is simpler, easier to troubleshoot and maintain and does not fill the drive with error dumps:
Open the find box (Control + F) and select the Regular Expression mode in the Search Mode.
Type the expression in the find what box: \w+\.IsValveCfg\[[^\]]+\] := true
- DRY (Don't Repeat Yourself)
- Single codebase for similar functions. Create parameters to configure / enable specific functions but keeping a single code base for better code development and maintenance. Examples: Loading / Offloading. Think about instances, for example rather than 87 different functions create 3 instances.
(English version at the bottom)
1. From SW Center install Microsoft Visual Studio Code and install the extension Python (shortcut is CTRL + SHIFT + X)
2. From Python download the latest available release of the "Windows embeddable package (64-bit)", currently v3.11.0
(English version at the bottom)
Tive o prazer de bater um papo com Alisson Luan Daga, engenheiro eletricista e empresário paranaense. Conversamos sobre suas experiências trabalhando em sistemas de transmissão de energia, além da sua trajetória como co-fundador de uma startup cuja missão é trazer agricultura de precisão ao pequeno e médio produtor, por meio de tecnologia e inovação.
The TLS (Transport Layer Protocol) is used by the web browsers for authentication of the server and client as well as encryption of data. The current latest version is 1.3 and the previous versions are 1.2, 1.1 and 1.0.
(English version at the bottom)
Tive o prazer de bater um papo com Luiz Vitor Lima, formado em ciência da computação, consultor SQL Server e especialista em otimizar bancos de dados. Conversamos sobre suas experiências e técnicas de melhoria de desempenho de bancos de dados.
Linux is one of the key Operating Systems that runs many of the devices and services we use everyday such as mobile, IoT, servers in datacenters, cars, robots, among many other applications. Although learning Linux can be difficult at the beginning, there is a fun way to do it by playing a game inspired by the hacking competitions Capture The Flag (CTF).
Using the public dataset that represents the power consumption in Italy in 1997, the task is to classify whether it corresponds to winter (from October to March) or summer (from April to September). This will be done using different techniques from both sklearn and sktime.
The following website http://timeseriesclassification.com/ has a great amount of public time-series datasets for several applications such as data from sensors, motion, image, audio, among others. In this post is shown how to use these datasets in a python framework.
Several applications in production, from finance to industrial systems, have the data being recorded and indexed by timestamps. In this post we are presenting a great open source library for python called sktime, which was recently launched and has been developed and optimized for machine learning time-series classification, regression and forecasting.
This link has the list of command line options that can be used by the clients. Here below some examples using for instance the option “-e” that means execute the SQL statement inside the double quotes and quit:
In a dataset with 13 features that represent different wine properties, such as color intensity and alcohol content, a machine learning model is created for a classification task. The goal is to predict in which class these wines belong, that could be class 0, class 1 or class 2.
When creating machine learning
models in python, using for instance the libraries numpy, pandas and sklearn,
depending on the algorithms selected, the input data should be on the numerical
format.
The RANK() function was introduced on MySQL Server 8.0, and
it enables the programmer to rank the data by different ways.