home

Create latex tables with merged cells from org mode in Emacs

  1. Create a built-in table. The goal is to merge cells header3 and heade4
|---------+---------+---------+--------|
| header1 | header2 | header3 | heade4 |
|---------+---------+---------+--------|
| cell1   | cell2   | cell3   | cell4  |
|---------+---------+---------+--------|
| cell5   | cell6   | cell7   | cell8  |
|---------+---------+---------+--------|

If you do not remember the commands, use the menu window

nodespark/des-connector[7.x-dev] but it does not match your minimum-stability

bash-5.1# composer require 'drupal/elasticsearch_connector:^7.0@alpha'
./composer.json has been updated
Running composer update drupal/elasticsearch_connector
Loading composer repositories with package information
Info from https://repo.packagist.org: #StandWithUkraine
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - drupal/elasticsearch_connector[7.0.0-alpha1, ..., 7.0.0-alpha3] require nodespark/des-connector 7.x-dev -> found nodespark/des-connector[7.x-dev] but it does not match your minimum-stability.
    - Ro

ACID Delta Table

Setup shell

bin/spark-shell --packages io.delta:delta-core_2.12:1.1.0 --conf "spark.sql.extensions=io.delta.sql.DeltaSparkSessionExtension" --conf "spark.sql.catalog.spark_catalog=org.apache.spark.sql.delta.catalog.DeltaCatalog"

Retrieve Delta table history

import io.delta.tables._

val deltaTable = DeltaTable.forPath(spark, pathToTable)

val fullHistoryDF = deltaTable.history()    // get the full history of the table

val lastOperationDF = deltaTable.history(1) // get the last operation
scala> fullHistoryDF.

How to add a git repository to a composer.json file in Drupal 9

  1. Fork a Github module like https://github.com/protitude/module_markdown and change the composer.json like
@@ -1,5 +1,5 @@
{
-  "name": "protitude/markdown",
+  "name": "asanchez75/markdown",
  "description": "Allows content to be submitted using Markdown, a simple plain-text syntax that is transformed into valid HTML.",
  "type": "drupal-module",
  "homepage": "https://www.drupal.org/project/markdown",
  1. in the composer.json file of your Drupal 9 installation add
Tags