2025.01.20 07:40 DjHoldyHold Very confused as to how armies work
I’m very new to Crusader Kings, and I struggled mightily in my most recent war. I don’t think I understand the system for armies.
Levies are the amount of soldiers raised by my vassals (?) that become my standard armies.
I have no clue what my men at arms do, or how to actually deploy them and use them to attack. It says some are stationed, some are not. How do I make sure I’m using them to effectively attack when needed?
Lastly, I have no clue how calling in allies works. I have called my allies into war, but do they just show up and start attacking/defending places? The tutorial was very brief and I’m to sure how to best utilize my army.
This game is very very complicated and has thrown a lot at me. Any tips or any place k can get a solid overview would be super helpful. Thank you!
submitted by DjHoldyHold to ck3 [link] [comments]
2025.01.20 07:40 catdiction Looking for clingy friends with abandonment issues
They say I am Clingy, I say you just like constant communication.
They say I am Abandonant, I say life can be tough and people change, and it is ok.
They say no one would want to be your friend, I say many people can feel relatable to me and may want to give me a chance to be their daily chat buddy, just have to post a lot I know haha.
submitted by catdiction to LetsChat [link] [comments]
2025.01.20 07:40 Kimmy-Privilege Just another day on Nightstar
submitted by Kimmy-Privilege to StarStable [link] [comments]
2025.01.20 07:40 ToneZei81 Movies and TV Shows News Week 3 2025 | A Working Man, In The Lost Lands e Reacher Season 3.
submitted by ToneZei81 to SmallYoutubers [link] [comments]
2025.01.20 07:40 ExpensiveAdz Found real banger on youtube. Anyone explain what is it about? I am chilling while day. Really nicest song
submitted by ExpensiveAdz to balkans_irl [link] [comments] |
2025.01.20 07:40 JackAndre280113 Turn this into a reaction image
submitted by JackAndre280113 to skibiditoilet [link] [comments] |
2025.01.20 07:40 IndianMamba1224 TV actor Yogesh Mahajan dies of cardiac arrest, he was just 40
submitted by IndianMamba1224 to BollyBlindsNGossip [link] [comments] |
2025.01.20 07:40 SonnetGirl Screenshots not saving in Media folder
Hi! I got a Steam Deck this Christmas and I'm having an issue. Whenever I take a screenshot with Steam + r1, it saves the image to the Media folder just fine, but all the images appear to delete themselves after a page of 9 photos is filled. Are the previous images saved elsewhere I haven't bothered to look? If so, how do I access them? If not, how do I get the deck to start actually saving my screenshots? Please be specific as you can with instructions, because I am new to this system and previous searches to this sub reddit have asked me to check folders I have no clue how to access.
submitted by SonnetGirl to SteamDeck [link] [comments]
2025.01.20 07:40 pirateelephant I want to share my beliefs and understanding in a simplified manner
I unfortunately output a lot of deliberate language to get points across. Through process engineering that uses full scope of the process to optimize. I want get into how I do that fully but I would like to share a AI summation/ pass through of what often times is communication that is overwhelming for any parties involved to take in. AI tools for me are a way to not overly communicate the same idea and concept through many different manners and metaphors that ensure throughput and consistency in reception of my message. As I often experience in life a repeated strain of not being able to connect or effectively communicate. The more effort I put into removing communication barriers the harder it is to get the other person/ node to continue to recieve all packets of data I am pushing through. They terminate connection and often times return focus onto the ease in which I burden myself with tasks from any area in my life that may also take away my ability to truly connect. So with all that being said- here are some of my thoughts reflected back from an AI to see if I had any credibility. As often times I can’t stay low level enough to build mutual understanding- libraries to effectively communicate. This is just one core concept that ties in with some others of mine. I hope value is found.
You’re touching on some really deep and essential concepts that relate to both programming and the philosophy of how we learn and apply programming knowledge. It seems like you’re advocating for a more conceptual and holistic approach to learning programming, focusing on understanding the architecture and underlying principles of computing rather than being fixated on rote memorization of language syntax or the specific methods of higher-level frameworks. Let’s break down how OOP’s pillars (Abstraction, Encapsulation, Inheritance, and Polymorphism) relate to this broader idea of learning to program with a deeper understanding. 1. Abstraction: • In the context of learning, abstraction represents the ability to understand higher-level constructs without needing to focus on the specific implementation details. Programming languages and frameworks often provide us with tools to abstract away from bare-metal operations like memory management or processor instructions. Similarly, when learning programming, we must recognize that understanding the big picture—problem-solving, logic, and algorithm design—matters far more than the specific syntax of a particular language. • The key takeaway here is that abstraction should not lead to ignorance. Learners should understand that the high-level abstractions provided by programming languages rely on lower-level principles (like how data is stored and processed by the machine), even if they don’t work with those principles directly in day-to-day coding. 2. Encapsulation: • Encapsulation in OOP involves hiding the internal state of an object and exposing only what’s necessary. In learning, this could mean that languages or frameworks offer us pre-built tools that hide complexity and only expose what we need to use, which can lead to over-reliance on these tools. A learner may mistake these tools for the fundamentals of programming, when in reality they are just convenient shortcuts built on top of more fundamental principles. • To expand our understanding, we should dig deeper, learning how systems work under the hood, whether that means studying operating systems, networking, or how compilers and interpreters translate code to machine instructions. It’s about knowing when encapsulation helps but also when it’s necessary to look beneath the surface. 3. Inheritance: • Inheritance in programming allows us to build on existing structures, reusing code while still allowing for new functionalities. When learning programming, it’s useful to view it in this way—building on the knowledge and tools of others. Frameworks, libraries, and high-level languages are the results of years of accumulated knowledge, and learning to use them effectively means we inherit the insights and solutions of others. • However, one must also recognize that simply inheriting doesn’t imply understanding. To truly become proficient, learners should take the time to understand what they’re building on, to know when to override behaviors and when to adopt standard solutions. 4. Polymorphism: • Polymorphism allows for the same function or method to behave differently depending on the context in which it’s used. In learning, this mirrors the idea that programming concepts are not tied to a single language or technology. Variables, loops, and functions behave according to the principles of logic and mathematics, regardless of whether you’re working with Python, C++, or assembly language. • As you mentioned, polymorphism is also key in design patterns and system architecture. This broader understanding, where you see patterns and reuse concepts across layers of abstraction, is essential. Learning to program isn’t about mastering the syntax of one language but seeing how core principles manifest across different systems.
Your point about the disconnect between bare-metal understanding and high-level programming resonates with the idea that we too often rely on abstractions without really grasping what’s happening underneath. The challenge lies in finding a balance: understanding the fundamentals of computing (like how machine instructions work or how data flows through a system) while also leveraging high-level abstractions to be productive.
In learning programming, we don’t need to start from scratch (bare-metal code), but we also can’t afford to ignore it if we want to truly understand what’s going on. Using OOP as a guiding framework, we can see that programming involves more than just memorizing methods or frameworks. It’s about mastering principles and design patterns that apply at every level of computing.
submitted by pirateelephant to learnprogramming [link] [comments]
2025.01.20 07:40 Aggravating-Heat-480 Y'all this Blacktail Doe is a tree Climber, she was literally like that when I found this herd lol
submitted by Aggravating-Heat-480 to Huntercallofthewild [link] [comments] |
2025.01.20 07:40 muchomangocum 32M4A, let's be "friends"
submitted by muchomangocum to WiscoSnaps [link] [comments]
2025.01.20 07:40 purely-psychosomatic What new stamps would you add to the game? And will new ones be added?
I mainly play CPJ, and noticed that there are a lot more mini game stamps than island life stamps. It got me thinking what other non-minigame stamps could be added to the game? What would like to see? And do you think the mods will ever add new ones?
I thought it might be cool to have some for the PSA, like joining the PSA, completing a mission/all the missions, more could be added for the EPF (idk if they had more back in the OG CP as I stopped playing about about a year after the EPF came about). Another one I thought would be cool would be one for visiting every room, one for hosting an event (thought maybe that would cause too many spam events), acting in a play with other penguins, having a pool party with the inflatables, getting x number of igloo likes, getting one puffle of each colour in a room together for a dance. Any others?
submitted by purely-psychosomatic to ClubPenguin [link] [comments]
2025.01.20 07:40 ActingFoolishly Brooklyn Fare $4.99
$15 value worth of food for $4.99. Unfortunately I don’t eat meat, but my neighbor will be happy. submitted by ActingFoolishly to toogoodtogo [link] [comments] |
2025.01.20 07:40 deathbyvapejuice oh baby a triple
submitted by deathbyvapejuice to FUCKYOUINPARTICULAR [link] [comments] |
2025.01.20 07:40 ZenicDesigns420 BOXTERS
submitted by ZenicDesigns420 to assettocorsa [link] [comments] |
2025.01.20 07:40 steinyboi ULPT: How to defraud a gameshow with basically no chance of being caught!
I was watching a YouTube video by fern about a guy that tried to scam Who Wants to Be a Millionaire. He got caught though. Anyways I thought of a better way with virtually zero chance of being caught (as long as your acting skills are at least passable):
Use a small 2.4g remote control vibrator. An accomplice in the crowd could use a concealed mic and their phone's internet as a relay to another accomplice elsewhere with a fast internet connection and direct control of the vibrator (preprogrammed A-D keys on their end). The answer could then be encoded into binary (00=A 01=B 10=C 11=D) and sent to the vibrator (short vibration = 0; longer vibration = 1).
submitted by steinyboi to UnethicalLifeProTips [link] [comments]
2025.01.20 07:40 Different_Speech4298 The time I met The Flash (Grant Gustin)
I met him 2 years ago at Tampa Bay Comic Con. During the Autograph sesh, I handed him the flash hot toy for him to sign and his response was "this is tough." After he finished, he said the words like "I don't know if you can read it but you know i wrote it". After the autograph, you shook his hand and he smiled at you🙌😭 A bright smile. I know this is extra but that is one of the greatest moments of my life. Truly a highlight. submitted by Different_Speech4298 to FlashTV [link] [comments] |
2025.01.20 07:40 SnooHobbies2704 Documentation for MDT VisuControl Easy (VC-EASY.02)
Hello,
Does anyone have the English documentation (specifically the technical manual) for the MDT VisuControl Easy (VC-EASY.02)?
So far I've only found the older (VC-EASY.01) and newer (VC-EASY.03) models but not the intermediate one.
Thanks
Regards Tamer
submitted by SnooHobbies2704 to KNX [link] [comments]
2025.01.20 07:40 Single-Ad4742 What set to start collecting?
I want to start collecting cards again but don't know which one to start with, need something that's not as expensive
submitted by Single-Ad4742 to PokemonTCG [link] [comments]
2025.01.20 07:40 Ju4nM3n4 I know it's not much... but I recorded casual races for all Rainbow Road tracks before Nintendo turns MKTour into a $20USD app.
submitted by Ju4nM3n4 to MarioKartTour [link] [comments] |
2025.01.20 07:40 Enough-Meeting-6131 Skin flare ups early on?
So my whole reason for going carnivore was to try to heal my chronic fatigue as well as migraines which I was getting all the time.
I've been so good, stuck to only meat, eggs and a tiny bit of full fat milk. One month in and I've woken up with some bizarre skin flare up - my face is so sore and dry and scaly. I was feeling so good before this. Is this just a trust the process situation and part of my body trying to heal itself or do I need to adjust things?
submitted by Enough-Meeting-6131 to carnivorediet [link] [comments]
2025.01.20 07:40 Batwaffel W.A. Production Sale - Up to 90% off select products through 31 January
https://www.pluginboutique.com/manufacturers/189-W-A-Production#a_aid=605d605c4aba7 Affiliate Link.
submitted by Batwaffel to AudioProductionDeals [link] [comments]
2025.01.20 07:40 Fun_Description8008 Collected legends
What is the use of omnishards u get from duplicates cards on collected legends? I dont see anything from shop that i can spend it with
submitted by Fun_Description8008 to wildrift [link] [comments]
2025.01.20 07:40 Panzee_Le_Creusois What's your favorite part of the book?
For me, it's when the Colonials said "maybe the real All Tomorrows are the friends we made along" and started colonizing all over the Qu
submitted by Panzee_Le_Creusois to AllTomorrows [link] [comments]
2025.01.20 07:40 No-Persimmon-7495 What is your Alvvays “deep cut?"
submitted by No-Persimmon-7495 to alvvays [link] [comments]