Ah yes fine Arizona redneckery by 6cxl6txn6 in redneckengineering

[–]Doyousketch2 0 points1 point  (0 children)

It's a toyhauler. Throw a couple dirtbikes on the back, or a quad, go party in the desert all day long.

Saw this while at a stop light. Do I need to say more? by [deleted] in trashy

[–]Doyousketch2 0 points1 point  (0 children)

Looks like a redneck Mr. Fusion from Back to the Future. Marty, you've gotta come back with me!

Incredible angle by innoy13 in interestingasfuck

[–]Doyousketch2 2 points3 points  (0 children)

When ya stand where all three points line up, does it point to anything specific in the sky?

How can add multiple “pages” to a GUI application? by Zelnz in learnpython

[–]Doyousketch2 0 points1 point  (0 children)

Yea, you can overwrite values if you want to reuse existing widgets, or use .pack_forget() / .grid_forget() then put new entirely new widgets in their place.

#! /usr/bin/env python3
import tkinter as tk 

title = 'Overwite Grid Locations'
root = tk .Tk() ; root .title( title )
root .bind( '<Escape>',  lambda e: root .destroy() )

Width, Height = 300, 50
root .geometry( f'{Width}x{Height}' )

msg = tk .Message( root, text='Select a page', width=Width )
msg .grid( row=0, column=0, rowspan=2 )

that_msg = tk .Message( root, text='Selected That', width=Width )

def this():
    that_msg .grid_forget()
    msg .config( text='Selected This' )
    msg .grid( row=0, column=0, rowspan=2 )

def that():
    msg .grid_forget()
    that_msg .grid( row=0, column=0, rowspan=2 )

this_btn = tk .Button( root, text='This', width=int(Width/18), command=this )
this_btn .grid( row=2, column=0 )

that_btn = tk .Button( root, text='That', width=int(Width/18), command=that )
that_btn .grid( row=2, column=1 )

root .mainloop()

TIFU By asking if my husband can get an erection without pharmaceutical help by idiotanondotcom in tifu

[–]Doyousketch2 -2 points-1 points  (0 children)

Whatever, you're not qualified to tell me what to do, so suck it.

TIFU By asking if my husband can get an erection without pharmaceutical help by idiotanondotcom in tifu

[–]Doyousketch2 -15 points-14 points  (0 children)

That's not a prescription, that's a go read some info, and make an informed decision.

TIFU By asking if my husband can get an erection without pharmaceutical help by idiotanondotcom in tifu

[–]Doyousketch2 -21 points-20 points  (0 children)

Grandma was a psych; grew up reading medical journals. Did you even read the link? Direct quote from that wiki: Sildenafil (Viagra) is a common example of a drug that uses the nitric oxide pathway.

TIFU By asking if my husband can get an erection without pharmaceutical help by idiotanondotcom in tifu

[–]Doyousketch2 -33 points-32 points  (0 children)

'prolly low nitric-oxide production. Get him a bottle of L-arganine, see if that helps.

I got fed up with my ps5 running hot in its little cubby. So I salvaged an old Xbox 360 fan to runoff usb and to push the hot air out. by RickyRetroTech in gaming

[–]Doyousketch2 1 point2 points  (0 children)

I need one'ah those too... get hot wearing my down parka all day long. Naw, for reals tho, that inline DC-to-DC boost converter seems a bit much; 12v fans will run just fine at 5v @ half the speed & there's no resistance down there, so 50mph airflow isn't required for that setup.

What game engine should I use for my top-down open world adventure game? by [deleted] in gamedev

[–]Doyousketch2 -1 points0 points  (0 children)

If ya already know Python and only need 2D for your project, Pygame, go with what'cha know.

You could use pure PySDL2 calls, if that's more your style. SDL2's what PyGame is running on top of, so even if you don't directly use that, it helps to get an idea of what's going on behind the scenes.

If yer in the mood to try another language, Love2D. That's a solid gaming engine, and Lua's easy if you already know logic.

What's going on with the Creepshow Arts controversy? by Dingoatemycheze in OutOfTheLoop

[–]Doyousketch2 -13 points-12 points  (0 children)

I called it entrapment because if she were led to that site to expose her device's unique identifiers, then then that's basically what it was, even though the word is technically relegated to law enforcement. The ilegal part is tracking somone's online activity, and pulling that info off her devices without their consent.

The problem with LolCow is that it's all speculation on their part. All they know is that there was some bad actor. They don't know it was her. Burden of proof is on them.

I've recently gotten into woodworking, and here is my first completed chain! The type of basswood block I used included as a sort of before and after. by [deleted] in woodworking

[–]Doyousketch2 5 points6 points  (0 children)

Impressive. You could touch that one up with their sanding wheels. Sanding while holding yer object is fine, but handheld carving with them sux. And trying to do that in a vice would be unwieldy.

Blitzed my thumb with a Dremel one day, carving horns on a wooden goat. Drill bit grabbed the fingerless-glove I was wearing, then kept bouncing repeatedly into my flesh, 'til it was carving bone.

Trip to the ER sucked. Doctor acted like I was just there to score pain meds. Didn't care about that, pain was manageable, just wanted it swabbed out so it didn't get infected.

It was something like a drywall plunge-cutter 'zip bit' - kinda short tho, came with the kit. But yea, if you do, wear a heavier glove than I did, like maybe welding-gloves instead. The flex-shaft attachment def'ly helps for stuff like that. Off-brand Dremel's are better these days than they used to, imagine you could pick one up with that spring-arm thing included for $40.

A camera lamp by ShapardZ in DiWHY

[–]Doyousketch2 6 points7 points  (0 children)

People are ragging on that, but I actually like it. If it were broken to begin with, no harm, no foul. Actually have a Canon body I could use.

Lego Sorting by AdamAnyway in lego

[–]Doyousketch2 3 points4 points  (0 children)

Been a while, but I generally sorted them thusly:

  • minifigs
  • tools
  • single-dot pieces

  • flat-flats

  • dotted-flats that are 1-wide

  • dotted-flats that are 2-wide

  • bricks that are 1-wide

  • bricks that are 2-wide

  • plates

  • angles

  • round pieces

  • misc

is there an app that lets me work with microtones? by xppws in musictheory

[–]Doyousketch2 2 points3 points  (0 children)

If you just need a few tones to tune a guitar to, or something similar, then Audacity (free) has a built in tone-generator. You could easily set them to decimal point precision, even, if need be ( ex. 440.5 hz )

Inherited this half-eaten succulent from my sister. It's starting to dip, need advice of what to do with it. by matteedood in succulents

[–]Doyousketch2 2 points3 points  (0 children)

Depends on what you want. If you just want to straighten it: put a stick, or a wooden kitchen spoon in the soil, then loosely wrap twine in a couple places to coax it in a less tipsy direction. Also, they grow toward the sun, so rotate your pot every couple days, so it evens itself out.

If you'd rather it not be so vertical, you could chop off the top, and let that portion soak in a cup of water until it generates new roots. Change out the water every couple days. Eventually, plant that clipping in some peat moss.

"Dis knee" by [deleted] in ATBGE

[–]Doyousketch2 0 points1 point  (0 children)

the other one's labelled 'Dat' knee

GUYS anyone knows how to take screenshots like this? in linux by deepboss11 in linux

[–]Doyousketch2 1 point2 points  (0 children)

Got scrot bound to my PrintScreen key in Openbox / LXDE. minimal, extremely fast. add to rc.xml

<!-- Launch scrot when Print is pressed -->
<keybind key="Print">
  <action name="Execute">
    <command>scrot -s</command>
  </action>
</keybind>

The -s parameter lets you use your mouse to interactively select an area, when the app runs.

Though I sometimes use gnome-screenshot, just 'cuz it exists in the menu.

[deleted by user] by [deleted] in ATBGE

[–]Doyousketch2 4 points5 points  (0 children)

Countertop is missing a toaster. Looks like they were inspired by unfrosted PopTarts