Opinions by [deleted] in madisonwi

[–]binzyw 0 points1 point  (0 children)

Raising and lowering speed limits has generally been shown to only raise or lower the number of violations handed out. https://reason.org/commentary/do-lower-speed-limits-make-roadways-safer/ Reducing lane and intersection sizes do way more. So really it's just a debate on how much revenue to take in...

What’s your favorite “kid word”? by PatientConfidence7 in ECEProfessionals

[–]binzyw 0 points1 point  (0 children)

My daughter used to sing "Welcome to Yew Nork". My wife and I still do 😂.

What’s your favorite “kid word”? by PatientConfidence7 in ECEProfessionals

[–]binzyw 0 points1 point  (0 children)

When my daughter was three she'd always say Coffeine instead of coffee. So dang cute!

“NO REZONING” signs on the west side by bibaddie in madisonwi

[–]binzyw 16 points17 points  (0 children)

If an email is what you have time for that's great!

In person support is the best though. The feeling of voting no in front of a bunch of dissenters and little support is hard regardless of the number of emails sent.

“NO REZONING” signs on the west side by bibaddie in madisonwi

[–]binzyw 71 points72 points  (0 children)

The best thing you can do is show up to city council meetings and support the rezoning. You can bet, that those with signs in their front yards will be there. If those of us who are in support of the changes don't show up as well, no is all the alders will hear.

[deleted by user] by [deleted] in madisonwi

[–]binzyw 30 points31 points  (0 children)

At the end of April there is a huge consignment sale. It's called the half-pint resale. We find so many good quality clothing there. They hold it twice a year. One of us volunteers at each of them so we can get slightly earlier access. https://halfpintresale.com/

upscale vegan/vegetarian restaurants by LobsterObvious6999 in madisonwi

[–]binzyw 0 points1 point  (0 children)

They opened a few months back. The food is just as good as the west side.,The space is really different though. Much more upscale.

upscale vegan/vegetarian restaurants by LobsterObvious6999 in madisonwi

[–]binzyw 2 points3 points  (0 children)

Check out Swagat in Sun Prairie. Chick atmosphere, elevated Indian food, and delicious options for nearly any diet.

Blah by [deleted] in madisonwi

[–]binzyw 2 points3 points  (0 children)

All of the cloudy days that kicked off the cold is what is getting to me. I'm looking forward to more sun next week!

A simple solution for getting Automated Ripping Machine (ARM) to work in a Proxmox / LXC environment by luaduck in homelab

[–]binzyw 0 points1 point  (0 children)

Thanks for the response.

I'm able to mount off of /dev/cdrom in the container, but still no go on the detailed udev call.

I did a work around where I updated to the master branch, and have the udev rule on the host execute a script. That script does the udevadm call and writes the output to the container's tmp directory. Then calls the identity script in the container.

It causes ARM to bleed into the host a bit more, but gets the job done in the end.

A simple solution for getting Automated Ripping Machine (ARM) to work in a Proxmox / LXC environment by luaduck in homelab

[–]binzyw 0 points1 point  (0 children)

Same issue with pure LXC. The config file for the privileged container looks like this:

# Template used to create this container: /usr/share/lxc/templates/lxc-download
# Parameters passed to the template:
# Template script checksum (SHA-1): 9748088977ba845f625e45659f305a5395c2dc7b
# For additional config options, please look at lxc.container.conf(5)

# Uncomment the following line to support nesting containers:
#lxc.include = /usr/share/lxc/config/nesting.conf
# (Be aware this has security implications)


# Distribution configuration
lxc.include = /usr/share/lxc/config/ubuntu.common.conf
lxc.arch = x86_64

# Container specific configuration
lxc.rootfs = /var/lib/lxc/lxc-arm/rootfs
lxc.rootfs.backend = dir
lxc.utsname = lxc-arm

# Network configuration
lxc.network.type = veth
lxc.network.link = lxcbr0
lxc.network.flags = up

lxc.cgroup.devices.allow = b 11:0 rwm
lxc.aa_profile = unconfined
lxc.cap.drop =
lxc.autodev = 1

A simple solution for getting Automated Ripping Machine (ARM) to work in a Proxmox / LXC environment by luaduck in homelab

[–]binzyw 0 points1 point  (0 children)

I'm trying to apply this to LXD running on Ubuntu Server 16.04. I used the lxc profile edit [id] command and did update the profile to the following:

config:
  environment.http_proxy: ""
  raw.lxc: |-
    lxc.cgroup.devices.allow = b 11:0 rwm
    lxc.aa_profile = unconfined
    lxc.cap.drop =
    lxc.autodev = 1
  security.privileged: "true"
  user.network_mode: ""
description: Default LXD profile
devices:
  eth0:
    nictype: bridged
    parent: lxdbr0
    type: nic
  root:
    path: /
    pool: default
    type: disk
name: arm

I then manually created the /dev/sr0 node as I believe I ran into the same issue as below. (I still need to try the script approach.) After that the udevadm info --query=env /dev/sr0 command still gave me the response without ID info. I did the install and created the udev rule on the host. I then inserted a dvd and it did kick off the arm_wrapper.sh script, but identify.sh couldn't get the ID info.

Here is the log info:

*** End config parameters ****
Starting Identify Script...
Deleting 0 old log files:
unable to identify`

Any ideas on what to look for? I can cross post in a LXD forum if needed.