Trending

#stenography

Latest posts tagged with #stenography on Bluesky

Latest Top
Trending

Posts tagged #stenography

#stenography paves the way to authoritarianism, @freep.com

1 0 0 0
Post image

.

bus stop
a child turns a pebble
in his pocket

.
#bus #haiku #stenography @gavinwade.bsky.social #tanskenga #micropoetry

7 3 1 0
Preview
[23 LIVE] practicing stenography - 80, 100 WPM Classes | Let's Co-Work and Study! YouTube video by Melody Wisp VOD Archive

#GoingLive to practice #stenography!

i'll be doing the 80 and 100 WPM classes today! wish me luck!

im on Twitch www.twitch.tv/melody_wisp
and YouTube (horizontally) youtube.com/live/6JrmgHS...

#MelodeezLive #VTuber #VTLive

6 2 0 1
Preview
JonasIsWater - Twitch steno stednesday - practice time! || !comms !pronouns !dogtricks

🌧️🫧 it's time for #steno stednesday! come hang out with some good tunes and distract me from my practice 🫧🌧️

#vtuber #pngtuber #vconnect #stenography #water

twitch.tv/jonasiswater

3 1 0 0
Preview
[22 LIVE] practicing stenography - 80, 100 WPM Classes | Let's Co-Work and Study! YouTube video by Melody Wisp VOD Archive

#GoingLive to practice #stenography for the first time in AGES. months, even.

i'll be TRYING to do the 80 and 100 WPM classes. i might have to tap out after the 80, tho. it is FREEZING!

im on Twitch www.twitch.tv/melody_wisp
and YouTube youtube.com/live/R8rdx0K...

#MelodeezLive #VTuber #VTLive

8 5 0 1

#stenography

Tariffs only punish Americans who purchase things in america.

2 0 0 0

@jeffjarvis.bsky.social

I knew Pete Hegseth. I worked with Pete Hegseth. And you, sir, are no Pete Hegseth.

#audition #FaintHope #Hegseth #PeteHegseth #stenography #corrupt #USPol

0 0 1 0

Lots of news outlets repeating Trump's claim that the US will run Venezuela, no news outlets asking how he is going to do that #stenography

2 0 1 0

One more reason to miss Sleepy Joe: Every newscast didn't have to be "the president posted on social media -- what is he saying?" #tertiarysyphilitic #stenography

1 0 0 0

#Stenography #PaidContent

0 0 0 0

💬 Sounds more like actual #journalism rather than #stenography to me.

1 0 0 0
StenoKey

StenoKey

Своё знакомство с IBM PC я начинал на болгарских (тогда #НРБ) 🇧🇬 компьютерах #Правец16. У них были некоторые особенности, включая свою кодировку кириллицы (не Кои, не cp866, не 1251), но сейчас не о том. Была ещё такая приблуда, как #stenokey: клавиатура для […]

[Original post on mastodon.online]

0 0 1 0
A Lingual Fractal of itself.  This Lingual Fractal generates a square based off the size of each word and rotates, creating a beautiful and chaotic checkboard pattern.

A Lingual Fractal of itself. This Lingual Fractal generates a square based off the size of each word and rotates, creating a beautiful and chaotic checkboard pattern.

Made another #LingualFractal in #Turtle #PowerShell

Turn any message into a #Fractal with a bit of #TurtlePower

Want to learn how?

Join the discussion:

github.com/PowerShellWe...

Check more examples:

psturtle.com/Commands/Get...

#SVG #Cybersecurity #Stenography #TurtleGraphics #MathArt

2 0 0 0
~~~PowerShell
#requires -Module Turtle
param(
[string]
$Message = "
We can turn any message into #TurtleGraphics to make #LingualFractals

#PowerShell #Fractal #MathArt #Stenography #SVG #WebDev #Turtle #TurtlePower 

Learn more and share yours:
",

[double]
$Scale = 10
)

$turtleArgs = @()
$morphToArgs = @()
$words = @($Message -split '[\s\p{P}]+')
for ($wordNumber = 0; $wordNumber -lt $words.Length; $wordNumber++) {
    $word = $words[$wordNumber]
    $nextWord = $words[$wordNumber + 1]

    $moveForward = @('circle', ($word.Length * $Scale), 0.25)
    $turtleArgs += $moveForward
    $morphToArgs += $moveForward

    if ($nextWord) {
        $arcStart = @('circlearc', ($word.Length * $Scale))
        $turtleArgs += $arcStart
        $morphToArgs += $arcStart
        $turtleArgs +=
            [Math]::Atan2($nextWord.Length, $word.Length)  * 180 / [Math]::PI
        $morphToArgs +=
            [Math]::Atan2($nextWord.Length, $word.Length)  * -180 / [Math]::PI
        $postRotate = @(
            'rotate'
            [Math]::Atan2($nextWord.Length, $word.Length)  * 180 / [Math]::PI
        )
            
        $turtleArgs += $postRotate
        $morphToArgs += $postRotate
    }
}

$colors = @('#4488ff','#224488', '#012456')

$style = @(
    'fillrule', 'evenodd', 'fill', @($colors | Get-Random -count 2), 'stroke', @($colors | Get-Random -count 2)
)

turtle @style @turtleArgs Morph @(
    turtle @turtleArgs
    turtle @morphToArgs
    turtle @turtleArgs
) save ./LingualFractalArcMorph.svg show

turtle @style @turtleArgs save ./LingualFractalArcColor.svg save ./LingualFractalArcColor.png
~~~

~~~PowerShell #requires -Module Turtle param( [string] $Message = " We can turn any message into #TurtleGraphics to make #LingualFractals #PowerShell #Fractal #MathArt #Stenography #SVG #WebDev #Turtle #TurtlePower Learn more and share yours: ", [double] $Scale = 10 ) $turtleArgs = @() $morphToArgs = @() $words = @($Message -split '[\s\p{P}]+') for ($wordNumber = 0; $wordNumber -lt $words.Length; $wordNumber++) { $word = $words[$wordNumber] $nextWord = $words[$wordNumber + 1] $moveForward = @('circle', ($word.Length * $Scale), 0.25) $turtleArgs += $moveForward $morphToArgs += $moveForward if ($nextWord) { $arcStart = @('circlearc', ($word.Length * $Scale)) $turtleArgs += $arcStart $morphToArgs += $arcStart $turtleArgs += [Math]::Atan2($nextWord.Length, $word.Length) * 180 / [Math]::PI $morphToArgs += [Math]::Atan2($nextWord.Length, $word.Length) * -180 / [Math]::PI $postRotate = @( 'rotate' [Math]::Atan2($nextWord.Length, $word.Length) * 180 / [Math]::PI ) $turtleArgs += $postRotate $morphToArgs += $postRotate } } $colors = @('#4488ff','#224488', '#012456') $style = @( 'fillrule', 'evenodd', 'fill', @($colors | Get-Random -count 2), 'stroke', @($colors | Get-Random -count 2) ) turtle @style @turtleArgs Morph @( turtle @turtleArgs turtle @morphToArgs turtle @turtleArgs ) save ./LingualFractalArcMorph.svg show turtle @style @turtleArgs save ./LingualFractalArcColor.svg save ./LingualFractalArcColor.png ~~~

We can turn any message into #TurtleGraphics to make #LingualFractals 😎🐢

#PowerShell #Fractal #MathArt #Stenography #SVG #WebDev #Turtle #TurtlePower

Learn more and share yours:

github.com/PowerShellWe...

Source in image description. #Animation at url.

3 2 0 0
Original post on glammr.us

Getting some Bell, Book & Candle vibes on this guy's take on #stenography in 1945 😂

"The other element is found in the
stenotype, that somewhat disconcerting device encountered usually at public meetings. A girl strokes its keys languidly & looks about the room & sometimes at the speaker with a […]

0 0 0 0
Post image

Girls will see this and go hell yeah!
#photgraphy #moss #mediumformat #stenography

7 0 0 0
Video

Serial bankrupt, liar, fraud, rapist, adulterer and wife-beater Donald Trump claims he wants to see #Christianity at the centre of American life.

Carrington Clark: I'll just parrot that claim without context.

#ABC #journalism #stenography #CharlieKirk #auspol

12 6 3 0

#Stenography

0 0 0 0
Preview
Daily Discovery: DJ Haram - Stenography ft. Armand Hammer https://www.youtube.com/watch?v=uVT2AVWzp0g “Stenography” is one of the most charged tracks on DJ Haram’s debut album Beside Myself, released in July on

Daily Discovery: DJ Haram – Stenography


On Beside Myself, DJ Haram binds Jersey-club percussion, industrial electronics, noise and drone to verses from ELUCID and billy woods of Armand Hammer.


#DJHaram #Stenography #ArmandHammer #Hyperdub #UnitedStates #Drone
rhythmpassport.com/?p=162595

0 0 0 0

#stenography

0 0 0 0
Saucy secrets concealed in shorthand
Saucy secrets concealed in shorthand Tune into this week's episode for more!

Sophie and Jonty unearth detailed accounts of Samuel Pepys' infidelity, concealed using Shelton’s shorthand.

🎧 Tune in now to hear more of the secrets hidden within the pages of Pepys' diary

youtube.com/shorts/Dde4B...

#SamuelPepys #englishliterature #stenography #shorthand #bookchat

0 0 0 0
photo of yellow notebook paper. at the top in English is "Re: H 573 McBride Principles, Finances, Ireland
Herb O'Brien" followed by shorthand, which looks like a bunch of squiggly lines but is a code used by stenographers. Near the bottom is "Egan" mixed in with the shorthand.

photo of yellow notebook paper. at the top in English is "Re: H 573 McBride Principles, Finances, Ireland Herb O'Brien" followed by shorthand, which looks like a bunch of squiggly lines but is a code used by stenographers. Near the bottom is "Egan" mixed in with the shorthand.

a modest proposal: prevent ai scraping and/or culture cop harassment by writing your stories in shorthand (bonus: you can choose the shorthand that's dominant in your geographic region!)
#stenography #writing

3 0 1 0

I would like to sell my #StenoKeyboards #Univ4 (also posted this on Discord)

$110 cad + shipping or no cost pickup/dropoff if you're in/ close to Toronto. Used twice (purchased late 2022), original box, incl. a usb-c cable

#Plover #Stenography

0 0 0 0

OMFG. #NPR top story is "Trump sez." The felon lies like he breathes. #stenography #complicitmedia

2 0 0 0
Bank Froze a Vet’s Account—7 Minutes Later, the CEO Walked In and Ordered It Reinstated
Bank Froze a Vet’s Account—7 Minutes Later, the CEO Walked In and Ordered It Reinstated YouTube video by Unknown Hero Stories

Odd #stenography observation. AI generated YouTube stories, including www.youtube.com/watch?v=hrdY..., have a "wear pattern" as if one were watching cellulose film instead of generated images. I wonder if there is a message there?

0 0 1 0

I don't think it's possible to insult the people at one of the great sources of yellow journalism, the Washington Post.

No exaggerations necessary! Just describe exactly what they do, and it's clear, we are looking at the actions of cowards.
#stenography #sanewashing #bothsidesing #fawning #fascism

1 1 0 0

So since I'm unemployed my ADHD was like "what if we changed careers" but this time, idk why, but #stenography found me and I think it might actually be beneficial to my background without really changing careers totally. Yet. But I just bought a starboard and I'm excited to learn #plover theory! 😄

1 0 0 0