View change_password.yml
- 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 |
View chp.py
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() |
View process_buffer5.py
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() |
View process_buffer4.py
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 |
View process_buffer3.py
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 |
View process_buffer2.py
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 |
View process_buffer1.py
class Process: | |
next_id = 0 | |
def __init__(self, name): | |
self.name = name | |
self.id = Process.next_id | |
Process.next_id += 1 |
View -
import curio |
View Main.java
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.*; |
View 1-simple-moneydance-popup.py
from com.infinitekind.moneydance.model import * | |
import os | |
from javax.swing import JButton, JFrame, JScrollPane, JTextArea, BoxLayout, BorderFactory | |
class SimplePopupExtension(object): | |
def initialize(self, extension_context, extension_object): | |
self.moneydanceContext = extension_context | |
self.moneydanceExtensionObject = extension_object |
NewerOlder