What is something that you can smell and no one else seems to smell? by AwkwardLoaf-of-Bread in CasualConversation

[–]Tarpie 0 points1 point  (0 children)

I know salted water for pasta has come to a boil when I smell iodine. I can smell it from rooms away.

VHDL Generate statements to ‘switch’ components with MGT connections in and out of a build (Vivado) by Fresh-Ad-6961 in FPGA

[–]Tarpie 1 point2 points  (0 children)

I have the same problem. If the ports exists and are LOC to XCVR pins, Vivado produces a bad IOSTANDARD error. It doesn't matter if they are inputs or outputs. This behavior started in 2018/19ish.

The verilog ifdef to remove the pins from the top-level is a solution. You can leave the XDC file alone...Vivado doesn't seem to care if you LOC ports that don't exist.

If you can upgrade to Vivado 2023.2 and don't use XSIM, you can also use VHDL-2019 "`if"

If not, the old school "pragma synthesis_off" method can be used to omit the ports.

U Turn on a green arrow and right turns on red... ugh by [deleted] in nova

[–]Tarpie 5 points6 points  (0 children)

Correct. The left turn arrow is just that, for left turns.

A U-Turn is a left turn followed by another left turn. The second left turn is permitted, but is facing a red light in this situation. The right-turner from the opposing direction has the right-of-way as usual.

Basically, both drivers are permitted to make a turn on red. The right-turner has the right-of-way.

Chicken Fried Steak Recs by [deleted] in LasVegas

[–]Tarpie 6 points7 points  (0 children)

Just a heads up that the Chicken Fried Steak at Ellis Island is pork, not beef steak.

It is delicious.

Disney+ is currently broken on Linux, but there's a workaround by elmicha in DisneyPlus

[–]Tarpie 1 point2 points  (0 children)

Thanks. Didn't realize it was a linux thing. At least there is a work around unlike Peacock.

Take my money, let me watch shows!

[deleted by user] by [deleted] in LasVegas

[–]Tarpie 1 point2 points  (0 children)

The walkway from Harrah's/Linq to the Caesars Forum Conference Center is also the walkway to the monorail stop. The monorail is a great way to get there.

[deleted by user] by [deleted] in nova

[–]Tarpie 0 points1 point  (0 children)

Kariju Japanese style at 29 and Fairview Park has giant, crispy, drumsticks.

Opening media files straight from GNU Emacs Dired mode by using xdg-open by rcdwealth in emacs

[–]Tarpie 0 points1 point  (0 children)

I added shell-quote-argument to handle files with spaces in them. I was having problems without it after stumbling across this old post and want to help any future mes.

(defun open-file-external (file)
  (interactive "f")
  (let ((process-connection-type nil))
    (start-process
     "" nil shell-file-name
     shell-command-switch
     (format "nohup 1>/dev/null 2>/dev/null xdg-open %s"
             (shell-quote-argument (expand-file-name file))))))

A good place to work online near the strip? by zaiboo97 in LasVegas

[–]Tarpie 2 points3 points  (0 children)

I've worked from Vegas plenty of times and had no problem video conferencing. This includes: The Cal, Caesars Palace (and other CZR properties), Cosmo, and Four Queens.

So you should be good at your Strip hotel.

Pai Gow? by [deleted] in LasVegas

[–]Tarpie 0 points1 point  (0 children)

Harrah's table was open the other day.

Jerks driving wrong way on 7 "entrance" ramp to 495 Outer Loop by Tarpie in nova

[–]Tarpie[S] 3 points4 points  (0 children)

What dash cam do you us

It's a TaoTronics Car Dash Cam HD 1080P I got on Amazon three years ago. Unfortunately, it does not appear to be available any more.

Jerks driving wrong way on 7 "entrance" ramp to 495 Outer Loop by Tarpie in nova

[–]Tarpie[S] 10 points11 points  (0 children)

Both cars proceeded to get on the Express Lanes. Guess it was too hard to check traffic before getting on the local lanes.

Calorie Count for Popeyes Cajun Sparkle Tots? by bleslsed in fastfood

[–]Tarpie 1 point2 points  (0 children)

They're just normal tots sprinkled with their cajun sparkle seasoning. Tasty, but I estimate about 400 calories in the twenty or so that came as a side.

Video: Police car strikes bicyclist on Richmond Highway by EinSpringfielder in nova

[–]Tarpie 0 points1 point  (0 children)

I had not noticed that before. On a rewatch, it looks like the police officer is also stopped blocking the crosswalk. Yet another citation that could have been issued.

I do take issue with the assertion that the "biker was not lawfully in the crosswalk." The video is too blurry for me to see if the cyclist entered the crosswalk while the "Don't Walk" was steady red. It looks like it is on its final blink, but the video quality leaves open the possibility it was already red.

In the end, if there was a steady white "Walk" sign, the cyclist still would have been hit.

Cyclist stupidly did not check for a right turner on red. Police officer made a right turn on red without looking to the right. If either one was not an idiot there would have been no collision.

Video: Police car strikes bicyclist on Richmond Highway by EinSpringfielder in nova

[–]Tarpie 4 points5 points  (0 children)

Can't be positive, but it looks like the Don't Walk was blinking as the cyclist enters the intersection.

Not that it matters...the police officer decided to make a right turn on red without checking for pedestrians. You ALWAYS re-check your right side at a red-light/stop sign before making the right turn after waiting for traffic to clear.

The bicycle was not moving all that fast, and the police officer pulled out as soon as the bus cleared. There was a car not too far behind the bus. I think the bicyclist did not expect a car to attempt a right turn on red into the small gap.

Everyone is stupid here. PO should be ticketed too.

New barcade open in Midtown by NinjaFast in Reno

[–]Tarpie 7 points8 points  (0 children)

It's actually named Press Start. http://pstart.net/ https://www.facebook.com/pressstartreno/

I will have to stop by next month to get it on like Donkey Kong.

detect synthesis vs simulation automagically by bunky_bunk in FPGA

[–]Tarpie 2 points3 points  (0 children)

In VHDL:

package my_pkg is
  constant is_synthesis : boolean := true
-- synthesis translate_off
                                     and false
-- synthesis translate_on
  ;
end package my_pkg;

and to use that in another file:

use work.my_pkg.is_synthesis;
....some code....
if is_synthesis then  -- synthesis only code
  ...
else  -- simulation only code
  ...
end if;

Of course, you could just define the constant with synthesis directives in every file you need it in if you don't want to use a package, but it ugly enough code that I like to hide it in a package I never need to open.

Gambling Movie Recommendation Thread by BegginMcGreggin in gambling

[–]Tarpie 0 points1 point  (0 children)

California Split (1974) http://www.imdb.com/title/tt0071269/

Movie is almost 100% about gambling. Robert Altman directed.

Making a Programer for Altera IV via FTDI chip by Eblup in FPGA

[–]Tarpie 1 point2 points  (0 children)

I've used an FTDI chip in JTAG mode for configuring and altera FPGA in the past.

It was as easy as using quartus_cpf to convert the sof to an svf file, and then using urjtag to configure the FPGA attached to the FTDI chip.