2024.11.28 00:50 FrankV144 ¿Que accidentes les han pasado en el gym?
Pues hoy fui resalado y me pasó que en la prensa de pierna,en la tercera serie,de un momento a otro el espaldar ajustable,se bajó solo,nunca me había pasado eso,siempre estoy prevenido es de que en las últimas repeticiones no vaya a llegar al fallo y después no la pueda asegurar y pues hoy me pasó lo que no imágenes disque el espaldar no sé cómo putas paso,el caso es que hasta me asuste por el tema de una lesión o algo
submitted by FrankV144 to Colombia [link] [comments]
2024.11.28 00:49 CarnivorousVegan What is this?
This post contains content not supported on old Reddit. Click here to view the full post
submitted by CarnivorousVegan to Pixelary [link] [comments]
2024.11.28 00:49 Waste_Housing7031 Need $20 will pay back $25 on 11/29
I just need a couple bucks to throw gas into my car for work until Friday.
submitted by Waste_Housing7031 to borrowloan [link] [comments]
2024.11.28 00:49 Q50RS400 If these gyats could bend over I’d clap
submitted by Q50RS400 to MaisonMargiela [link] [comments] |
2024.11.28 00:49 cant_hold_me Interesting interaction with Xaku
Idk if this is common knowledge or not but I discovered an interesting interaction when using Xaku last night.
I had Burston prime equipped with the augment mod, Gilded Truth, and noticed that when casting Xaku’s 2, Grasp of Lohk, it would trigger the “Truth” effect from the mod, giving my floating armaments gas damage. You don’t need to fire Burston at all, just need to have the mod equipped, which I thought was neat. I imagine it would also trigger the other syndicate effects but don’t have those mods to test. Apologies if this is common knowledge but I thought it was a pretty neat interaction. It must be a weapon damage thing, wonder how we can abuse it in other ways.
submitted by cant_hold_me to Warframe [link] [comments]
2024.11.28 00:49 Flirtleby More details about the runes on Agatha's coat from Daniel Selon
submitted by Flirtleby to AgathaAllAlong [link] [comments] |
2024.11.28 00:49 Wide-Meaning4356 Melee and Ranged options in a souls-like
I'm working on a combat system where players can choose between melee and ranged weapons, but I'm undecided with implementing a lock-on mechanic. My main concern is that if I apply the usual lock-on mechanic from souls-like to ranged weapons, it leads to auto-aim, which I don't want. I haven’t tested how a lock-on auto aim mechanic would work with ranged builds in my game, but I’m still trying to figure out a better approach.
One idea I considered was restricting the lock-on mechanic to melee weapons only, and completely removing it for ranged weapons. However, this can feel inconsistent. It would feel strange for players to be able to lock on to enemies with melee weapons, but then switch to a ranged weapon and have a completely different aiming system. Any suggestions?
For more context on the game itself, it is set in a time-convoluted world where multiple eras and themes collide, meaning equipment range from medieval fantasy to sci-fi. Players can level up three skill trees: Melee, Ranged, and Utility, each having a unique playstyle. Players can choose to master one skill tree or mix 2 or all 3, but they won’t receive the major upgrades they would get from mastering one skill tree.
Thanks in advance everyone!! have a beautiful day.
submitted by Wide-Meaning4356 to gamedesign [link] [comments]
2024.11.28 00:49 DangerousService Looking for a subreddit to find a post
I’m looking for a subreddit to find a post. My friend and I have been playing this game seeing if I can find her dad’s Facebook for a 2 years turning, 3 now, and as you can see I’m nowhere close.
submitted by DangerousService to findareddit [link] [comments]
2024.11.28 00:49 EmbeddedSoftEng I2C endianness mystery
This one really has me scratching my head.
I have an I2C device driver for a chip, let's call it the Whiz Bang 3000.
Now, most of this chip's registers are 16-bit, with one 8-bit register.
I2C transfers are always big-endian.
Okay, fair enough. If this driver it built for a little-endian device (read: microcontroller), then conditionally compile in the swapping of the bytes before sending a 16-bit value to the device, and after receiving a 16-bit register from the device.
Now, I know I could be better in allowing multiple registers to transfer per transaction, but it's just simpler and more straight forward to have two driver API functions:
void wzb3000_register_pull (wzb3000_t * self, wzb3000_reg_t h_reg); void wzb3000_register_push (wzb3000_t * self, wzb3000_reg_t h_reg);
The wzb3000_t
is my all-encompassing data structure in memory for knowing how to interact with a particular wzb3000 instance, since it's possible to have many. wzb3000_reg_t
is an enumeration for which register you want to take a value from self->shadow.registers
and squirt it out across the relevant I2C bus (could be multiple) to which I2C address to replace the corresponding register on the external device. This is one of those enumerated registers type devices that drives me nuts. union { uint8_t raw[sizeof(wzb3000_device_t)]; wzb3000_device_t registers; } shadow;
This acts as both my I/O buffer for transactions, both reading and writing, and wzb3000_device_t
is a register map with packed bit-field structs to be able to access and manipulate the buffered copies in memory of the hardware registers in the device.wzb3000_register_pull()
, since I'll be pulling data out of this device more than I'll be pushing data out to it.#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) uint8_t placeholder; switch (WZB3000_REG_CATALOGUE[h_reg].n_size) { case 2: #if 1 printf("Swapping: 0x%.02X and 0x%.02X\r\n", self->shadow.raw[WZB3000_REG_CATALOGUE[h_reg].n_offset], self->shadow.raw[WZB3000_REG_CATALOGUE[h_reg].n_offset + 1]); #endif placeholder = self->shadow.raw[WZB3000_REG_CATALOGUE[h_reg].n_offset]; self->shadow.raw[WZB3000_REG_CATALOGUE[h_reg].n_offset] = self->shadow.raw[WZB3000_REG_CATALOGUE[h_reg].n_offset + 1]; self->shadow.raw[WZB3000_REG_CATALOGUE[h_reg].n_offset + 1] = placeholder; break; // intentional fall-through case 1: default: break; } #endif
I added that printf()
just so I could watch the endian swap happenning in real time to confirm that everything was correct. The WZB3000_REG_CATALOGUE
is an array of data structures that essentially duplicates the information about the lay out of the register map that wzb3000_device_t
creates. The relevant fields are n_size
and n_offset
that tell you, guess what, the size of the specific register, and its byte offset from the start of the register map. I know. Ground breaking, right?n_size = 2
bytes, and this build is for a little-endian chip, time to juggle some data. Use a placeholder to just move stuff around. And it works fine. As long as that printf()
is in there.0x48, 0xC1, 0x54, 0x00, 0x00, 0x04, 0x03
Those are the bytes of the Whiz Bang 3000's internal register file, just represented in little-endian format for the 16-bit registers. According to the data sheet those last two 16-bit registers should be represented by 0x0054 and 0x0400, respectively, so when everything works with the byte swapping, it's correct. Now, I shoe-horn #if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
to #if 0
to shut off endianness swapping, and expected this:0xC1, 0x48, 0x00, 0x54, 0x04, 0x00, 0x03
Exactly the same data, but in its original big-endian order. Instead, I get this:0xC1, 0x48, 0x00, 0x00, 0x03, 0x01, 0x03
Almost right. But those bytes that are wrong, they're way wrong. Like not even remotely accurate. And what's more, these are all read-only registers that are changing. What should just be byte unswapped as 0x00, 0x54 is 0x00, 0x00, and what should just be byte unswapped as 0x04, 0x00 is 0x03, 0x01.0x48, 0xC1, 0x54, 0x00, 0x00, 0x04, 0x03
Okay. Everything's correct again. Now, just turn off that printf()
:0xC1, 0x48, 0x00, 0x00, 0x01, 0x03, 0x03
It's as if I never directed it to byte-swap, but it's not exactly the same as the unbyte-swapped version, because the last 16-bit register went from 0x03, 0x01 to 0x01, 0x03. Still wrong, but it's like wrong with proper byte-swapping.printf()
back in, but I change the format string to "Foo!\r\n", which earns me a warning about passing unneeded arguments to printf(), but guess what?0x48, 0xC1, 0x54, 0x00, 0x00, 0x04, 0x03
It's back to correct.printf()
format down to the empty string, and it's still wrong in terms of the first and second 16-bit registers, but oddly, it comes correct for the third 16-bit register:0xC1, 0x48, 0x00, 0x00, 0x00, 0x04, 0x03
The mystery deepens yet again. I started adding characters into the printf() format, looking for the point where things change. "\0" earned two warnings, one for the embedded null character, and one for too many arguments. " ", "\r", and "\n" made no change. "\r\n" unbyte-swapped the last 16-bit register:0xC1, 0x48, 0x00, 0x00, 0x04, 0x00, 0x03
One or two printable characters and it would change yet again, but not be correct. I retried "Foo!\r\n" and it came correct again. Backed it down to "Foo\r\n", still correct. "Fo\r\n" broken. "Foo\r" or "Foo\n", broken.2024.11.28 00:49 HanzwodiePanzerfaust question about "mighty throw" spirit
https://preview.redd.it/4o3m8ty3ij3e1.png?width=542&format=png&auto=webp&s=9bd809638e7e183da8f495c37f9c0956e47730e3 does the mighty throw spirit affect grabs only or grabs and command grabs too submitted by HanzwodiePanzerfaust to Amiibomb [link] [comments] |
2024.11.28 00:49 smeezewitme 5⭐️ for 15⭐️
submitted by smeezewitme to Monopoly_GO [link] [comments] |
2024.11.28 00:49 Far_Currency3610 Profile Review - Deferred Stanford GSB, Harvard, Wharton
Hello everyone. I'm a senior and going to apply for the Stanford, Harvard, and Wharton deferred admission programs next year. Would appreciate feedback from people here and what I should do to increase my chances
Academic Background:
Undergrad & major: Top Undergrad Business program @ Top State School (Think Ross/Mcintire/Mcdough/Haas level)
GPA: 3.9/4.0.
GMAT: 750
Race/nationality: Hispanic
Sex: M
Work experience:
- Junior Intern & Going back full-time @ T2 Growth Equity Shop (Think Spectrum/Silversmith level)
- Sophomore Intern @ MBB
- T1 VC Spring Fellowship
- 3 Consulting Projects @ different F100 Companies
- Freshman Intern LMM @ Private Equity Shop
- Venture Scourt @ Small VC Firm
- Campus Growth for Series A Startup
- Econ Research @ HYPSM
Extracurricular:
-President of a large preprofessional URM organization (100+ members). Also did consulting projects for several F500 companies as part of the org.
-Content creator (100k subs on all platforms doing careeundergrad related vlogs and podcasts)
Future plans:
- Build out venture capital/entrepreneurship/tech companies in 3rd world country my family is from
- Build out a creator economy tech company to connect the worldd
- Build out student financing tool because of my background of being FGLI
Goal of MBA/More info:
- PreMBA = Safety net to explore building or joining a renowned startup - During MBA = use as incubator to develop my own tech startup - Post MBA ideally startup becomes unicorn and I drop out but that's 99% not going to happen so go into early-stage investing at T1 VC or go to T1 GE shop
Questions:
Is growth equity a good differentiator compared to traditional roles like IB/Consulting
Really appreciate any advice, thank you!
submitted by Far_Currency3610 to MBA [link] [comments]
2024.11.28 00:49 burtzev [Cuba] Isla Libre: A Practical Guide to Help the Cuban People | Havana Times
submitted by burtzev to worldanarchism [link] [comments]
2024.11.28 00:49 user83662829 Dam got shiny in my first raid 🔥
submitted by user83662829 to pokemongo [link] [comments] |
2024.11.28 00:49 magicking013 Tea Time (ayul)
submitted by magicking013 to naviamains [link] [comments] |
2024.11.28 00:49 anonymous-shad0w 2021 to 2022 Saw Decline in Abortions in the United States
submitted by anonymous-shad0w to IndustrialPharmacy [link] [comments]
2024.11.28 00:49 Neat-Strain9877 Screen messed up
I drive a 2020 jeep grand Cherokee, and I believe the issue I am dealing with is delamination. I believe I am out of my cars warranty and just don’t know the best solution for this issue. Has anyone tried replacing their screen on this new of a model? Or been able to hassle to get it replaced out of warranty. I saw an older thread on this subject but wanted to post just to see if there’s any new info. Any information is helpful! submitted by Neat-Strain9877 to GrandCherokee [link] [comments] |
2024.11.28 00:49 blknecro93 I'm playing the game, the one that will take me into my hands
playing the game
not the best play but the sync makes it oddly satisfying
submitted by blknecro93 to NaafiriMains [link] [comments]
2024.11.28 00:49 ohcibi Ich habe das Rätsel um die Eiger Besteigung gelöst! Alles nur ein Missverständnis.
Stefan meint gar nicht die Eiger Nordwand - den Berg.
Er meint Eigernord - die Kletterhalle für jung und alt https://www.eigernord.de/
Völlig unbegründet der ganze Hate!
submitted by ohcibi to 7vsWild [link] [comments]
2024.11.28 00:49 Individual_Station26 How do you try to end your flare?
submitted by Individual_Station26 to SIBO [link] [comments]
2024.11.28 00:49 turdman450 How to downgrade without steam?
I’m trying to downgrade my version to use mods but all software I see requires steam
submitted by turdman450 to BeatSaberPiracy [link] [comments]
2024.11.28 00:49 Shindledlo How should I finish this team?
submitted by Shindledlo to VGC [link] [comments] |
2024.11.28 00:49 NeuroSpace12 Trying to open vault
I’m trying to open the gold vault so I can hopefully get the last 2 gold 4 star stickers that I need 🥲 please gift if you can!!! Play MONOPOLY GO! with me! Download it here: https://mply.io/a submitted by NeuroSpace12 to Monopoly_GO [link] [comments] |
2024.11.28 00:49 anonymous-shad0w Family History of Mental Illness Tied to Aggression in Those With CTE
submitted by anonymous-shad0w to IndustrialPharmacy [link] [comments]
2024.11.28 00:49 Acceptable_Lunch643 She is such a lady
My cat Tiny loves posing for the camera! submitted by Acceptable_Lunch643 to cats [link] [comments] |