Skip to content

Instantly share code, notes, and snippets.

@nunof07
nunof07 / .gitlab-ci.yml
Last active May 3, 2019 07:59
GitLab CI to test Sage theme build
image: edbizarro/gitlab-ci-pipeline-php:7.2-alpine-lts
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- vendor/
- .yarn
before_script:
@nunof07
nunof07 / ptmoviesearch.user.js
Last active February 14, 2020 14:58
Search for movies in Portuguese streaming services
// ==UserScript==
// @name PT Movie Search
// @namespace https://www.quasibit.com/
// @downloadUrl https://gist.github.com/raw/fa7a0e6427c2711f5612f02af3412b27/ptmoviesearch.user.js
// @updateUrl https://gist.github.com/raw/fa7a0e6427c2711f5612f02af3412b27/ptmoviesearch.user.js
// @match *://*/*
// @grant GM_openInTab
// @grant GM_registerMenuCommand
// @grant GM_setValue
// @grant GM_getValue
@nunof07
nunof07 / example.ts
Last active July 21, 2023 23:07
TypeScript final and frozen class decorators
import { final } from './final.ts';
import { frozen } from './frozen.ts';
@final
@frozen
export class Example {
}
export class ExampleSub extends Example {
}