Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View robvanmieghem's full-sized avatar

Rob Van Mieghem robvanmieghem

  • threefold.tech
  • Belgium
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

Keybase proof

I hereby claim:

  • I am robvanmieghem on github.
  • I am allejuppa (https://keybase.io/allejuppa) on keybase.
  • I have a public key ASBQzAkH9TxM3Py4-2Pq90v7snvZOWuzBg9gijpMua_2QQo

To claim this, I am signing this object:

@robvanmieghem
robvanmieghem / syncmilestones.py
Created January 11, 2017 12:02
Synchronize milestones between repositories
#!/usr/bin/env python
import argparse
import json
import requests
user = accesstoken = ''
def get_repos(organization):
repos = requests.get('https://api.github.com/search/repositories?q=user:'+organization, auth=(user,accesstoken)).json()
return [r['name'] for r in repos['items']]
@robvanmieghem
robvanmieghem / replacelabels.py
Last active May 21, 2019 09:23
Set labels to tf standard
#!/usr/bin/env python
import argparse
import json
import requests
user = accesstoken = repo = ''
wanted_labels = {
'priority_critical': {
"name": "priority_critical",