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
| Human progress is neither automatic nor inevitable... Every step toward the goal of justice requires sacrifice, suffering, and struggle; the tireless exertions and passionate concern of dedicated individuals. | |
| Martin Luther King Jr. |
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
| arxur red | |
| bissem | |
| dossur green | |
| drezjin | |
| duerten | |
| farsul blue | |
| fissian | |
| gojid blue | |
| harchen green | |
| human red |
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
| Ezekiel 16:48-50 | |
| As I live, says the Lord God, your sister Sodom and her daughters have not done as you and your daughters have done. | |
| This was the guilt of your sister Sodom: she and her daughters had pride, excess of food, and prosperous ease, but did not aid the poor and needy. | |
| They were haughty, and did abominable things before me; therefore I removed them when I saw it. | |
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
| jobs: | |
| - script: > | |
| multibranchPipelineJob('jenkins-casc-seed') { | |
| def repo = "https://my-github-server/..." | |
| branchSources { | |
| github { | |
| // The id option in the Git and GitHub branch source contexts is now mandatory (JENKINS-43693). | |
| id(UUID.nameUUIDFromBytes(repo.getBytes()).toString()) // IMPORTANT: use a constant and unique identifier | |
| scanCredentialsId('github') | |
| repoOwner('my-org') |
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
| pipeline { | |
| agent none | |
| stages { | |
| stage('stage') { | |
| steps { | |
| script { | |
| if (binding.hasVariable('superVariable')) { | |
| echo("superVariable == 0: ") | |
| echo(superVariable == 0) | |
| } |
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
| gain == weight == amplitude == strength | |
| bias == phase == offset == shift |
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
| Numbers 31:7-17 | |
| Deuteronomy 2:34 | |
| Deuteronomy 13:12-15 | |
| Deuteronomy 20:16-17 | |
| Joshua 10:28-40 | |
| 1 Samuel 15:3-20 |
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
| import paramiko | |
| def get(host, user, passw, remote_path, local_path, public_host_key_filepath=None): | |
| with paramiko.SSHClient() as ssh: | |
| if public_host_key_filepath: | |
| # secure | |
| ssh.load_host_keys(public_host_key_filepath) | |
| ssh.set_missing_host_key_policy(paramiko.RejectPolicy()) | |
| else: | |
| # not secure |
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
| class _Flavour(object): | |
| """A flavour implements a particular (platform-specific) set of path | |
| semantics.""" | |
| def __init__(self) | |
| def parse_parts(self, parts) | |
| def join_parsed_parts(self, drv, root, parts, drv2, root2, parts2) | |
| """ | |
| Join the two paths represented by the respective | |
| (drive, root, parts) tuples. Return a new (drive, root, parts) tuple. | |
| """ |
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
| Create a file with the following contents: | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <!-- Fix for error LNK1318 in hyperV docker containers --> | |
| <ItemDefinitionGroup> | |
| <ClCompile> | |
| <DebugInformationFormat>OldStyle</DebugInformationFormat> | |
| </ClCompile> | |
| </ItemDefinitionGroup> |
NewerOlder