2025.01.22 15:49 Then_Marionberry_259 Help identifying engraving on a silver jug (English 1900s)
submitted by Then_Marionberry_259 to MetalsOnReddit [link] [comments] |
2025.01.22 15:49 Crafty_Transition_27 FRER CD unknown 8dpt FET
I think I’m giving up on the wondfo tests. Are they always this awful? I’m getting a clear progression on the FRER tests I think. Each of these are 5dpt, 7dpt, and 8dpt I think. Hard to keep track of all the tests on my counter when I don’t take the time to find a good pen to mark them 🤪
submitted by Crafty_Transition_27 to TFABLinePorn [link] [comments]
2025.01.22 15:49 Intentionality__ red gym (espeon) 39.24867 N, 84.36331 W
the "sownd investor pig"
been close to a month now
submitted by Intentionality__ to PokemonGoHitlist [link] [comments]
2025.01.22 15:49 Jakebodyboy What is this?
This post contains content not supported on old Reddit. Click here to view the full post
submitted by Jakebodyboy to Pixelary [link] [comments]
2025.01.22 15:49 _ak Dürüm von Imren Grill, Berlin Ottostr., "nur Zwiebeln und Tomaten", €8
submitted by _ak to doener [link] [comments] |
2025.01.22 15:49 showyourskills89 Shipwreck Beach(no arrows)
I’ve been playing on my steam deck and on the shipwreck beach and in order to get across I need arrows and can’t find any. Afraid I’m going have to restart from the way beginning and come so far. I need help
submitted by showyourskills89 to tombraider2013 [link] [comments]
2025.01.22 15:49 TrveKeev PC?
Size 34 submitted by TrveKeev to TrueReligionJeans [link] [comments] |
2025.01.22 15:49 OrganicRope7841 For 3D Games: Codes so the public can use the Coordinates Copier & Picker for RoseBud AI
Goal: Make it easier for Game Developers to pick and choose where items and characters will be placed.
How to input: Just Import this whole post via copy/paste into the message bar of rosebud AI and she'll add it for you, or add the code yourself.
Let's create the coordinates picker: Here's what we'll do:
<<<<<<< HEAD
const parentDiv = document.getElementById('renderDiv');
let canvas = document.getElementById('threeRenderCanvas');
=======
const parentDiv = document.getElementById('renderDiv');
// Create position picker button
const positionPickerButton = document.createElement('button');
positionPickerButton.textContent = 'Choose Position';
positionPickerButton.style.position = 'absolute';
positionPickerButton.style.top
= '10px';
positionPickerButton.style.left = '10px';
positionPickerButton.style.zIndex = '1000';
positionPickerButton.style.padding = '8px 16px';
positionPickerButton.style.backgroundColor = '#4CAF50';
positionPickerButton.style.color = 'white';
positionPickerButton.style.border = 'none';
positionPickerButton.style.borderRadius = '4px';
positionPickerButton.style.cursor = 'pointer';
parentDiv.appendChild(positionPickerButton);
let canvas = document.getElementById('threeRenderCanvas');
>>>>>>> updated
<<<<<<< HEAD
const scene = new THREE.Scene();
const world = new CANNON.World();
=======
const scene = new THREE.Scene();
const world = new CANNON.World();
// Position picker state
let isPositionPickerActive = false;
let mousePosition = new THREE.Vector2();
const raycaster = new THREE.Raycaster();
>>>>>>> updated
<<<<<<< HEAD
window.addEventListener('resize', onWindowResize);
const resizeObserver = new ResizeObserver(onWindowResize);
resizeObserver.observe(parentDiv);
=======
window.addEventListener('resize', onWindowResize);
const resizeObserver = new ResizeObserver(onWindowResize);
resizeObserver.observe(parentDiv);
// Position picker event listeners
positionPickerButton.addEventListener('click', () => {
isPositionPickerActive = !isPositionPickerActive;
positionPickerButton.style.backgroundColor = isPositionPickerActive ? '#f44336' : '#4CAF50';
positionPickerButton.textContent = isPositionPickerActive ? 'Cancel Position' : 'Choose Position';
canvas.style.cursor = isPositionPickerActive ? 'crosshair' : 'default';
});
canvas.addEventListener('click', (event) => {
if (!isPositionPickerActive || !character || !characterBody) return;
// Calculate mouse position in normalized device coordinates (-1 to +1)
const rect = canvas.getBoundingClientRect();
mousePosition.x = ((event.clientX - rect.left) / rect.width) * 2 - 1;
mousePosition.y = -((event.clientY - rect.top) / rect.height) * 2 + 1;
// Update the picking ray with the camera and mouse position
raycaster.setFromCamera(mousePosition, camera);
// Calculate objects intersecting the picking ray
const intersects = raycaster.intersectObjects([terrain]);
if (intersects.length > 0) {
const point = intersects[0].point;
// Add a small offset to prevent clipping
point.y += characterConfig.height / 2;
// Update character position
characterBody.position.copy(point);
characterBody.velocity.set(0, 0, 0);
character.position.copy(point);
// Reset position picker state
isPositionPickerActive = false;
positionPickerButton.style.backgroundColor = '#4CAF50';
positionPickerButton.textContent = 'Choose Position';
canvas.style.cursor = 'default';
}
});
>>>>>>> updated
<<<<<<< HEAD
positionPickerButton.textContent = 'Choose Position';
positionPickerButton.style.position = 'absolute';
=======
positionPickerButton.textContent = 'Choose Position';
positionPickerButton.style.position = 'absolute';
// Create copy coordinates button
const copyPositionButton = document.createElement('button');
copyPositionButton.textContent = 'Copy Position';
copyPositionButton.style.position = 'absolute';
copyPositionButton.style.top
= '10px';
copyPositionButton.style.left = '150px';
copyPositionButton.style.padding = '8px 16px';
copyPositionButton.style.backgroundColor = '#2196F3';
copyPositionButton.style.color = 'white';
copyPositionButton.style.border = 'none';
copyPositionButton.style.borderRadius = '4px';
copyPositionButton.style.cursor = 'pointer';
copyPositionButton.style.zIndex = '1000';
parentDiv.appendChild(copyPositionButton);
>>>>>>> updated
___________________ <<<<<<< HEAD
});
// Start animation
=======
});
// Copy position to clipboard function
function copyPositionToClipboard() {
if (!character) return;
const position = character.position;
const coordinateString = \
${position.x.toFixed(2)}, ${position.y.toFixed(2)}, ${position.z.toFixed(2)}`;`navigator.clipboard.writeText(coordinateString).then(() => {
// Provide visual feedback
const originalText = copyPositionButton.textContent;
const originalColor = copyPositionButton.style.backgroundColor;
copyPositionButton.textContent = 'Copied!';
copyPositionButton.style.backgroundColor = '#4CAF50';
setTimeout(() => {
copyPositionButton.textContent = originalText;
copyPositionButton.style.backgroundColor = originalColor;
}, 1000);
}).catch(err => {
console.error('Failed to copy coordinates:', err);
copyPositionButton.textContent = 'Failed to copy';
copyPositionButton.style.backgroundColor = '#f44336';
setTimeout(() => {
copyPositionButton.textContent = 'Copy Position';
copyPositionButton.style.backgroundColor = '#2196F3';
}, 1000);
});
}
// Add click event listener for copy button
copyPositionButton.addEventListener('click', copyPositionToClipboard);
// Start animation
>>>>>>> updated
2025.01.22 15:49 Comfortable_Cat4983 Stay Safe. Hamming My Ppl For 80🤡 (addy below)
submitted by Comfortable_Cat4983 to Scam_vendors [link] [comments] |
2025.01.22 15:49 Beautiful-Onion794 Best Buy pick up I just did for some earbuds.
submitted by Beautiful-Onion794 to InstacartShoppers [link] [comments] |
2025.01.22 15:49 TaleofWoes What does my dream brand loyalty vehicles say about me?
• 2013 - ‘14 Ford Raptor • 2013 - ‘18 Ford Fiesta ST • 2014 - ‘23 Ford Transit Connect Passenger • 2003 - ‘04 Ford Mustang SVT Terminator Cobra • 2016 - ‘18 Ford Focus RS submitted by TaleofWoes to regularcarreviews [link] [comments] |
2025.01.22 15:49 mysterious_quartz Can you guys share pictures of your used night guards?
I know this may seem weird but I’ve been wearing a nightguard for six months now after my dentist told me I grind my teeth. I remember doing it a lot when I was a kid but since growing up I really didnt think I did it, but my dentist made me second guess myself.
Now it’s been a while and I have definitely made some impressions on my nightguard, but I really can’t tell if it’s from just my teeth resting on it or if I’m actually grinding it. To top it off ever since started wearing it (I got one of those OTC ones), I get random tooth pain here and there.
Now I am wondering if I should be wearing one at all. So I wanted to see what everyone’s used nightguards look like to see if it’s anything like mine, because it’s sure hard as hell to find pictures online
submitted by mysterious_quartz to bruxism [link] [comments]
2025.01.22 15:49 Worried-Lettuce607 18 skinny TN
I’d probably want to get and I only really have boxer briefs
submitted by Worried-Lettuce607 to WedgieMeetFinder [link] [comments]
2025.01.22 15:49 SK00GS Advice on when to pull the trigger?
I have been wanting a new car since around December 2023 and put together a plan/budget in May 2024. It’s now January 2025 (my planned purchase month) and I can’t seem to pull the trigger on actually buying the car. This would be the first car I have ever purchased as my current car I bought from my dad in high school.
I am looking to buy a Toyota Tacoma with the following requirements: 2019+, <85k mileage, 4wd or awd, <$32k.
Currently I have the full 32k saved up but am thinking about financing so I don’t use the majority of my savings at once. Currently making around 65k/year.
I have found a few good looking offers on carmax, Facebook marketplace, cars.com, etc… but can’t seem to pull the trigger on actually buying.
Questions: - Do you guys think now is a good time or should I still wait it out until I have more savings or a higher salary?
2025.01.22 15:49 PrimaryCrew6008 Pcos with insulin resistance
For my PCOS girlies. How did you lose weight with the help of semaglutide? I can't do Keto because I'm not the biggest fan of meat. What did you eat? Did you work out? How long did it take for you to lose weight? Did you cut out any foods? Did you fast? Sorry for all the questions. I need help, please! I just want to be healthier!!!
submitted by PrimaryCrew6008 to Semaglutide [link] [comments]
2025.01.22 15:49 Embarrassed_Abroad70 2025 Farmers Insurance Open picks, field, odds, predictions: Golf expert likes Keegan Bradley at Torrey Pines | Live Streams, Free Score & Result, Online Update, TV Channel Schedule and More 🔴
submitted by Embarrassed_Abroad70 to fotbals [link] [comments] |
2025.01.22 15:49 Legitimate_Owl2584 Homens, o que fazem vocês desejarem uma mulher?
Homens, o que fazem vocês desejarem uma mulher?
submitted by Legitimate_Owl2584 to relacionamentos [link] [comments]
2025.01.22 15:49 justin_quinnn Joe Starkey: Are the Kansas City Chiefs the most hated team in American sports history?
submitted by justin_quinnn to Sports_News_Hub [link] [comments] |
2025.01.22 15:49 vilomstren Home Depot Appliance Discount Code
Follow this link for Home Depot Appliance Discount Code. Access the latest deals and promotions by visiting the link, featuring a constantly updated list of coupons, promo codes, and discounts.
submitted by vilomstren to MementoOffers [link] [comments]
2025.01.22 15:49 Reptaaaaaaar Warning about the dangers of pulling an all nighter to try and reset your sleep schedule
I decided to stay awake all day yesterday after not sleeping the previous night to try and reset my sleep schedule. I managed to stay awake until 9pm last night before finally passing out. I woke up around 3am really needing to pee, so I went to the bathroom but I was still so tired I just sat down on the toilet to pee. As soon as I started though, I immediately woke up and realized I was actually sitting on the edge of my bed pissing all across the carpet.
Warning to everyone, you might make your who room smell like piss if you do this.
submitted by Reptaaaaaaar to GetOutOfBed [link] [comments]
2025.01.22 15:49 Defiant-Front-8085 Trades?
Looking to finish set 4 and 5. I included all of my extras! submitted by Defiant-Front-8085 to Monopoly_GO [link] [comments] |
2025.01.22 15:49 iridescentghxst Dream doll acquired ✨ Picture Day Frankie
submitted by iridescentghxst to MonsterHigh [link] [comments] |
2025.01.22 15:49 Own-Tomato-1791 Blacked out 65in tv
hi, I need help figuring out why my TV won’t operate is stuck on a half screen.
I took off the back piece. What do I need to do now? How do I repair it?
submitted by Own-Tomato-1791 to Hisense [link] [comments]
2025.01.22 15:49 Then_Marionberry_259 SDC's Male Growth Pills got a featured spotlight on Fox Business :D
submitted by Then_Marionberry_259 to MetalsOnReddit [link] [comments] |
2025.01.22 15:49 y--a--s--h Apna riverfront shi chez hai 😁
submitted by y--a--s--h to kota [link] [comments]