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
Add-Type -AssemblyName System.Speech; $ss = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer; $ss.Rate = 1.2; $ss.Speak('There was a catastrophic cyber attack recently. All the data was encrypted.... The government is still looking for the hacker. They think he ran some ware.'); |
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
#[derive(Queryable, Insertable, AsChangeset)] | |
pub struct Transaction { | |
pub id: uuid::Uuid, | |
pub created: SystemTime, | |
pub modified: SystemTime, | |
pub deleted: Option<SystemTime>, | |
pub row_version: i64, | |
pub transaction_type_id: i64, | |
pub transaction_direction_id: i64, |
OlderNewer