This file contains hidden or 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
--- | |
all: | |
hosts: | |
host1: | |
host2: | |
host3: | |
pve1: | |
pve2: | |
pve3: | |
children: |
This file contains hidden or 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
#include "wokwi-api.h" | |
#include <stdio.h> | |
#include <stdlib.h> | |
DEFINE_PIN(COM); | |
DEFINE_PIN(NC); | |
DEFINE_PIN(NO); | |
DEFINE_PIN(COIL); | |
typedef struct { |
This file contains hidden or 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
#include "wokwi-api.h" | |
#include <stdio.h> | |
#include <stdlib.h> | |
DEFINE_PIN(CIO0); | |
DEFINE_PIN(CIO1); | |
DEFINE_PIN(CIO2); | |
DEFINE_PIN(CIO3); | |
DEFINE_PIN(CIO4); | |
DEFINE_PIN(CIO5); |
This file contains hidden or 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
# Insert your company-hash here. When you get the download link, this is the long alpha-numeric scring | |
# that comes after setupdownloader_ in the filename. | |
# Do not include the square brackets (but do include the = if there is one). | |
$CompanyHash = "" | |
### Modify below this line at your own risk! | |
# If it's already installed, just do nothing | |
$Installed = Get-ItemProperty "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*" | | |
Where-Object { $_.DisplayName -eq "Bitdefender Endpoint Security Tools" } |
This file contains hidden or 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
let process = teenage_child; | |
function teenage(process) { | |
while(true) { | |
let processList = this.getProcesses(); | |
for (let potential in processList) { | |
process.greet(potential); | |
if (potential.isWarm()) { | |
try { | |
process.offer(potential); |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am chrisisbeef on github. | |
* I am chrisisbeef (https://keybase.io/chrisisbeef) on keybase. | |
* I have a public key whose fingerprint is 3781 27FA D240 C390 F4B8 07D9 5F5A 831F ECA3 2D95 | |
To claim this, I am signing this object: |
This file contains hidden or 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
# Allow override of Bundled JRE | |
# Override can be set either via the INSTALL4J_JAVA_HOME_OVERRIDE environment variable or | |
# by passing -manual <path> to the installer. The -manual arg will override the environment | |
# variable if both are set. INSTALL4j_JAVA_HOME_OVERRIDE is provided if a savvy user looks | |
# up the Install4J documentation. | |
# | |
# Instructions: | |
# In your Unix Installer Media, select the "Installer Options" -> "Installer Custom Script" | |
# option in the left pane. Select direct entry and copy/paste this script into the provided | |
# editor. |
This file contains hidden or 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
for f in $(svn diff --summarize -r16044:16045 | grep -v "/test/" | awk '{print $2}'); do printf "classes/"; if [[ "$f" =~ "/java/" ]]; then printf "$f" | cut -b 15- | sed 's/.java/*.class/'; elif [[ "$f" =~ "/resources/" ]]; then printf "$f" | cut -b 20-; fi; done |