22

And call it Dang-ism

21

title.

[-] dadarobot@lemmy.sdf.org 98 points 6 months ago

they are racist...

7

I recently reinstalled my nixos (long story). but for some reason, tailscale refuses to install. when i reinstalled, i just copied over my configuration.nix to replace the default one from the install (not sure if that is part of the problem?). or maybe its just broken right now, and i need to wait it out?

...

ok tailscale.com/net/tstun 0.034s

ok tailscale.com/packages/deb 0.028s

--- FAIL: TestGetList (0.00s)

portlist_test.go:19: seek /proc/net/tcp: illegal seek

--- FAIL: TestIgnoreLocallyBoundPorts (0.00s)

portlist_test.go:40: seek /proc/net/tcp: illegal seek

--- FAIL: TestPoller (0.00s)

portlist_test.go:61: seek /proc/net/tcp: illegal seek

FAIL

FAIL tailscale.com/portlist 0.016s

FAIL

error: builder for '/nix/store/18r5bq5bx8n79mgpv69mnfjq8w7z05b0-tailscale-1.82.5.drv' failed with exit code 1

error: 1 dependencies of derivation '/nix/store/pd0225japsibj036hgfzj48q960wx8k4-system-generators.drv' failed to build

error: 1 dependencies of derivation '/nix/store/572pg1xc24wdd01v7cyvvrdijn7qb20y-system-path.drv' failed to build

error: 1 dependencies of derivation '/nix/store/hln81111gkd51fzm7napkb40wd3rx9ig-nixos-system-wwt-25.05.809261.7c815e513adb.drv' failed to build

[-] dadarobot@lemmy.sdf.org 61 points 8 months ago

normally id say "linux is free, there's no harm in giving it a go", but between your lack of free time, nvidia graphics card, dependence on proprietary software, and previous experience (and slight distain) for linux i'd say just go with win 11.

there may be a way to get your music software to work in linux, but youll likely need to mess around with wine configs and it may never actualoy work right.

if you are interested ever, fire up a vm and play around with linux to get comfortable with it. maybe when win11 reaches eol (or even before) you'll want to make the switch.

none of this is said to scare you away from linux. searching for drivers is rarely a thing in linux. there are built in tools in most distros to deal with graphics drivers, but apart from that, given the open source nature of linux, everything else is just handled by kernel modules and are basically seamless unless you have some weird proprietary hardware. linux is fairly easy to use these days, but there is quite a bit of a learning curve because it is a fundamentally different os than windows, and the way you solve problems is very different.

7

my kid wants a portable cdplayer, and i want to get her a good one. any recommendations?

[-] dadarobot@lemmy.sdf.org 105 points 10 months ago* (last edited 10 months ago)

probably a troll...

has to be a modified bersion of the mtg mana circles on the back of the card. same shading and everything

[-] dadarobot@lemmy.sdf.org 101 points 10 months ago* (last edited 10 months ago)

October 8, 2010 4:35 PM ET

[-] dadarobot@lemmy.sdf.org 138 points 11 months ago

i burned a cd 2 weeks ago.

353
rss feed (lemmy.sdf.org)
submitted 11 months ago by dadarobot@lemmy.sdf.org to c/xkcd@lemmy.world

added xkcd to my rss feed and this is the text on all the posts lol

[-] dadarobot@lemmy.sdf.org 103 points 1 year ago

honestly there are plenty of things to make fun of abbott about without being ableist. js

[-] dadarobot@lemmy.sdf.org 69 points 1 year ago

Sounds like doge should cut its own funding

6

I recently switched from a pixel 6 to a fairphone 5. There was stuff like a smart screenshot (which worked half the time) and the ability to select text most of the time. The fairphone doesnt have that, and i wonder if its a first party google feature, or if theres a different rom i should use.

230
This man likes rules (lemmy.sdf.org)
[-] dadarobot@lemmy.sdf.org 87 points 1 year ago
10
submitted 1 year ago* (last edited 1 year ago) by dadarobot@lemmy.sdf.org to c/nixos@lemmy.ml

I have a program that I wrote, maybe I didn't package it appropriately, but I cannot got it to run. I wrote it on a manjaro install, and tested it on another manjaro install, both were fine. I packaged it with poetry and copied the wheel over.

Today I tried to install it on my nixos surface tablet I use at work. I get this error on installation:

Traceback (most recent call last):                                            File "/home/gzuh/.local/bin/willcallgui", line 5, in <module>
    from willcallgui import willcallgui
  File "/home/gzuh/.local/share/pipx/venvs/willcallgui/lib/python3.11/site-packages/willcallgui/willcallgui.py", line 12, in <module>
    import tkinter as tk
  File "/nix/store/h723hb9m43lybmvfxkk6n7j4v664qy7b-python3-3.11.9/lib/python3.11/tkinter/__init__.py", line 38, in <module>
    import _tkinter # If this fails your Python may not be configured for Tk
    ^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named '_tkinter'

These are the packages i have installed... I'm trying to install it with pipx...

environment.systemPackages = with pkgs; [
    vim
    wget
    screen
    google-chrome
    openssh
    blackbox-terminal
    tailscale
    gnome.gnome-tweaks
    imagemagick
    git
    python311Full
    python311Packages.tkinter
    python311Packages.pip
    python311Packages.pipx

  ];

What am i missing?

17

I'm working on a python program, and i need to sync the results to an ipad as a todo list (with checkboxes)

I had been using google keep, and manually copying /pasting the data over from my cli based app. I will be out of the country for 2 weeks, so im updating my software to no longer being cli, and ideally syncing the final list to google keep or something similar, since someone else will be running the software. You know how normies get when they see a terminal window..

tried this googlekeepapi thing i found online, but the authentication was very complicated and i couldn't get it to work. There is no specific reason we need to use google keep, was just the first thing that came to mind when we set this system up, and it works well and is cloud based.

Do yall know of any service where i can programmatically generate checkbox lists, and sync them over the web?

I should note i do not have a server available to self host. could potentially spin something up locally with a raspberry pi, but would prefer not to have another potential point of failure.

5
submitted 1 year ago* (last edited 1 year ago) by dadarobot@lemmy.sdf.org to c/programming@lemmy.ml

I'm working on a python program, and i need to sync the results to an ipad as a todo list (with checkboxes)

I had been using google keep, and manually copying /pasting the data over from my cli based app.

I will be out of the country for 2 weeks, so im updating my software to no longer being cli, and ideally syncing the final list to google keep or something similar, since someone else will be running the software. You know how normies get when they see a terminal window...

I tried this googlekeepapi thing i found online, but the authentication was very complicated and i couldn't get it to work. There is no specific reason we need to use google keep, was just the first thing that came to mind when we set this system up, and it works well and is cloud based.

Do yall know of any service where i can programmatically generate checkbox lists, and sync them over the web?

I should note i do not have a server available to self host. I could potentially spin something up locally with a raspberry pi, but would prefer not to have another potential point of failure.

[-] dadarobot@lemmy.sdf.org 199 points 2 years ago

Trump's campaign sent him to McDonald's because of Harris having worked there in college. Trump has repeatedly accused his Democratic opponent of lying about working at McDonald's, in large part because the job wasn't listed on her later resume for a legal job.

I don't often get jobs with a resume, but is it uncommon to drop low level and irrelevant jobs from your resume?

I dont think the IT firm i'm applying to cares if i worked at walmart in high school....

[-] dadarobot@lemmy.sdf.org 98 points 2 years ago

I mean, while we still have so much car centric infrastructure in the states, they can be a useful transition.

I say this as someone who primarily commutes by bicycle btw. Public transit in my area is piss poor. Unpredictable buses, no light rail. Hell there aren't even sidewalks everywhere.

My wife recently got a fully electric car, and I support that move. She is not ready to go car free. But at least we are not necessarily burning fossil fuels to power trips to the grocery store. I think the closest power plants to us are nuclear and hydroelectric. Im sure there's a coal plant in the mix too tho.

Would never give elon a cent of our money though

22
Phil spectrum (lemmy.sdf.org)
[-] dadarobot@lemmy.sdf.org 61 points 2 years ago

Most of the biden haters i know on the left are upset about his support for israel. Harris has been much more critical of the genocide. We'll just have to see.

I didnt want to vote for biden, but was still going to vote blue no matter who. Im glad i dont have to vote for genocide anymore.

105
submitted 2 years ago* (last edited 2 years ago) by dadarobot@lemmy.sdf.org to c/linuxmemes@lemmy.world

Funny and informative

[-] dadarobot@lemmy.sdf.org 62 points 2 years ago

Everyone saying Android is completely missing the point. I mean yeah, it runs the linux kernel, but i feel like most of yall wouldn't call ChromeOS linux on the other hand.

The obvious connotations are privacy, choice, wayland/x11 support, a useful terminal, a rich foss ecosystem, and arch btw.

view more: next ›

dadarobot

0 post score
0 comment score
joined 2 years ago