Skip to content

Instantly share code, notes, and snippets.

View cillierburger's full-sized avatar

Cillier Burger cillierburger

  • ottonova
  • München, Deutschland
View GitHub Profile

European esignatures

Legislation: https://ec.europa.eu/cefdigital/wiki/display/CEFDIGITAL/What+is+the+legislation+-+esignature

Most important facts:

  • electronic documents cannot be denied legal effect solely because they are in electronic form
  • the introduction of electronic seals, available to legal persons, technologically similar to electronic signature and ensuring identity and integrity

Question:What does qualified means in the following statements?

  • qualified trust services across Europe
@oinopion
oinopion / read-access.sql
Created October 5, 2016 13:00
How to create read only user in PostgreSQL
-- Create a group
CREATE ROLE readaccess;
-- Grant access to existing tables
GRANT USAGE ON SCHEMA public TO readaccess;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readaccess;
-- Grant access to future tables
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readaccess;
/**
* Retrieves all the rows in the active spreadsheet that contain data and logs the
* values for each row.
* For more information on using the Spreadsheet API, see
* https://developers.google.com/apps-script/service_spreadsheet
*/
function readRows() {
var sheet = SpreadsheetApp.getActiveSheet();
var rows = sheet.getDataRange();
var numRows = rows.getNumRows();