here's the navbar's original home not going away, the dark brown bar is what i need help removing
image of my problem, you can see the white line is the drop-down content hiding, and the navbar itself is sticky, however the drop-down isn't showing.
So i'm trying to get a navbar to stick out over...
This is the pastebin for my code: pastebin.com/gV01kTje
Basically I have an assignment where I need to create a calculator capable of up to 3 step equations and being able to do all PEMDAS operations in PEMDAS order. So far I've gotten it up to 3 step operations and being able to do addition...
Hello friends. I have a question that might be simple to answer, how can I configure certain things on my power plan through an exe file, so I won't need to manually configure it?
Thing is: where I work, I'm constantly formating machines, installing Windows 11, Office and doing some personal...
We can use binary search to find the target element in an array. First, we need to sort the array in ascending order. Then, we can use binary search to find the target element in the sorted array. The time complexity of this approach is O(nlogn), where n is the number of elements in the Array...
Hello everyone!
So today I will be asking some very important questions which many others might relate to. Your advice might influence my decision so its a request to answer this if you have reasonable amount of experience in the IT industry.
My short intro:
I am 26 year old. Completed my...
The problem that I am facing now is how to design & structure my project. Here is brief explanation of the roles of my application.
It executes a child process and controls them using ptrace. Thus I would be doing things like peeking, poking of the child process's address space.
I would also be...
Hey! I have to take a survey for a school project. can someone who has a job in coding/programming fill in the survey? If you want, you can also send the survey to others. it would help me so much. thank you very much!
https://forms.gle/cJrjMgGdwuTwkECq9
Interviews to beginner programmers.
I am just searching for a beginner programmer who can do a quick interview through Zoom of no more than 30 minutes for me to better understand my potential user's struggles and passions to, based on that, improve my company's idea.
I actually have tried to...
I just took a course that showed me all about CSS and I was really glad that I took this course.
I wish to share this course with you if you are interested reply to this post and I will send you the direct link to this course
I am trying to add a shipping rate calculator to my website - like the attached images and below site.
https://www.betweenbox.com/shipping-cost/
I would like to show a range of different carriers like... Royal Mail, FedEx, UPS, DHL
I have been searching the internet for hours and have not got...
5 positions open for a startup in Eastern, PA (long distance is most definitely an option thanks to technology!)
Reinventing the way we see the world (more details during/after interviewing process)
We are looking for (1 or many)
A Programmer who is fluent in C, C++, or Java. (Arduino...
Hey Everyone! I have started a YouTube channel for answering coding interview questions. Do let me know if you want step by step explanation for any specific Python related coding problem. My first episode gives a brief explanation for one of the questions I faced during an interview.
My aim...
Hi All,
I work for a company (not disclosing which) and we have to create announcements on our forum for upcoming releases.
We have to create announcements a day prior to the release on our internal board and then we move them to the product board on the day of the release.
Is there a way I...
Conclusion
Improving the game
There is a great amount of improvements that we could make to the game. It can however get complex pretty fast, so it is important to be comfortable with the basics of the programming language used before really getting into big projects.
Learning to code in C++...
Adding shadows
Lighting and shadows
Simulating lighting and shadows can greatly improve the visuals of a video game. It may however get very complex. For the sake of simplicity, here, we will only handle the display of shadows (And in a simple way).
Representation of colors
Colors are often...
Buying and using potions
Obtaining gold
Until now, there was no mean for the player to obtain gold. We will give the character a gold coin for each monster slayed.
In the section of code executed when the player kills a monster, we will add the following code:
// Increases the amount of gold by...
Adding a merchant and building
Adding the castle
We will add a small castle at the bottom left of the window. We load its texture and create its sprite:
sf::Texture castleTex;
castleTex.loadFromFile("resources/castle.png");
sf::Sprite castle;
castle.setTexture(castleTex);
castle.setScale(4, 4)...