#CPP
Explore tagged Tumblr posts
Text
youtube
April 27, 2025 - Ka Daisy, an NPA guerrilla and trans woman, was martyred after a confrontation with security forces in Barangay Tapi, the Philippines.
She was known for teaching literacy and math to members of her squad who were uneducated and always carrying a make-up kit in her guerilla supplies. May she rest in power. [video]
"As an LGBT youth our role is important in advancing the revolution. To change society's views we must change society herself"
#ka daisy#ka dalia#npa#new people's army#Bagong Hukbong Bayan#cpp#communist party of the philippines#communism#guerrila#trans#trans rights#armed struggle#martyrs#philppines#barangay tapi#lgbt+#lgbtq+#lgbtqia+#revolution#women
1K notes
·
View notes
Text
Statement of the Central Secretariat of the Communist Party of Pakistan on the escalation of military tension between India and Pakistan:
The Communist Party of Pakistan, grounded in the Marxist-Leninist tradition, firmly condemns the military aggression initiated by the Indian bourgeois state and the counter-aggression launched by the Pakistani ruling class. These are not wars of liberation, nor are they in the interest of the proletariat, they are the wars of rival bourgeois military aggression for regional hegemony at the expense of the working class.
We assert that the working masses of India and Pakistan have no stake in the nationalist sabre-rattling of their respective ruling classes. In a region armed with nuclear weapons, these provocations risk plunging the subcontinent into catastrophic annihilation, an outcome that would spare neither caste, creed, nor class, but would disproportionately destroy the lives and livelihoods of workers, peasants, and the poor. Such military posturing is a diversion, a smokescreen to veil the deepening crisis of capitalist exploitation, inflation, unemployment, and social unrest. It is a tactic long used by bourgeois regimes to stoke reactionary nationalism and crush the rising tide of class consciousness.
The Communist Party of Pakistan calls upon the working class and progressive forces across South Asia to reject this false nationalism and embrace proletarian internationalism. Our struggle is not with the workers across the border, but with the comprador bourgeoisie, feudal remnants, and military-industrial complexes that profit from bloodshed. Let there be no illusion the path to lasting peace lies not in diplomatic band-aids between warring states, but in the revolutionary transformation of society through the overthrow of capitalism, the dismantling of bourgeois militarism, and the unity of the working class beyond borders.
Let the war drums of chauvinism be silenced by the battle cry of international solidarity.
Workers of the world, unite! Inquilab Zindabad!
582 notes
·
View notes
Text

The Communist Party of the Philippines (CPP)
Military wing: New People’s Army (NPA)
242 notes
·
View notes
Text

#Anuradha Ghandy#women's liberation#the philippines#flip#cpp#npa#revolution#revolutionary#marxism leninism maoism#marxism#maoism#communism#communist#maoist#socialism#MLM
582 notes
·
View notes
Text
My program crashed for an hour or so and I tried to fix it
I finally fixed it
Twas a fucking compiler command gone bad
My code was good
FUCKKKKKKKKKKK
#cpp is a FUCKING bastard and I HATE it#programming#frc programming#code#coding#cpp#c++#cppprogramming#c++ language#c++ programming
77 notes
·
View notes
Text
・₊✧𝘈 𝘱𝘦𝘢𝘳𝘭𝘦𝘴𝘤𝘦𝘯𝘵 𝘵𝘦𝘳𝘮 𝘩𝘢𝘴 𝘣𝘦𝘦𝘯 𝘢𝘥𝘥𝘦𝘥 𝘵𝘰 𝘵𝘩𝘦 𝘴𝘢𝘯𝘤𝘵𝘶𝘢𝘳𝘺。。。 -`♡´-
♡Compulsedpersontive/CPPtive♡
✧Compulsedpersontive or CPPtive is an introject of a pwOCPD’s Compulsed Person. The Compulsedpersontive may be part of a OCPD System, or a OCPDbased system. They may be considered factives.✧
✧These terms were coined to be exclusive to systems/individuals with Obsessive Compulsive Personality Disorder.✧
✧Made in collaboration with @the-crystalized-cosmos✧
Tagging: @the-iris-network-mogai @radiomogai
! If you would like to be tagged in my posts feel free to ask !
For a full list of Special Person terms, I made this doc for a comprehensible list. If you'd like to use my PD flags as emojis, I made this discord server with them as heart emojis! (Originally made to react to my SPs messages)
DISCLAIMER: All of these terms already have existed in the community before I posted them. If you have genuine questions or concerns, feel free to reach out and I will try to work with you! These terms are meant to be inclusive of ALL experiences I have heard of or experienced myself, so I have no issue adding things if necessary. These posts are meant to be short and sweet descriptions, not full deep delves on what each means! Feel free to make your own deep dives posts about your own experiences with these and @ me, I’ll definitely repost as long as they’re done in a respectful manner.
#Compulsedpersontive#Intoject#SPtive#Specialpersontive#Factive#System#Plural#Compulsed Person#CPP#OCPD#Obsessive Compulsive Personality Disorder#Special Person Terms#Persodivergent Terms#PD terms#Persodivergent#Personality Disorder#Sanctuaryterms
12 notes
·
View notes
Text
Coding tutorial: Chain-of-responsibility pattern
A peasant, knight and king walk into a software design tutorial, and are here to teach you the chain-of-responsibility pattern. Learn how to create a chain of handlers which can handle different request types.
This tutorial shows you how to code the chain-of-responsibility pattern in the Visual Studio development environment, using a console application and the C++ programming language.
The chain-of-responsibility pattern passes on a request to a chain of handlers one at a time. Each handler can handle different requests. So if the first handler can’t handle the request, then it will pass it on to the next handler. Once a request is handled, the chain ends. Since there is no longer a need to pass on the request.
It is also possible that the request doesn’t get handled by any of the handlers. Since each handler can handle 0, 1 or many requests of different types.
See the full tutorial here.
Console output:
#cpp#coding#programming#gamedev#indiedev#tutorial#visual studio#software#software design#software development#game development#design patterns#cppprogramming
20 notes
·
View notes
Text
Inside the New People's Army (2018)
youtube
#marxism leninism maoism#maoism#New People's Army#NPA#CPP#Communist Party of the Philippines#philppines#filipino#imperalism#communism#marxism leninism#marxism#socialism#anti imperialism#environmentalism#redfish#Youtube
5 notes
·
View notes
Text
I've been working on a little time trial platformer inspired by Sonic, N++ and Hoverburger. Getting back to my roots and writing my own engine in C++ using SFML.
Currently titled The Indomitable Rocket Dog!
Last night I brought it out to Wonderville in Brooklyn for their playtest night. It's the first time the game has been shown publicly.
13 notes
·
View notes
Text
Mastering Linked Lists: Beginner's Guide
Hey Tumblr friends 👋
After learning about Arrays, it's time to level up! Today we’re diving into Linked Lists — another fundamental building block of coding! 🧱✨
So... What is a Linked List? 🤔
Imagine a treasure hunt 🗺️:
You find a clue ➡️ it points you to the next clue ➡️ and so on.
That's how a Linked List works!
🔗 Each element (Node) holds data and a pointer to the next Node.
It looks something like this: [data | next] -> [data | next] -> [data | next] -> NULL
Why Use a Linked List? 🌈
✅ Dynamic size (no need to pre-define size like arrays!) ✅ Easy insertions and deletions ✨ ✅ Great for building stacks, queues, and graphs later!
❌ Slower to access elements (you can't jump straight to an item like arrays).
Basic Structure of a Linked List Node 🛠️
data -> stores the actual value
next -> points to the next node
📚 CRUD Operations on Linked Lists
Let’s build simple CRUD functions for a singly linked list in C++! (🚀 CRUD = Create, Read, Update, Delete)
Create (Insert Nodes)
Read (Display the list)
Update (Change a Node’s Value)
Delete (Remove a Node)
🌟 Final Thoughts
🔗 Linked Lists may look tricky at first, but once you master them, you’ll be ready to understand more powerful structures like Stacks, Queues, and even Graphs! 🚀
🌱 Mini Challenge:
Build your own linked list of your favorite songs 🎶
Practice inserting, updating, and deleting songs!
If you loved this explainer, give a follow and let's keep leveling up together! 💬✨ Happy coding, coder fam! 💻🌈 For more resources and help join our discord server
4 notes
·
View notes
Text
learning programming is just learning something first and then learning that that's not actually how it works later like
18y/o me: learning that the code goes through line by line, one after the other.
25 y/o me: reading about memory ordering in C++ and seeing that the compiler can just decide to move your lines in the order it wants and you have to tell it to not do that.
BITCH WHAT THE FUCK IS THIS
#how do I even tag this#is there even a target audience for Cpp on Tumblr#next thing I know there's a programmblr#cppprogramming#cpp#programming#just took tags it proposed#fuck around and find out I guess
10 notes
·
View notes
Text
Employment Minister Randy Boissonnault says while Alberta is legally allowed to withdraw from the Canada Pension Plan, doing so would be a “one way ticket,” with no chance of return. Alberta’s UCP has been mulling the idea of leaving the CPP and forming its own pension plan since 2020, but Premier Danielle Smith recently took the next step by releasing a report about a plan to do so and saying public feedback would determine the need for a referendum. Boissonnault told CTV’s Question Period host Vassy Kapelos in an interview airing Sunday that once a province chooses to withdraw from the CPP, it kicks off a timeline laid out in the 1965 legislation and can’t be undone. “If Albertans decided a referendum to pull out of the CPP, they will be able to do that, but it's a one way ticket,” said Boissonnault, who is also an Alberta MP. “You don't get to come back, that's also very clear in this legislation,” he also said, adding he believes Alberta’s withdrawal would be “destabilizing.”
Continue Reading.
Tagging: @politicsofcanada @abpoli
41 notes
·
View notes
Text
Array Sorting in C++: A Quick Guide ✨
Hey coders! 👋 Let's talk about something super useful: Sorting Arrays in C++. Whether you are a newbie or brushing up your skills, this is essential knowledge.
What's the Deal with Sorting? 🤔 Sorting means putting your array elements in order (ascending or descending). It's crucial for making data easier to search, analyze, and work with.
Key Sorting Ideas 💡
Comparison & Swapping: Most sorting methods compare elements and swap them if they're in the wrong order. Think of it like rearranging books on a shelf!
Iteration: Sorting involves going through the array multiple times. It’s like checking every item to make sure it’s in the right spot.
Sorting Order: Usually, we sort from smallest to largest, but you can also sort from largest to smallest, or by any custom rule.
Choosing the Right Method: Different tasks require different methods.
Simple Methods (Bubble, Insertion): Easy to grasp but slow for big arrays. Great for learning the basics! Efficient Methods (Quick, Merge): Faster for large amounts of data but a bit more complex.
Sorting in Action 🚀
Manual Sorting: Write your own sorting code using loops and if statements. Good for understanding how it works under the hood.
Using std::sort(): C++'s built-in function that's super fast and easy to use.
#including<algorithm> int arr[] = {5, 3, 8, 6, 2}; int n = sizeof(arr)/sizeof(arr[0]); std::sort(arr, arr + n); // Sorts in ascending order
Custom Sorting: Sort your way by using a special function to define your own sorting logic.
Quick Guide Table 📚
Sorting is super important for any C++ project! 💻 Hope this gives you a clearer picture. 🎉
4 notes
·
View notes
Text





The Communist Party of the Philippines (CPP)
Military wing: New People’s Army (NPA)
157 notes
·
View notes
Text

March 21, 2024 | Ang Bayan
Desperate to “finish off” the revolutionary armed resistance of the Filipino people, the US-Marcos regime’s armed tentacles is carrying out a rampant terrorist and fascist rampage throughout the country. Marcos and the AFP are set to make one false declaration after another that provinces have become “insurgency-free,” especially in areas that have long been targets of foreign corporations for mining, plantation and energy projects. At the behest of US imperialism, the AFP is also in a hurry to “end” the armed struggle of the Filipino people so that the US military can fully employ the AFP in its war of provocation against China which is likely to intensify in the coming year.
Marcos and the leadership of the Armed Forces of the Philippines (AFP) have recently ordered an all-out war. The declared aim of this war is to dismantle all NPA guerrilla fronts by the end of March, destroy all NPA combat units by the end of June, and destroy all regional Party committees before the end of the year. Thousands of military troops, alongside police combat troops and tens of thousands of paramilitaries armed by the AFP, have been dispatched to ravage the countryside.
Hundreds of villages are being garrisoned by Marcos’ fascist minions. Oppressive soldiers are controlling people’s lives and livelihoods, silencing them and trampling on their rights and freedoms. Checkpoints and food blockades, prohibiting people from working in their fields or swidden farms, armed soldiers occupying barangay centers, going house to house and forcing people to “surrender,” harassing young women or even married women, all-night drinking, beatings and altercations, indiscriminate firing of guns—this is how people perceive the rotten soldiers. Amid drought and disasters, fascist soldiers are like pests who bring nothing but disaster to their communities.
Using powerful weapons such as drones and jetfighters, helicopters and howitzers, Marcos’s terrorist soldiers are bombing mountains and fields, indiscriminately firing night or day, destroying the forests and poisoning waters, shattering the peace and causing deep trauma to the people, especially children, pregnant women and the elderly. These result in unnecessary number of lives lost, contrary to all principles and laws of civilized warfare.
The evil aim of Marcos is to instill fear in the hearts of the people and force them prostrate while allowing their land to be grabbed by big foreign capitalists and their partner comprador bourgeoisie and big landlords. But instead of falling on the ground, the people are more and more roused to stand up and fight, and tread the path of armed revolution.
In the guerrilla fronts across the country, the units of the New People’s Army (NPA) continue to enjoy deep and widespread support from the peasant masses. Military officers of the AFP and the reactionary state are furious that despite their intensified all-out war which has lasted for almost seven years, the peasant masses continue to provide political and material support to the Red fighters. Young farmers, as well as young students, workers, as well as professionals continue to join the people’s army.
The people’s desire to carry forward the armed struggle continues to burn. Amid fascist attacks perpetrated by the armed minions of the US-Marcos regime, and oppressive policies that worsen their plight, it is becoming clearer to the minds and consciousness of the peasant masses that they completely have nothing if they do not have the New People’s Army on their side to defend their lives and rights, and to fight with for their land and livelihood.
In recent years, the NPA has suffered losses and setbacks in various parts of the country due to the errors and weaknesses of conservatism and complacency with its previous accomplishments. Instead of boldly treading the path of continuous expansion and invigoration of the armed struggle, the scope and mass base of guerrilla units were reduced, and units became passive and vulnerable to enemy encirclement. Under the guidance of and inspired by the Party, the NPA is determined to rectify errors and move forward on the path of strengthening and galvanizing the people’s war.
In the spirit of the rectification movement, the NPA must more vigorously wage armed struggle in all parts of the country. Utilizing the broad mass movement in guerrilla warfare, they must use all weapons—guns and rocks, spears and punji traps, shotguns and landmines—and carry out large or small tactical offensives that can be won against weak and isolated parts of the enemy. Strike at the enemy’s fascist troops and all its tentacles by way of rendering justice for the people and inspiring their resistance. Only by waging widespread armed resistance can the NPA consolidate, overcome setbacks and strengthen.
Since its establishment, five and a half decades ago, the NPA has served as the true people’s army in promoting the revolutionary aspirations of the Filipino people for national democracy. On its coming anniversary on March 29, let us celebrate its accomplishments for the past 55 years, pay tribute to all the martyrs and heroes, and reaffirm the determination to advance the protracted people’s war, without fear of sacrifices and hardships, to achieve ultimate victory in the future.
#revolution#maoism#communism#revolutionary#marxism leninism maoism#communist#maoist#marxism#mlm#the philippines#pw#ang bayan#cpp
47 notes
·
View notes
Text


I haven't rly talked about it here but here's some of the art I've made for my animatronic pizza place concept, coyote pizza! it's based on the idea that nolan bushnell went with his original concept for a place called coyote pizza and that creative engineering made the animatronics for it like originally intended. past that they're basically just my ocs lol
#and you should ama abt them. u wanna ask me abt my ocs so bad ooooo#rockafire explosion#showbiz pizza#chuck e cheese#fnaf#coyote pizza#cpp#animatronics#animatronic#tags for visibility heehoo#juno.txt#juno.png#my art
52 notes
·
View notes