Dbeaver logoDBeaver/Eclipse "File is out of date" SVN Error

DateModifiedViewsCategory

DBeaver is Eclipse based Integrated Development Environment (IDE). It can be used with varieties of plug-ins. Subversion (SVN) is one of the plug-ins with source control functionality. It is integrated seamlessly with DBeaver, but Eclipse marketplace is supplied with old version of SVN library. It causes File is out of …

more ...


Microsoft excel logoRename Worksheet Dynamically in Excel

Microsoft Excel events can be used to rename a worksheet based on a value in a cell. Depending on what kind of manipulations are done with a cell driving a worksheet name, it needs to pick up a specific event to trigger renaming.

Good candidates for events are.

  • SelectionChange
  • Calculate …
more ...

Trino logoGet Started with Custom Connector Plugin in Trino

DateViewsCategory

If you need to create a custom connector plugin in Trino, the best way to get started is to pick up an existing connector. Trino includes a comprehensive list of native connectors of any flavor. Separation of code from the main repository is requesting some modifications to it. Those changes …

more ...

Trino logoUse HTTPS Protocol in Trino Server with PKCS 12 Store

DateViewsCategory

Trino documentation includes description of access to Trino cluster secured by HTTPS protocol with load balancer, PEM and Java KeyStore files. PKCS #12 file is another option to implement HTTPS protocol. It is a binary format for storing a certificate chain and private key in a single, encryptable file with …

more ...

Trino logoGet Started with Trino Plugin

DateViewsCategory

Trino is fully customizable with custom plugins. Those plugins can be developed in Java and deployed to Trino clusters. One of the aspects of success in development Trino plugins depends on your development environment. If you are able to mimic the Trino team environment, you might encounter less issues and …

more ...

Hubitat logoHubitat Sensor Logging Visualization in Synology NAS

Sensor logging visualization is not available in Hubitat as the standard functionality. There are some ways to do it. The easiest implementation of the functionality is based on InfluxDB with Grafana. Those products are open-source and they are aimed to build logging visualization. The linking piece to Hubitat is InfluxDB …

more ...

Cobol logoCOBOL Float Data Type

DateViewsCategory

Float data type is aimed to store floating-point numbers. Depending on values, float data type can be 4- or 8-byte size. There are two parts in floating-point numbers: (1) mantissa and (2) exponent. To get a floating-point value, the mantissa is multiplied by 10 raised to the power of the …

more ...

Cobol logoCOBOL Decimal Data Type

DateModifiedViewsCategory

Decimal data type is called packed because it stores two digits in each byte. An exception is low-order byte which contains one digit in the leftmost portion and the sign (positive or negative) in the rightmost portion. Positive numbers are represented by hexadecimal F and negative numbers by hexadecimal D …

more ...

Cobol logoCOBOL Display Decimal Data Type

DateViewsCategory

Display decimal data type another name is zoned decimal. Each byte is separated into 2 parts. The first 4 bits is a zone and the second 4 bits is a value, thus one byte can contain only one digit. The low byte zone includes a sign. Positive numbers are represented …

more ...