Skip to content

Instantly share code, notes, and snippets.

View kitmenke's full-sized avatar

Kit Menke kitmenke

View GitHub Profile
@vegaasen
vegaasen / maven-3.8.1-blocked-mirror.md
Last active April 29, 2024 01:40
Maven 3.8.1 blocked mirror for internal repositories

Maven 3.8.1 blocked mirrors "fix"

This is not a fix, but a workaround for repositories not on HTTPS yet. Use with caution.

Error

[ERROR] (...) Could not transfer artifact no.whatever:whatever-client:pom:3.1 from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [releases (http://unportected.com/nexus/content/repositories/releases, defaul)] -> [Help 1]
@ClaytonPeddy
ClaytonPeddy / web.config
Created August 15, 2016 02:59
Play Framework on Azure App Service
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%HOME%\site\wwwroot\bin\play.bat"
arguments="-Dhttp.port=%HTTP_PLATFORM_PORT% -Dconfig.file=%HOME%\site\wwwroot\conf\application.conf -Dlogger.resource=logback.xml -Dpidfile.path=/dev/null"
startupRetryCount="1"
stdoutLogEnabled="true"
@pandafulmanda
pandafulmanda / Python3 Virtualenv Setup.md
Last active March 12, 2024 15:59 — forked from akszydelko/Python3 Virtualenv Setup.md
Setting up and using Python3 Virtualenv on Mac

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3
@tuogex
tuogex / gist.lua
Last active June 18, 2022 18:04
Gist client for ComputerCraft. Uses JSON library from http://regex.info/blog/lua/json
-- --
-- gist client - tuogex
-- --
JSON = (loadfile "json.lua")()
--helper functions
function printHelp()
print("Gist client by tuogex")
print("-i <gistId> - Gets information about a gist")
print("-if <gistId> <gistFileName> - Gets information about a single file in the gist")