×
Login Register an account
Top Submissions Explore Upgoat Search Random Subverse Random Post Colorize! Site Rules


chrimony
Member for: 3.1 years

scp: 1191 (+1321/-130)
ccp: 6486 (+8544/-2058)
votes given: 17009 (+11602/-5407)
score: 7677





Trophies

Owner of:
AskUpgoat2, TellUpgoat2, WhiteCulture, FlattardClassroom,
Mod of:
8
Raytracing the April 8th, 2024 solar eclipse     (files.catbox.moe)

submitted by chrimony to FlattardClassroom 1 week ago

10 comments

Inspired by: [Simulating the solar system with 70 lines of Python code](https://chongchonghe.github.io/computational-science/python/animation/2022/08/25/python-solar-system.html)

and: [Introduction to raytracing](https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-ray-tracing/how-does-it-work.html)

I modified the [code](https://github.com/scratchapixel/scratchapixel-code/tree/main/introduction-to-ray-tracing) from the above article to raytrace the solar eclipse by simulating the motion of Earth/Moon/Sun system, and casting light from the Sun onto the Earth.

Inputs to program:
o Position, velocity, mass, and radius of E/M/S on April 8th, 14:00 UTC.
o Rotation rate of Earth.
o Axial tilt of Earth.
o Date and time of Spring Equinox.
o Force = mass x acceleration
o Force = Gravity-constant x mass1 x mass2 / radius^2
o "Blue Marble" map from https://ian.macky.net/pat/bmarbl/index.html

Start position and velocity data was from: https://ssd.jpl.nasa.gov/horizons/

After initialization, position and velocity data was updated every second for 9 hours using the above Newton force laws. Images were recorded once a minute. Final video was compiled at 60 frames per second, yielding one hour of real time per second of video.

You can compare the raytraced path with this version: https://nso.edu/for-public/eclipse-map-2024/
31
Nightmare fuel     (files.catbox.moe)

submitted by chrimony to AI 1 week ago

3 comments

Full video: https://www.youtube.com/watch?v=pal-dMJFU6Q
-11
Jesus Christ Never Existed     (www.youtube.com)

submitted by chrimony to religion 1 month ago

18 comments

25
Criticial library (xz/liblzma) backdoored in Linux, allows remote takeover     (www.bleepingcomputer.com)

submitted by chrimony to whatever 1 month ago

10 comments

GitHub project was compromised. Mainly a problem if you use a "rolling release" or bleeding edge Linux distro, as the attack occurred in February.

Here's another link with more details: https://lcamtuf.substack.com/p/technologist-vs-spy-the-xz-backdoor
0
Who is more pathetic? Comic book nerds, or Christcucks that devote their life to (((scripture)))?     (AskUpgoat)

submitted by chrimony to AskUpgoat 1 month ago

21 comments

-3
When fkH got outed, and when "dirtywhiteboy" created his account     (Cohencidence)

submitted by chrimony to Cohencidence 1 month ago

13 comments

The dates when fkH got exposed, and "dirtywhiteboy"'s account creation:

fightknightHERO -1 points 2.1 years ago
https://www.upgoat.net/viewpost?postid=62055578dd3f1&commentid=62058cda455fa

Member for: 2.2 years
https://www.upgoat.net/profile?user=dirtywhiteboy

Strange cohencidence! And note this was a one-shot on my part. I never tried to investigate any other account as an fkH alt. The pattern of comments seemed oddly familiar, and then it clicked.

More:
> https://www.upgoat.net/viewpost?postid=653ee86cb4d4b&commentid=653eec5253e6a
> heres where it all started with you. crying like the biggest mega bitch in the world because i criticized you for wanting more censorship on this forum.

Ah, I had actually forgotten the context that sparked my interest. Just another "cohencidence", then, that you defended a "fellow White" kike being able to create a new account and spam the board with zero effort.

How's the weather in Israel?
1
Stars trails and parallax (doing math flattards can't)     (FlattardClassroom)

submitted by chrimony to FlattardClassroom 1 month ago

20 comments

Preamble
--

Today's topic is a response to @McNasty's challenge[1]:

"chrimony claims that he can calculate exactly how far a star at 500 light years away should appear to move throughout the night"

But the real origins of the question are the star trails that can be seen from Australia[2]. Two poles on a spherical Earth, one pole in Flattard Land.

McNasty tries to cope with his failure to explain half the night sky by claiming[3] because we don't see parallax in star trails, then "If the stars show no movement at all relative to each other, then it means those stars are at the same exact distance from the observer. So basic observation and by the laws of perception, the stars in the night sky are a blanket."

Whatever the fuck it means for the stars to be a "blanket".

My response to this is, "If the perceived parallax for a star is 0, then 0/2 = 0". Meaning a star twice as far away will show no parallax if we can't detect parallax in the closer star.

The closest star is Proxima Centauri, at about 4 light years away. If we can't detect parallax for that star in a 12-hour night sky star trail, then we sure as fuck won't be able to see it for a star 500 light years away. So to give the flattard every advantage, I'm going to calculate the parallax for a star 1 light year away over a 12-hour period.

The Math
--

# Right-angle trigonometry.
# Do flattards know SohCahToa?
parallax angle = arctan( displacement / distance )

# Distance to the star.
# Flattards ignore how big this number is.
distance = 1 light year = 5.88 x 10^12 miles

# The lateral motion of an observer on Earth.
displacement = orbit displacement + rotation displacement in 12 hours

# The Earth spins.
rotation displacement = diameter Earth = 7.93 x 10^3 miles

# How far, in degrees, the Earth moved along its orbit.
# It moves 360° in 365 days.
# 360°/365 in one day.
# And 360°/(365x2) in half a day.
orbit displacement angle = 360° / (365 x 2) = 0.493°

# Convert orbital degrees to lateral motion.
# Some more right-angle trigonometry.
# Radius of Earth's orbit = 93 million miles.
orbit displacement = sin(0.493°) x 93.0 x 10^6 miles = 8.00 x 10^5 miles

# Total displacement (orbit + rotation).
# Note the orbital displacement dominates the displacement due to Earth's rotation.
displacement = 8.00 x 10^5 miles + 7.93 x 10^3 miles = 8.08 x 10^5 miles

# Final calculation!
parallax angle = arctan( displacement / distance )
= arctan( 8.08 x 10^5 miles / 5.88 x 10^12 miles )
= 7.87 x 10^-6°

Or in English terms, approximately 8 millionths of a degree!

Conclusion
--

I don't care how nice the smart phone on your camera is, you aren't going to see any parallax on a 12-hour time lapse video of the night sky taken from your backyard.

Citations:
--
[1]: https://www.upgoat.net/viewpost?postid=65f9e88d087db
[2]: https://www.youtube.com/watch?v=56ZMZtq0qfY
[3]: https://www.upgoat.net/viewpost?postid=65f3085348086
3
Compasses and magnets     (files.catbox.moe)

submitted by chrimony to FlattardClassroom 2 months ago

15 comments

Hello, Upgoat and curious flattards! In this inaugural post, we answer @BushChuck's question[1]:

"Care to explain why a compass still points North in australia?"

In the linked video clip[2], we see the compass always points North, even when in "Australia". I hope you found this educational!

References:
[1]: https://www.upgoat.net/viewpost?postid=65dd6c4cb9fe2#comment_65de1268e8e73
[2]: Full video: https://www.youtube.com/watch?v=NWUgK8W-4JM
4
1,000+ carat quartz gem     (files.catbox.moe)

submitted by chrimony to WhiteCulture 2 months ago

0 comments

Full video of gem cutting: https://www.youtube.com/watch?v=xr-UNlOWS3Y
6
Catbox Poll     (AskUpgoat2)

submitted by chrimony to AskUpgoat2 2 months ago

11 comments

Can you access https://catbox.moe/?
32
Chinese invasion of southern border     (files.catbox.moe)

submitted by chrimony to ClownWorld 2 months ago

7 comments

4
Why can't UncleDoug make polls?     (AskUpgoat2)

submitted by chrimony to AskUpgoat2 3 months ago

5 comments

35
So you wanna buy a $50 sword...     (files.catbox.moe)

submitted by chrimony to videos 3 months ago

29 comments

6
Britbong nanny cop tells Englishman to stop filming Chinese nationalists in public square     (www.bitchute.com)

submitted by chrimony to ClownWorld 3 months ago

2 comments

English gentleman is filming a piano performance. Chinese people waving Communist-China flags, who are filming their own thing, come over and tell him they can't be filmed. Concerned grandma copper comes over and sides with Chinese, but wants the Englishmen to turn his camera off before she can give him proper instructions.

Truly bizarre state of affairs, but that's 🤡🌎 for you.
1
Do you believe that White men have walked on the Moon? (yes/no version)     (AskUpgoat2)

submitted by chrimony to AskUpgoat2 3 months ago

34 comments

3
Slay queen mayor of town with 20,000 population pulls in $300k per year     (files.catbox.moe)

submitted by chrimony to Niggers 3 months ago

0 comments

Video clip sped up to Ben Shapiro levels.

Full vid at: https://www.bitchute.com/video/u9PAB6KEHGdE/
5
Bluetooth exploit allows remote takeover     (odysee.com)

submitted by chrimony to technology 4 months ago

3 comments

More info:

https://nvd.nist.gov/vuln/detail/CVE-2023-45866

"Base Score: 8.8 HIGH"

"Bluetooth HID Hosts in BlueZ may permit an unauthenticated Peripheral role HID Device to initiate and establish an encrypted connection, and accept HID keyboard reports, potentially permitting injection of HID messages when no user interaction has occurred in the Central role to authorize such access. An example affected package is bluez 5.64-0ubuntu1 in Ubuntu 22.04LTS. NOTE: in some cases, a CVE-2020-0556 mitigation would have already addressed this Bluetooth HID Hosts issue."

https://www.thefinalhop.com/understanding-cve-2023-45866-a-critical-bluetooth-security-flaw/

"To address CVE-2023-45866, Google has released patches for Android devices, specifically for versions 11 through 14. These updates are crucial for safeguarding devices against potential exploits. Similarly, while the issue was addressed in Linux in 2020, only ChromeOS among the Linux-based operating systems enabled the fix by default. Other distributions like Ubuntu, Debian, Fedora, Gentoo, Arch, and Alpine did not, leaving them vulnerable​​."

"The vulnerability also affects macOS and iOS devices, especially when a Magic Keyboard is paired. Apple, having been notified by Newlin in August, confirmed the report but has yet to share a timeline for patching the vulnerability."
26
IBM's Pajeet CEO caught on tape in anti-Whte hiring practices     (www.bitchute.com)

submitted by chrimony to whatever 4 months ago

3 comments

Video released by James O'Keefe. Zero Hedge article covering the same:

https://www.zerohedge.com/political/ibm-slapped-federal-civil-rights-complaint-after-racist-ceos-obviously-illegal-hiring
11
ADL's Greenblatt now mocks "safe spaces" and "oppression olympics"     (www.bitchute.com)

submitted by chrimony to whatever 5 months ago

2 comments

Gee, I wonder what changed?
2
How Neural Networks Learned to Talk | ChatGPT: A 30 Year History     (www.youtube.com)

submitted by chrimony to technology 5 months ago

1 comments

The best explanation I've seen.
5
DIE and air traffic controllers     (www.bitchute.com)

submitted by chrimony to whatever 5 months ago

1 comments

Summary: Because blacks under-performed on the test for air traffic controllers, a phony test was put in place and Whites and Asians were discriminated against. Now there are too few air traffic controllers, and the number of close calls/near misses has doubled over the past decade.
6
Fixing infinte captca on archive.today (Firefox browswer)     (TellUpgoat2)

submitted by chrimony to TellUpgoat2 5 months ago

12 comments

For some reason DNS over HTTPS breaks the site. You can add exceptions for archive.today to fix it:

Settings->Privacy & Security->(scroll to DNS over HTTPS)->Manage Exceptions...

Add:
--
archive.is
archive.ph
archive.today
32
How to help     (files.catbox.moe)

submitted by chrimony to funny 5 months ago

26 comments

18
Trans faggot knocks girls teeth out in field hockey     (files.catbox.moe)

submitted by chrimony to ClownWorld 5 months ago

18 comments

Story: https://www.mrctv.org/blog/brittany-m-hughes/trans-field-hockey-player-reportedly-knocks-out-female-rivals-teeth

Twatter link with video: https://twitter.com/Riley_Gaines_/status/1720441810479165595
4
@Love240 receives a new disciple     (files.catbox.moe)

submitted by chrimony to ShitpostLitterBox 6 months ago

8 comments

Do you believe?