Interesting interaction with Xaku

Describe the most interesting person you met on one of your travels. What was your best trip. What was your worst trip. Did your class in high school go on a trip together? If so, where did you go? How long did you stay? How did you get there? Do you have a driver's license? Do you like to travel with children? Why or why not? What country has the most interesting customs? What country would be fun to work in? Would you like to work in a tropical country? Would you like to work in Antarctica? Would you like to live where there is always snow? Would you like to live where there is desert and hot weather? What countries in Europe have you visited? Interesting“有趣的,引起注意的”;而interested是“感兴趣的,表现出兴趣的”,如: 1. The story is very interesting, so all the children are interested in it. 这个故事很有趣,所以所有的孩子都对它感兴趣。 2. Our English teacher is very interesting. 我们的英语教师很有趣。 3. Possessions A Part of Conversation Questions for the ESL Classroom.. What's your most valued possession? Can you remember the la We believe that this manuscript will make it interesting to general readers of XXX(期刊名称). This is a part research accomplishment of the project “XXX(基金项目名称)”, which is supported by XXX(资金提供方,如国家自然科学基金委等). This paper elaborately ….(说明文章的创新点以及应用 ... Weather A Part of Conversation Questions for the ESL Classroom.. What's your favorite season and why? Are there any special traditions associated with different seasons in your country? Interesting questions for discussions in Engish lessons. A Project of The Internet TESL Journal If this is your first time here, then read the Teacher's Guide to Using These Pages Jobs & Occupations A Part of Conversation Questions for the ESL Classroom.. Related: Self-employment At what age do people usually begin to work in your country? interesting = absorbing/ stricking/ appealing. join = participate. meaningful = rewarding. be different from = differ/ vary from. be eager to do = be dying/long to. hard = challenging. adj = be of +抽象n: important = be of (great) importance . disappointed = depressed/ frustrated / be cast down . ignore = neglect /take no notice of /overlook ... Friends A Part of Conversation Questions for the ESL Classroom.. Are there any famous stories of friendship in your culture?

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 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.
Part of wzb3000_t is this:
 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.
Okay. Everything's fine so far. Here's where it gets weird. I shutdown the option to fix the endianness and ran some tests to prove that yes, I have to, but when the endianness swap code is in place, something stranger still happens. Here's the relevant parts of 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?
So, if you follow the logic, if the register is 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.
Elsewhere, I do a loop through self->shadow.raw[] to just dump the contents of the byte buffer, with everything endian-swapped appropriately, and it looks fine.
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.
Okay, turn endianness swapping back on
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.
I add the 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.
I thought I might be falling victim to a compiler optimization, so I tried adding a volatile qualifier to the shadow union above, but that didn't help. I even tried just touching the references to the bytes with (void) casts, then (volatile void) casts. No change.
Oddly, I stripped the 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.
Finally, it seems the EOL characters aren't important at all, because any 5 character string will make the rest of the code come correct. Doesn't even have to be a graphic character, just printable. "12345" and "\t\t\t\t\t" both work.
I'm at my wit's end. I'm 3 hours after quitting time and I just have to go home, have Thanksgiving, and hope someone out there in C_Programming land had an appropriate cluestick for me come Monday.
submitted by EmbeddedSoftEng to C_Programming [link] [comments]


2024.11.28 00:49 HanzwodiePanzerfaust question about "mighty throw" spirit

question about 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⭐️

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 🔥

Dam got shiny in my first raid 🔥 submitted by user83662829 to pokemongo [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

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?

How should I finish this team? submitted by Shindledlo to VGC [link] [comments]


2024.11.28 00:49 NeuroSpace12 Trying to open vault

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

She is such a lady My cat Tiny loves posing for the camera!
submitted by Acceptable_Lunch643 to cats [link] [comments]


2024.11.28 00:49 Embarrassed_Acadia23 Will and Alicia

I’ve been wondering about this for a long time now. Why was will so in love with Alicia? Was it their history? Or the fact that she was the one who got away? What are your thoughts?
submitted by Embarrassed_Acadia23 to thegoodwife [link] [comments]


2024.11.28 00:49 denverdave2178 Drinky poos

submitted by denverdave2178 to trailerparkboys [link] [comments]


2024.11.28 00:49 whydub38 Full contact point fighting

Tldr: Are there rules out there that are point fighting based, but without contact restrictions and KO as a path to victory?
(This technically describes WT taekwondo to some extent, but of course there are a lot of other differences between those rules and the various point karate formats (JKA/WKF/NASKA/WAKO) aside from the contact element so I'm not talking about that.)
I'm not proposing that this would be a superior way to train or compete or anything, i just like variety in the combat sports i watch and compete in and i think this would be a cool variation.
Basically, I'd be interested in watching and competing in a format where the fighters are still focused on scoring points, with breaks after each clash and everything (sorry I'm not familiar with the exact terminology, I'm a kyokushin guy), but without restriction on force of contact, and victory for someone who knocks out their opponent.
I know there are and have been competitions where they're not super strict about enforcing contact level, but I'm wondering if there's any point formats where a high contact level is built in.
I'm curious about this because although i mainly compete in and watch knockdown karate, i really enjoy watching point fighting too and have had fun participating in it in the past. But, as a kyokushin guy, the idea of being disqualified for hitting too hard bothers me quite a bit. And just on an academic level I'm really curious as to how these kinds of fights would look, keeping in mind that such rules would still emphasize the quick clashes of point karate instead of longer exchanges (which at that point would just basically be kickboxing), while adding power as a factor.
I think that might be a smoother transitionary format to ease point fighters into more conventional full contact fighting too.
submitted by whydub38 to karate [link] [comments]


2024.11.28 00:49 thatsapeachhun ID? Found in Bay Area, CA

ID? Found in Bay Area, CA I know it’s not dangerous, but just curious what kind it is? Wolf or Grass spider perhaps? Thx!
submitted by thatsapeachhun to spiders [link] [comments]


2024.11.28 00:49 VeterinarianOwn4212 anyone know what morph mod this is ???

anyone know what morph mod this is ??? submitted by VeterinarianOwn4212 to feedthebeast [link] [comments]


2024.11.28 00:49 iluvgrindcore Its that time of the year again

Its that time of the year again submitted by iluvgrindcore to GlobalOffensive [link] [comments]


https://google.com/