Skip to content

Instantly share code, notes, and snippets.

@josyb
josyb / oo.md
Last active November 20, 2022 10:07
Object Oriented Design in MyHDL

There is a web-page where Adam Taylor lists 10 alternative FPGA development languages: http://www.eetimes.com/document.asp?doc_id=1329857 On some languages the OO-word was used ... I commented that the only thing I have seen so far from these languages is that they are (truly) class based but that I haven't seen any real example. Yet, as I did not study them to their deepest extent, having not enough time and too much other work ...

I already use class-based design for my MyHDL work, see my gist https://gist.github.com/josyb/afd84c9a06fdec77f2fd, but this is not OO as none of these classes have been subclassed.

In stead of doing some real work today (Sat Oct 22nd 2016), I decided to give OO in MyHDL a try. You can see the results in the two next files.

@breisfeld
breisfeld / README.md
Last active April 14, 2022 15:24
Send Outlook email to Joplin

Export to Joplin

The main code was lightly adapted from here. Consult these instructions, but use the code from this project.

Some notes:

  • Make sure that you have access to the Developer settings in Outlook

  • Open Visual Basic from the developer ribbon

@banan314
banan314 / remove_duplicated_tags.py
Last active March 10, 2024 17:47
remove duplicated tags from Joplin
from api import get_api
import time
start_time = time.time()
api = get_api()
f = open('duplicates-logs.txt', 'w')