This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Converts WEBVTT subtitles (vtt) to plain text. | |
It removes all time related info as well as duplicated and empty lines. | |
""" | |
# Author: Artur Martins <[email protected]> | |
# Version: 1.0 | |
# Date: 2023-Oct-25 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.19; | |
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/[email protected]/access/AccessControl.sol"; | |
contract Token is ERC20, AccessControl { | |
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); | |
constructor() ERC20("Chainlink Bootcamp 2024 Token", "CLBoot24") { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: github.com/arturmartins | |
# Version: 1.0.0 | |
# Config details can be found in https://lastpass.com/lplinux.php | |
# CONFIG: URL and filenames | |
TARBALL="lplinux.tar.bz2" |
OlderNewer