Amounts are in 2013-equivalent dollars when filing as the head-of-household.
Sources: Vox, Tax Foundation
| import asyncio | |
| import signal | |
| import vocode | |
| from vocode.streaming.streaming_conversation import StreamingConversation | |
| from vocode.helpers import create_microphone_input_and_speaker_output | |
| # Transcriber | |
| from vocode.streaming.models.transcriber import AssemblyAITranscriberConfig | |
| from vocode.streaming.transcriber.assemblyai_transcriber import AssemblyAITranscriber |
| import SwiftUI | |
| extension UnitPoint { | |
| /// - returns: The point on the perimeter of the unit square that is at angle `angle` relative to the center of the unit square. | |
| init(_ angle: Angle) { | |
| // Inspired by https://math.stackexchange.com/a/4041510/399217 | |
| // Also see https://www.desmos.com/calculator/k13553cbgk | |
| let s = sin(angle.radians) | |
| let c = cos(angle.radians) |
| // | |
| // ContentView.swift | |
| // GradientComponenet | |
| // | |
| // Created by David Smith on 2/21/23. | |
| // | |
| import SwiftUI | |
| struct ContentView: View { |
| //Changes | |
| //11/23/2021 by DW | |
| //Updated to handle a subcategory of verbs, such as op.attributes. | |
| //11/22/2021 by DW | |
| //http://drummer.scripting.com/davewiner/verblist.opml | |
| var theOutline = { | |
| opml: { | |
| head: { | |
| title: "Drumkit verb list", | |
| dateCreated: "Mon, 22 Nov 2021 21:49:22 GMT", |
| # N.B. The only tool missing here that is mentioned in the document is `zenmap` | |
| # purely because this image is intended to be run via a CLI and `zenmap` is a GUI | |
| # to `nmap` i.e. one can play around with the tools by running: | |
| # | |
| # $ docker build --name bite_size_networking:latest . | |
| # $ docker run --rm -d --name bsn_test bite_size_networking:latest | |
| # $ docker exec -it bsn_test bash | |
| # | |
| # Alternatively, one can change the `ENTRYPOINT` to `["bash"]` and run: | |
| # |
| <script> | |
| export default { | |
| props: { | |
| span: { | |
| type: String, | |
| default: null | |
| } | |
| }, | |
| render: function (createElement) { | |
| return createElement( |
Amounts are in 2013-equivalent dollars when filing as the head-of-household.
Sources: Vox, Tax Foundation
| //dynamic parenting for 3d layers | |
| //from Dan Ebberts on forums I think.. | |
| //Position | |
| L=thisComp.layer("Object center"); | |
| L.toWorld(L.effect(name)("3D Point")); | |
| //Scale | |
| L =thisComp.layer("Object center"); | |
| [L.transform.scale[0]/100*value[0],L.transform.scale[1]/100*value[1],L.transform.scale[2]/100*value[2]]; |