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
| #!/usr/bin/env python3 | |
| import itertools | |
| import json | |
| import os | |
| import shutil | |
| import subprocess | |
| import time | |
| import re | |
| from datetime import datetime |
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
| - hosts: all | |
| remote_user: pi | |
| become_method: sudo | |
| vars_prompt: | |
| - name: new_password | |
| prompt: "Enter the password you would like to use for the user pi" | |
| confirm: yes | |
| tasks: | |
| - name: backup shadow file |
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
| from curio import Queue, CancelledError | |
| class Port: | |
| def __init__(self): | |
| self.chan = None | |
| self.proc = None | |
| class InputPort(Port): | |
| async def recv(self): | |
| tok, timestamp = await self.chan.recv() |
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
| from curio import Queue, CancelledError | |
| class Port: | |
| def __init__(self): | |
| self.chan = None | |
| self.proc = None | |
| class InputPort(Port): | |
| async def recv(self): | |
| tok, timestamp = await self.chan.recv() |
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
| from curio import Queue, CancelledError | |
| class Port: | |
| def __init__(self): | |
| self.chan = None | |
| class InputPort(Port): | |
| async def recv(self): | |
| tok = await self.chan.recv() | |
| return tok |
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
| from curio import Queue, CancelledError | |
| class Port: | |
| def __init__(self): | |
| self.chan = None | |
| class InputPort(Port): | |
| async def recv(self): | |
| tok = await self.chan.recv() | |
| return tok |
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
| from curio import Queue, CancelledError | |
| class Port: | |
| def __init__(self): | |
| self.chan = None | |
| class InputPort(Port): | |
| async def recv(self): | |
| tok = await self.chan.recv() | |
| return tok |
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 Process: | |
| next_id = 0 | |
| def __init__(self, name): | |
| self.name = name | |
| self.id = Process.next_id | |
| Process.next_id += 1 |
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 curio |
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
| package com.moneydance.modules.features.myextension; | |
| import com.moneydance.apps.md.controller.FeatureModule; | |
| import com.moneydance.apps.md.controller.FeatureModuleContext; | |
| import com.moneydance.apps.md.controller.ModuleUtil; | |
| import com.moneydance.apps.md.controller.UserPreferences; | |
| import java.io.*; | |
| import java.util.*; | |
| import java.text.*; |
NewerOlder