Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View rimas-kudelis's full-sized avatar

Rimas Kudelis rimas-kudelis

View GitHub Profile
@rimas-kudelis
rimas-kudelis / lp2gh-issues.py
Last active March 17, 2020 08:16 — forked from fperez/lp2gh-issues.py
Conversion from Launchpad bugs to GitHub ones
#!/usr/bin/env python
"""Launchpad to github bug migration script.
There's a ton of code from Hydrazine copied here:
https://launchpad.net/hydrazine
Note: if subsequent runs of the script are failing due to cached credentials,
you can recursively remove `~/.cache/launchpadlib/` and `~/.cache/hydrazine/`
before re-running the script.
@rimas-kudelis
rimas-kudelis / Converter.php
Last active December 29, 2017 13:17
Arabic to Roman numerals converter
<?php
namespace App;
/**
* Converts positive decimal numbers to Roman numerals.
* Note: M (1000) is the largest Roman numeral supported by this function.
*/
class Converter
{