Skip to content

Instantly share code, notes, and snippets.

View denpalrius's full-sized avatar
🎯
Focusing

Dennis Riungu Muticia denpalrius

🎯
Focusing
View GitHub Profile
@denpalrius
denpalrius / .travis.yml
Created May 21, 2018 14:36 — forked from yjbanov/.travis.yml
Continuously build Flutter APKs and IPAs using Travis build matrix
matrix:
include:
- os: linux
language: android
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
android:
components:
@bcnzer
bcnzer / postman-pre-request.js
Last active July 16, 2024 12:05
Postman pre-request script to automatically get a bearer token from Auth0 and save it for reuse
const echoPostRequest = {
url: 'https://<my url>.auth0.com/oauth/token',
method: 'POST',
header: 'Content-Type:application/json',
body: {
mode: 'application/json',
raw: JSON.stringify(
{
client_id:'<your client ID>',
client_secret:'<your client secret>',
@denpalrius
denpalrius / ds-algorithms.ts
Last active January 24, 2018 14:10
Sorting Algorithms in Typescript
module ThingSpeak.Directives {
"use strict";
interface sortTechnique {
name?: string;
code?: number;
}
interface IScope extends ng.IScope {
list?: string;
@Nihisil
Nihisil / jail.local
Last active September 5, 2023 06:20
Send notifications to the Slack from fail2ban
...
action_with_slack_notification = %(banaction)s[name=%(__name__)s, port="%(port)$
slack[name=%(__name__)s]
action = %(action_with_slack_notification)s
...