Skip to content

Instantly share code, notes, and snippets.

View s0nata's full-sized avatar

Nata Stulova s0nata

View GitHub Profile
@s0nata
s0nata / first-class-artifacts-as-building-blocks-for-live-in-IDE-documentation.md
Created June 7, 2022 13:30
demo replication instructions for the paper "First-class artifacts as building blocks for live in-IDE documentation"

First-class artifacts as building blocks for live in-IDE documentation

This file contains instructions for launching the demo from the paper:

First-class artifacts as building blocks for live in-IDE documentation. Nitish Patkar, Andrei Chiş, Nataliia Stulova, Oscar Nierstrasz. In SANER'22: 29th IEEE International Conference on Software Analysis, Evolution and Reengineering (to appear)

Publication access: download an author's copy as a PDF

@s0nata
s0nata / BBD-interactive-lowcode-workflow.md
Last active June 7, 2022 13:21
demo replication instructions for the paper Interactive Behavior-driven Development: a Low-code Perspective
@s0nata
s0nata / marp.md
Created April 16, 2021 15:27 — forked from yhatt/marp.md
Marp Next example
marp true

Marp

h:250

Markdown presentation ecosystem
@s0nata
s0nata / me-linux.md
Created April 5, 2020 13:11
how I like my linux installed

IMPORTANT Before any re-installation make sure the **3-2-1 Rule of Backup ** is respected:

  • create 3 copies of your data (1 primary copy and 2 backups)
  • store your copies in at least 2 types of storage media (local drive, network share/NAS, external HDD, dedicated USB etc.)
  • store 1 of these copies offsite (in the Cloud)

Personally I also have a separate USB stick for scans and electronic versions of my most important documents on top of that.

@s0nata
s0nata / "Stonebreakers" by Ivan Franko
Created August 6, 2018 08:45 — forked from alexander-yakushev/"Stonebreakers" by Ivan Franko
Amateur translation from Ukrainian to English of the poem "Каменярі" ("Kamenyari") written by Іван Франко (Ivan Franko) in 1878.
I had a dream. Like there is ahead
And endless, empty and the wildest plane.
And I stand there, held by iron chain,
Under the tall rock made from finest granite
And next to me are thousands just like me.
The face of everyone is marked by woe and sorrow,
And eyes of everyone contain fervor of love.
And hands of everyone are chained with snakes of iron,
And every shoulder's bent low to the ground,
try:
from xml.etree.cElementTree import XML
except ImportError:
from xml.etree.ElementTree import XML
import zipfile
"""
Module that extract text from MS XML Word document (.docx).
(Inspired by python-docx <https://github.com/mikemaccana/python-docx>)