Skip to content

Instantly share code, notes, and snippets.

View HadiElnemr's full-sized avatar
🎯
Focusing

Hadi Elnemr HadiElnemr

🎯
Focusing
View GitHub Profile
@Ahmad45123
Ahmad45123 / gsoc-2021-word-product.md
Last active February 3, 2023 14:45
GSoC 2021 - Joplin - Conflict Resolution Plugin Project - Work Product

Conflict Resolution Plugin - GSoC 2021

A plugin was developed in order to make the process of resolving conflicts easier. It provides a nice diff-window in which you can see the differences between your current note and the note received from cloud.

Preview

What was done ?

The plugin could be considered to be made of 5 parts:

@aboueleyes
aboueleyes / pres.py
Created April 25, 2021 22:58
Generate PDF files
#!/usr/bin/env python3
import os
file_name = 'template.tex'
with open(file_name, "w") as file_object:
file_object.write('\documentclass{beamer}\n')
file_object.write('\\usetheme{focus}\n')
file_object.write('\\begin{document}\n')
images = os.listdir('img')
text = []