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
Windows Registry Editor Version 5.00 | |
; https://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/IPM.html | |
; https://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/FeatureLockDown.html | |
; https://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/UsageMeasurement.html | |
; https://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/IPM.html | |
; https://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/Updater-Win.html | |
; https://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/Workflows.html | |
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown] |
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
[portainer] | |
username=USER | |
password=PASSWORD | |
url=http://127.0.0.1:9000 | |
[swarm] | |
clusterID=ID | |
# as seen in `docker info` |
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
import re, pathlib | |
target_version_major = 2 | |
target_version_minor = 0 | |
"""md | |
* https://github.com/flipperdevices/flipperzero-firmware/blob/0.69.1/lib/flipper_application/flipper_application.c#L45 | |
* https://github.com/flipperdevices/flipperzero-firmware/blob/0.69.1/lib/flipper_application/flipper_application.c#L116 | |
* https://github.com/flipperdevices/flipperzero-firmware/blob/0.69.1/lib/flipper_application/application_manifest.c#L12 | |
* https://github.com/flipperdevices/flipperzero-firmware/blob/0.69.1/lib/flipper_application/application_manifest.h#L15 |
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
""" | |
ASGI config for MyApp project. | |
It exposes the ASGI callable as a module-level variable named ``application``. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/4.0/howto/deployment/asgi/ | |
""" | |
import os |
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 | |
"""Simple filter to mark a variable as unsafe""" | |
from __future__ import (absolute_import, division, print_function) | |
__metaclass__ = type | |
from ansible.utils.unsafe_proxy import wrap_var | |
def as_unsafe(var): |
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
--- | |
# ---Setup: | |
# > ansible-playbook -i mytest.ini mytest.yml --limit test2 | |
# ./mytest.ini: | |
# test1 site=ams | |
# test2 site=ams | |
# test3 site=blg | |
# | |
# ---Result: | |
# PLAY [TEST] ******************************************************************** |
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
From 34db8a351b8fc43362bcbf0cba9e186b2c3a1b80 Mon Sep 17 00:00:00 2001 | |
From: "Alexandre L." | |
Date: Tue, 7 Jul 2015 19:25:22 +0200 | |
Subject: [PATCH] Dirty workaround | |
--- | |
exportify.js | 14 ++++++++++++-- | |
1 file changed, 12 insertions(+), 2 deletions(-) | |
diff --git a/exportify.js b/exportify.js |
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 | |
#-*- encoding: Utf-8 -*- | |
from hashlib import md5 | |
from sys import argv | |
try: | |
from Crypto.Cipher import AES | |
except ImportError: | |
exit('Erreur : la bibliothèque "PyCryto" n\'est pas installée') |
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
From 412a091ab8f97a5964bc548c29ca3cfa646fcbc9 Mon Sep 17 00:00:00 2001 | |
From: Alexandre L. | |
Date: Fri, 7 Nov 2014 04:28:58 +0100 | |
Subject: [PATCH] Patch pour le C/C Gnome-style | |
--- | |
config.c | 5 ----- | |
putty.h | 3 +++ | |
settings.c | 4 ++++ | |
terminal.c | 15 +++++++++++++-- |
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
#!python3 | |
import sys, os, io, re, subprocess, threading, shutil, json | |
def youtubedl_fetch(url): | |
# Like check_output, but keep stderr | |
# https://github.com/python/cpython/blob/2.7/Lib/subprocess.py#L194 | |
cmdline = [ | |
'./youtube-dl-2020.06.16.1', |
NewerOlder