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
public class MyUsernamePasswordAuthProvider | |
extends /* ........ */ { | |
/* ... MORE ... */ | |
/** | |
* XXX: Ugly hack for Remember Me feature. | |
*/ | |
public static Result handleLogin(final Context ctx, final boolean rememberMe) { | |
final Result result = UsernamePasswordAuthProvider.handleLogin(ctx); |
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
1 | |
00:00:01,000 --> 00:00:04,074 | |
_ | |
2 | |
00:00:14,162 --> 00:00:20,796 | |
En los primeros años del siglo 21, | |
The Pirate Bay creció para convertirse en el sitio | |
más grande de intercambio de ficheros. |
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 python | |
# poswap.py | |
# | |
# Copyright (C) 2013 Santiago M. Mola | |
# Released under the terms of the MIT License. | |
# | |
""" | |
Swaps the source and target language in a Gettext PO file. | |
Learn more at http://mola.io/2013/09/17/swapping-languages-in-gettext-po-file |
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/python | |
# | |
# Stars all the repos for an organization. | |
# | |
import sys | |
import urllib2 | |
import json | |
import os.path |
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 python | |
# coding: utf-8 | |
""" | |
Adjusts the time tracking for issues in a given JIRA project. | |
Requires 'jira' library: | |
$ pip install jira | |
JIRA credentials need to be stored in a file '.jira_auth.json'. | |
Its contents should be: |
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 | |
# | |
# git-find-roots finds every commit with no parent (initial commits) | |
# and the commit where they were merged. | |
# | |
# Usage: | |
# git-find-roots [commit-ish] | |
# | |
# Example: | |
# git-find-roots master |
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
# Copyright © 2017 Santiago M. Mola | |
# Licensed under the terms of the MIT License. | |
# | |
# This script is a proof-of-concept to enable WinRM | |
# on Windows 10 (vagrant box Microsoft/EdgeOnWindows10). | |
# | |
# It borrows from the instructions by André Albino Pereira | |
# at https://gist.github.com/andreptb/57e388df5e881937e62a | |
# | |
# This is not considered stable and, in fact, I'm moving |
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 | |
set -e | |
if [[ -z ${K8S_JVM_POD} ]]; then | |
echo "K8S_JVM_POD not defined" | |
exit 1 | |
fi | |
EXEC="kubectl exec ${K8S_JVM_POD}" | |
CP="kubectl cp ${K8S_JVM_POD}" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer