This profile is from a federated server and may be incomplete. Browse more on the original instance.

linuxgal, to vim
@linuxgal@techhub.social avatar

You can run commands from 𝘪𝘯𝘴𝘪𝘥𝘦

:py3 for i in range(1600,1900):print (f"{i:04d}",chr(i), end=' ')

linuxgal, to linux
@linuxgal@techhub.social avatar

Inxi -Fz

system information in the terminal

linuxgal, to washington
@linuxgal@techhub.social avatar

From the top of Mt. Erie in

linuxgal, to random
@linuxgal@techhub.social avatar
linuxgal, to linux
@linuxgal@techhub.social avatar
linuxgal, to random
@linuxgal@techhub.social avatar

- Scale and merge two GIFs:

gifsicle –resize 500×375 -i dewey.gif > huey.gif

gifsicle –colors 256 –merge huey.gif cylon.gif -o robots.gif

video/mp4

linuxgal, to random
@linuxgal@techhub.social avatar

Morse code with

#!/bin/sed -rf
s/./\U&/
s/$/\nA.-B-...C-.-.D-..E.F..-.G--.H....I..J.---K-.-L.-..M--N-.O---P.--.Q--.-R.-.S...T-U..-V...-W.--X-..-Y-.--Z--../
:a
s/([A-Z])([^\n]
\n.\1([-.]+))/\3 \2/
ta
s/\n.
//

linuxgal, to mastodon
@linuxgal@techhub.social avatar
linuxgal, to LGBT
@linuxgal@techhub.social avatar
linuxgal, to python
@linuxgal@techhub.social avatar

Solve quadratic equations with impunity using

#!/usr/bin/python
import math
import sys
a = float(sys.argv[1])
b = float(sys.argv[2])
c = float(sys.argv[3])
d = b**2 - 4 * a * c
if d >= 0:
x1=(-b+math.sqrt(d))/2a
x2=(-b-math.sqrt(d))/2
a
else:
x1= complex((-b/(2a)),math.sqrt(-d)/(2a))
x2= complex((-b/(2a)),-math.sqrt(-d)/(2a))

if d > 0:
print("The function has two real roots: {} and {}".format(x1,x2))
elif d == 0:
print("The function has one double root: {}".format(x1))
else:
print("The function has two complex roots: {} and {}".format(x1,x2))

linuxgal, to random
@linuxgal@techhub.social avatar
linuxgal, to StarTrek
@linuxgal@techhub.social avatar
linuxgal, to vim
@linuxgal@techhub.social avatar
linuxgal, to random
@linuxgal@techhub.social avatar
linuxgal, to linux
@linuxgal@techhub.social avatar

Tell to burn all the songs in a folder to CD and then clean up after itself.

genisoimage -r -joliet-long -o temp4.iso temp4; wodim -eject -tao speed=0 dev=/dev/sr0 -v -data temp4.iso ; rm temp4.iso ; rm temp4/*

linuxgal, to StarTrek
@linuxgal@techhub.social avatar
linuxgal, to StarTrek
@linuxgal@techhub.social avatar
linuxgal, to bible
@linuxgal@techhub.social avatar

Find the shortest and longest verses in the with

#!/usr/bin/python3
with open("kjv.txt") as file:
print("Shortest verse: ",min(file,key=len))
with open("kjv.txt") as file:
print("Longest verse: ",max(file,key=len))

linuxgal, to atheism
@linuxgal@techhub.social avatar

A core teaching carried over from alt.atheism on Usenet:

𝘐𝘧 𝘵𝘩𝘦 𝘐𝘯𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘗𝘪𝘯𝘬 𝘜𝘯𝘪𝘤𝘰𝘳𝘯 𝘦𝘹𝘪𝘴𝘵𝘴, 𝘐 𝘩𝘢𝘷𝘦 𝘦𝘷𝘦𝘳𝘺𝘵𝘩𝘪𝘯𝘨 𝘵𝘰 𝘸𝘪𝘯 𝘢𝘯𝘥 𝘺𝘰𝘶 𝘩𝘢𝘷𝘦 𝘦𝘷𝘦𝘳𝘺𝘵𝘩𝘪𝘯𝘨 𝘵𝘰 𝘭𝘰𝘴𝘦. 𝘐𝘧 𝘵𝘩𝘦 𝘐𝘯𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘗𝘪𝘯𝘬 𝘜𝘯𝘪𝘤𝘰𝘳𝘯 𝘥𝘰𝘦𝘴 𝘯𝘰𝘵 𝘦𝘹𝘪𝘴𝘵, 𝘵𝘩𝘦𝘯 𝘯𝘦𝘪𝘵𝘩𝘦𝘳 𝘰𝘧 𝘶𝘴 𝘸𝘪𝘯𝘴. 𝘛𝘩𝘦 𝘰𝘱𝘵𝘪𝘮𝘢𝘭 𝘴𝘵𝘳𝘢𝘵𝘦𝘨𝘺, 𝘵𝘩𝘦𝘳𝘦𝘧𝘰𝘳𝘦, 𝘪𝘴 𝘵𝘰 𝘢𝘤𝘤𝘦𝘱𝘵 𝘵𝘩𝘦 𝘦𝘹𝘪𝘴𝘵𝘦𝘯𝘤𝘦 𝘰𝘧 𝘵𝘩𝘦 𝘐𝘗𝘜 (𝘗𝘦𝘢𝘤𝘦 𝘉𝘦 𝘜𝘱𝘰𝘯 𝘏𝘦𝘳).

linuxgal, to random
@linuxgal@techhub.social avatar
linuxgal, to queer
@linuxgal@techhub.social avatar
linuxgal, to random
@linuxgal@techhub.social avatar
linuxgal, to books
@linuxgal@techhub.social avatar
linuxgal, to random
@linuxgal@techhub.social avatar
linuxgal, to washington
@linuxgal@techhub.social avatar

Mount Si is one of the in . The other'un is Rattlesnake Mountain. North Bend lies between them and stood in for the town on the legendary television show, which canonically was much closer to Spokane than Seattle so it was in the Rockies rather than the Cascades.

image/png

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • thenastyranch
  • magazineikmin
  • everett
  • InstantRegret
  • rosin
  • Youngstown
  • slotface
  • love
  • khanakhh
  • kavyap
  • tacticalgear
  • GTA5RPClips
  • DreamBathrooms
  • megavids
  • modclub
  • mdbf
  • tester
  • Durango
  • ethstaker
  • osvaldo12
  • cubers
  • ngwrru68w68
  • provamag3
  • normalnudes
  • Leos
  • cisconetworking
  • JUstTest
  • All magazines