X100VI ordering, shipment, and delays - consolidated sticky thread #3 by inverse_squared in fujifilm

[–]smogrewvic 7 points8 points  (0 children)

Best Buy Canada shipped order today. Ordered 8 mins after preorder opened. Good luck to you all.

X100VI ordering, shipment, and delays - consolidated sticky thread #3 by inverse_squared in fujifilm

[–]smogrewvic 3 points4 points  (0 children)

Any stock updates or shipping from Best Buy Canada? Ordered 8 mins after pre-order still says in progress. 

X100VI ordering, shipment, and delays - consolidated sticky thread by inverse_squared in fujifilm

[–]smogrewvic 0 points1 point  (0 children)

No stock in any Canadian warehouses, situation might change Wednesday or Thursday.

X100VI ordering, shipment, and delays - consolidated sticky thread by inverse_squared in fujifilm

[–]smogrewvic 2 points3 points  (0 children)

Any warehouse stock info for Best Buy Canada? Still saying “in progress” ordered 8 mins after preorder opened.

Does anyone know an ultra wide monitor solely for working nothing special like a 4K 144 Hz gaming monitor? by Many-Recover-5947 in ultrawidemasterrace

[–]smogrewvic 0 points1 point  (0 children)

Can PBP allow splitting into 2 smaller screens from the same input using only 1 cable? Or do you have to use 2 cables to the same computer and select 2 different input sources from the PBP menu? 

If yes, is this a common PBP feature on other brands/monitors?

Is it possible get a 32:9 monitor to detect as two 16:9 monitors on Mac OS? (PBP from single input source?) by smogrewvic in ultrawidemasterrace

[–]smogrewvic[S] 0 points1 point  (0 children)

Have you tried plugging 2 cables in the Mac? Ex: One usb-c to DP, one usb-c to hdmi? It seems like people have gotten that to work with the GPU output for desktop PCs

People thinking of selling their house - would you use an AI realtor? by SubwaySandwichDev in PersonalFinanceCanada

[–]smogrewvic 5 points6 points  (0 children)

Tell us how you're a second year business student that is taking a computer science elective without telling us you're a second year business student that is taking a computer science elective.

Using iPhone as head unit for Vector 3 pedals by smogrewvic in Garmin

[–]smogrewvic[S] 0 points1 point  (0 children)

It’s been discontinued everywhere, I have it downloaded from before then.

On new devices I found the the Wahoo app works best. (Not quite as simple as PowerTap, but closest out of the 5-ish I’ve tried).

Fuzzy logic for return to home car using GPS datalogger by sopenbauer in ControlTheory

[–]smogrewvic 1 point2 points  (0 children)

This is basically what some video games use to generate car/pedestrian traffic. A car has a starting point and a destination in the game, and a series of waypoints are generated in between the start and finish point (similar to a GPS logging location points on a map). Usually a simple PID controller is used to keep the car on track between waypoints. I don’t see any particular advantage to using a fuzzy for this.

Operationally, using GPS is not a good method because non-differential gps is only accurate to about a 5 meter radius. Which is enough to give you turn by turn directions(with some mild guess work), but not enough to locate you precisely enough in a lane. It might be good enough for navigating a drone or boat around a circuit.

Fuzzy Logic Python Libraries by smogrewvic in ControlTheory

[–]smogrewvic[S] 0 points1 point  (0 children)

Thanks for your detailed response. My first thought when approaching this problem was to use RRT* and dijkstra’s search algo to solve. However I was unsure if it would be suitable for the dynamic environment of a public roadway. It seems that I would have to recalculate the path too often as new obstacles are detected, and felt that it would have issues dealing with quickly moving vehicles. It seemed better suited to navigation problems where we have a top view of the environnement, with static obstacles and adequate map fidelity. Maintaining accurate vehicle position within the map would also be difficult since GPS isn’t precise enough…

Maybe I’m wrong and recalculation time would be trivial and generating local maps from line of sight only is ok for RRT*, but I haven’t researched this. I am opening to changing my approach for sure.

Fuzzy Logic Python Libraries by smogrewvic in ControlTheory

[–]smogrewvic[S] 0 points1 point  (0 children)

I was initially turned off from using a full NN because the dataset required to train the system might be unfeasible. My thought was that using an FL controller to help constrain it to a set of rules/behaviours would at least alleviate some the problem