#do my programming homework
Explore tagged Tumblr posts
Text

quick shapey sunday thing i painted to procrastinate on my drawing assignment
detail shot under keep reading

#artwork#digital art#hsr fanart#art#hsr#honkai star rail#rkgkillust#illustration#doodle#sunday#hsr sunday#penacony#hsr penacony#i haven’t painted so shaeply in a while i kind of miss this chunky painty thing#i’m entering my art block era so now the only thing i can draw is fanart#i should really get started on today’s leg of drawing homework but i really don’t want to#the dilemma#argvhgfhj i’ll go shower and then finish the homework#i don’t really have a choice#what fine art degree program does to a mf#i wish i were in animation#all my animation friends’ assignments look so much more interesting and rigorous and skill-building#we don’t even do figure drawing at my school and it’s ridiculous#ok i need to stop my rant and go shower#gbye for now
106 notes
·
View notes
Text
i tried to play into tumblr's automatic video looping but you can also watch it on youtube with subtitles for the dialogue, it's not that important, it's more about the idea of the loop than the experience
#agatha all along#not perfect but im pretty pleased with this as a first impression#i mean it's literally only been 3 days it's gonna take simmering for a while before i come up with like#the really interesting ideas and visuals#but this already has some potential#i especially like the second verse#the 'please let him live' with the dandelion and rio blowing the protection sand circle away#giving response to the request but not in any way agatha can understand#and that sequence of dandelion-rio-baby is just so on point both idea-wise and rhythm-wise#and the covens/hands/binding ritual part#'you hold nothing' -> agathas empty (healed by rio) hand and her three of swords#i also like the second refrain/fighting sequence#especially the sequence of agatha killing her coven-dead witches become knife on the floor-she looks at it-death looks at her#anyway. nice to make a video again#already started a second one for them but i dont know when im finishing that one since my editing program situation is not ideal rn#and also i have homework to do
68 notes
·
View notes
Text
folie mspaint doodles
i think she's so adorbz i hope she gets an avatar one day
#just dance#just dance fanart#folie#trashcan#she's so crayzayyy love her#digging down my files to see what i can post cuz im so just dance brained rn#i've been running out of arts to post lately cuz i've been doing homework lol mspaint it is#my fave art program out of pure laziness
43 notes
·
View notes
Text
if i’m not constantly stressed and busy, then i’m lazy and wasting valuable time, but if i am constantly stressed and busy then i am constantly stressed and busy
#and that my friends is the capitalist propaganda brainrot#the dilemma of all time#my posts#i’m busy every saturday and monday and tuesday and wednesday#and i’m about to sign up for something else on fridays#and that leaves my designated days of rest to thursday and sunday#but see#thursday is a week day so it’s not really a rest day#and sunday is… a sunday#and i gotta spend today prepping my debate speech anyway#i am so behind on that omfg#but i still don’t feel like im doing enough fr#like i don’t play a sport#i’m not in any APs rn#i’m not signed up for dual enrollment#so what’s the point if i tutor people and do debate and join a resume building program?#my shit is not that impressive in the grand scheme of things#and i feel like one day im gonna look back at myself and be frustrated because i wasn’t busy enough#spent too much time fucking around on the internet or whatever and not enough time signing up for more shit#with the way things are going now i am not setting myself up for a scholarship#i have a 4.0 but it could’ve been a 4.5#or it could’ve been a 4.0 with a sport#or a 4.0 with an internship#but it’s not#and it's not like i'm even good at debate either#it's not gonna count towards a scholarship if i'm simply IN it but i'm not any good at it#and i don't even know why i'm so stressed fr#i have at least 3 hours to myself every day not counting homework and dinner#dios mio…
6 notes
·
View notes
Text
i will say though my decision to do an online program at the same time as my part time job was so smart because i think academia for three more years woulda killed me AND the anxiety about not having any job experience would have ALSO gotten to my head
#musings#i still feel like a total baby but i am for sure learning things at my job!#one of my most satisfying moments in the last month was being able to draw from my work experience for homework#we had to design a hypothetical program and i was like. that is literally my entire job at work. thats what i do.
10 notes
·
View notes
Text
I AM SO GOOD AT CIRCUIT BUILDING AND PROGRAMMING RAAAAA
C++ script under cut :3
int UpDown; //value for the Y direction of controller
int LeftRight; //value for the x direction of controller
int LR_neutral; //value for the 0 position in the y direction of controller
int UD_neutral; //value for the 0 position in the x direction of controller
int Bprev; //value for button edge detection
int Bcurr; //value for button edge detection
int R;
int Y;
int G;
int B;
void setup() {
Serial.begin(9600); //begin communication
pinMode(A2, INPUT); //button press detection
pinMode(4, OUTPUT); //set pin 4 to power the Red LED
pinMode(5, OUTPUT); //set pin 5 to power the Yellow LED
pinMode(6, OUTPUT); //set pin 6 to power the Blue LED
pinMode(7, OUTPUT); //set pin 7 to power the Green LED
LR_neutral = analogRead(A1); //set zero position of controller
UD_neutral = analogRead(A0); //set zero position of controller
//WARNING!!! YOU CAN NOT TOUCH CONTROLER WHEN INITALIZATION HAPPENS!!!! WILL MESS CONTROLLER UP
}
void loop() {
LeftRight = analogRead(A0); //read X position of controller
UpDown = analogRead(A1); //read y position of controller
Bprev = Bcurr; //set current button state to previous state
Bcurr = analogRead(A2); //set current button state equal to actual button state
if ((Bprev == 0) && (Bcurr > 0)){
//turns all LED on
digitalWrite(4,HIGH);
digitalWrite(5,HIGH);
digitalWrite(6,HIGH);
digitalWrite (7,HIGH);
delay(100); //wait
//turns all LED off
digitalWrite (4,LOW);
digitalWrite (5,LOW);
digitalWrite (6,LOW);
digitalWrite (7,LOW);
}
if (UpDown >= UD_neutral) { // checks if controller is up
B = 0; //if up turns blue LED off
R = map(UpDown, UD_neutral,1023,0,255); //if up turns red LED on
}
else {
R = 0; //if down turns red LED off
B = map(UpDown, UD_neutral,0,0,255); //if down turns blue LED on
}
if (LeftRight >= LR_neutral) { // checks if controller is right
G = 0; //if right turns green LED off
Y = map(LeftRight, LR_neutral, 1023,0,255); //if right turns yellow LED on
}
else {
Y = 0; //if left turns yellow off
G = map(LeftRight, LR_neutral, 0,0,255); //if left turns green on
}
//writes values to LEDs
analogWrite(4,R);
analogWrite(5,Y);
analogWrite(6,B);
analogWrite (7,G);
}
#Do you want to learn C++#because I know C++#people who know what they are doing know that this code has several issues tho :/#but it works!!!#And I'll take that#programing#circuit diagram#curcuits#prototype circuit#arduino#I'M GONNA MAKE A ROBOT AND NO ONE CAN STOP ME#yes this is unironically my homework#I love college!
5 notes
·
View notes
Text
its not even 11:30 on the first day of school and i'm done for the day. is this why morning people are like that?
#granted. technically the only class i had today was canceled. i only met with the instructor cuz of my disability stuff#and that was more just both of us making sure we're on the same page re: the attendance requirements#(i'm ok to miss as long as i email her asap. if i miss too much she'll check in with my advisor. that's scary so i'll be good about emails)#i technically have access to the homework for this week but we're going over how to use the programs in lab tomorrow so i don't wanna yet#the other class i've got online access to the prof said we're gonna go over things tomorrow in class#and i don't have access to anything else until the rest of them open up their canvas pages#so there really isn't that much i can do yet anyway#but its still very odd. first day of school and i'm done before lunch
3 notes
·
View notes
Text
it's ridiculous to give someone their first pair of glasses then expect them to want to navigate the world without them after that, but somehow it's expected that ppl with ADHD should just deal w/ not having their normal prescription
#kind of emotionally dealing w/ the possibility of not having my meds or a very limited supply of them while abroad#like the odds aren't . great#like best case scenario is i can bring -two weeks- worth of ADHD meds for a 12 week program#if im lucky i could somehow get a prescription while there but the country i'll be in is normally BAD about ADHD medication#many ppl believe if you're not unemployed or completely helpless then you dont need it#and its like. my meds do more than just help me do homework they get rid of inhibitions around socialization and make dealing w/#overstimulation and exhaustion and emotions much easier#i already got mad about doctors starting to suggest i dont take my meds on weekends when its like .#I deserve to feel capable on my days off too. but also IM A UNI STUDENT I DONT GET DAYS OFF ON THE WEEKEND#OR ANY DAYS FOR THAT MATTER
4 notes
·
View notes
Text
How to Overcome Writer’s Block During Assignment Deadlines
Writer’s block is a common challenge faced by students, particularly when assignment deadlines loom large. It can be frustrating and demotivating, leading to anxiety and a sense of helplessness.
At AssignmentDude, we understand the pressures that come with academic life, particularly in demanding fields like data science, programming, and other technical subjects.
Our urgent programming assignment help service is designed to support students who find themselves overwhelmed by tight deadlines or complex topics. Whether you need assistance with coding assignments or help structuring your essays, our expert tutors are here to provide personalized guidance tailored to your needs.
When you’re facing writer’s block, it can feel like you’re stuck in quicksand — every attempt to write just pulls you deeper into frustration.
This is where AssignmentDude can make a difference. By utilizing our services, you can alleviate some of the pressure and focus on developing your writing skills without the added stress of looming deadlines.
Our team is dedicated to helping you succeed academically while fostering a deeper understanding of your subject matter.
In this article, we will delve into various strategies for overcoming writer’s block, including practical tips for managing your time effectively and maintaining motivation throughout your writing process. Let’s explore these strategies in detail.
Understanding Writer’s Block
What Is Writer’s Block?
Writer’s block is a psychological condition that prevents individuals from being able to write or produce content. It can manifest in various forms:
Inability to Start: You may find it difficult to begin writing even when you have ideas.
Lack of Ideas: You might feel completely blank and unable to generate any thoughts related to your topic.
Perfectionism: The desire for perfection can lead to procrastination and an inability to produce anything at all.
Fear of Judgment: Worrying about how others will perceive your work can paralyze your ability to write.
Causes of Writer’s Block
Understanding the root causes of writer’s block can help you address it more effectively. Common causes include:
Stress and Anxiety: Academic pressures, personal issues, or fear of failure can contribute significantly to writer’s block.
Overwhelm: Facing a large project or multiple assignments at once can lead to feelings of being overwhelmed.
Distractions: A noisy environment or constant interruptions can hinder concentration and creativity.
Fatigue: Lack of sleep or burnout from continuous studying can impair cognitive function and creativity.
Strategies for Overcoming Writer’s Block
1. Set Clear Goals
One effective way to combat writer’s block is by setting clear, achievable goals for your writing sessions. This involves breaking down your assignments into smaller tasks that feel less daunting.
How to Set Goals:
Be Specific: Instead of saying “I will work on my essay,” specify what part you’ll tackle first, such as “I will write the introduction.”
Assign Timeframes: Allocate specific time slots for each task. For example, “I will write for 30 minutes on my introduction.”
Prioritize Tasks: Determine which sections are most critical and focus on those first.
2. Create a Writing Schedule
Establishing a regular writing schedule can help create a routine that makes writing feel more automatic rather than daunting.
Tips for Creating a Schedule:
Choose Your Best Times: Identify when you are most productive — whether it’s morning or evening — and schedule your writing sessions accordingly.
Block Out Distractions: During your scheduled writing times, eliminate distractions by turning off notifications on your devices or using apps designed to minimize interruptions (like Focus@Will).
3. Break Down Your Tasks
When faced with an overwhelming assignment, breaking it down into smaller steps can make it more manageable.
Steps for Breaking Down Tasks:
Outline Your Assignment: Create a detailed outline that breaks down each section of your paper.
Focus on One Section at a Time: Concentrate on completing one section before moving on to the next.
Set Mini-Deadlines: Assign mini-deadlines for each section based on your overall deadline.
4. Embrace Freewriting
Freewriting is an excellent technique for overcoming writer’s block because it allows you to write without worrying about structure or grammar.
How to Practice Freewriting:
Set a timer for 10–15 minutes.
Write continuously without stopping or editing yourself.
Focus on getting ideas down rather than producing polished content.
This exercise helps clear mental blocks and often leads to unexpected insights that you can refine later.
5. Change Your Environment
Sometimes a change of scenery can stimulate creativity and help overcome writer’s block.
Tips for Changing Your Environment:
Find a New Location: Try writing in a different room, a coffee shop, or a library.
Create an Inspiring Workspace: Decorate your workspace with motivational quotes, plants, or artwork that inspires you.
6. Take Breaks
Taking regular breaks during writing sessions can help refresh your mind and prevent burnout.
Techniques for Effective Breaks:
Use the Pomodoro Technique: Work for 25 minutes followed by a 5-minute break; after four cycles, take a longer break (15–30 minutes).
Engage in Physical Activity: Use breaks to stretch, take a walk, or do some light exercise — this helps increase blood flow and boosts creativity.
7. Seek Feedback Early
Getting feedback early in the writing process can provide clarity and direction that may alleviate feelings of uncertainty contributing to writer’s block.
How to Seek Feedback:
Share drafts with peers or mentors who can provide constructive criticism.
Join study groups where members review each other’s work regularly.
Utilize platforms like AssignmentDude for professional feedback on specific sections of your assignments.
8. Utilize Writing Prompts
Writing prompts are great tools for sparking creativity when you’re feeling stuck.
Examples of Writing Prompts:
“What if I approached this topic from an entirely different angle?”
“How would I explain this concept to someone without any background knowledge?”
Using prompts allows you to explore different perspectives without the pressure of perfectionism.
9. Manage Your Time Effectively
Effective time management is crucial when facing tight deadlines that contribute significantly towards writer’s block due increased stress levels associated completing tasks last minute!
Techniques for Time Management:
1 . Prioritize Tasks: Identify which assignments are most urgent based upon their due dates; focus efforts accordingly!
2 . Create A Timeline: Develop timelines outlining key milestones leading up until submission dates! This helps visualize progress while keeping track deadlines ensuring nothing falls through cracks!
3 . Avoid Procrastination: Combat procrastination by setting specific times each day dedicated solely towards working on assignments — eliminating distractions during these periods enhances focus productivity!
10. Stay Motivated
Maintaining motivation throughout the writing process is essential! Here are some strategies that may help keep spirits high even during challenging times:
Tips For Staying Motivated
1 . Set Clear Goals :
Define specific short-term long-term goals related what want achieve within field Data Science .
2 . Break Down Tasks :
Divide larger tasks manageable parts so they feel less overwhelming; celebrate small victories along way!
3 . Reward Yourself :
After completing significant milestones — treat yourself! Whether it’s enjoying time off indulging something special — positive reinforcement helps keep spirits high!
11.Seek Help When Needed
Despite all efforts , there may be times when assignments become too challenging time-consuming . In such cases , don’t hesitate seek help from professionals who specialize providing assistance tailored specifically students facing difficulties .
Why Choose AssignmentDude?
AssignmentDude offers urgent programming assignment help services designed specifically students who find themselves overwhelmed tight deadlines complex topics within coursework! Our expert team available around-the-clock ensuring timely delivery without compromising quality standards!
By reaching out when needed — whether it’s clarifying concepts related directly back onto assignments — students can alleviate stress while ensuring they stay ahead academically!
Additional Tips for Success in Writing Assignments
While we’ve covered numerous strategies already let’s delve deeper into some additional tips specifically aimed at helping students overcome challenges they may face during their assignments:
Understand Assignment Requirements Thoroughly
Before starting any assignment take time read through requirements carefully! This ensures clarity around what exactly expected from submission — avoid misinterpretations which could lead wasted effort down wrong path!
Tips To Clarify Requirements:
1 . Highlight Key Points :
Identify critical components outlined within prompt such as specific methodologies required datasets needed etc .
2 . Ask Questions :
If anything unclear don’t hesitate reach out instructors classmates clarify doubts early-on rather than later when deadlines approaching!
3 . Break Down Tasks :
Once understood break down larger tasks smaller manageable chunks creating timeline completion helps keep organized focused throughout process!
Collaborate With Peers
Forming study groups collaborating classmates provides opportunity share knowledge tackle difficult topics together! Engaging discussions often lead new perspectives understanding concepts better than studying alone!
Benefits Of Collaboration :
1 . Diverse Perspectives :
Different backgrounds experiences lead unique approaches problem-solving enhancing overall learning experience!
2 . Accountability :
Working alongside others creates accountability encourages everyone stay committed towards completing assignments timely manner!
3 . Enhanced Understanding :
Teaching explaining concepts peers reinforces own understanding solidifying grasp material learned thus far!
Embrace Feedback
Receiving feedback from instructors peers invaluable part learning process! Constructive criticism highlights areas improvement helps refine skills further develop expertise within field!
How To Embrace Feedback Effectively :
1 . Be Open-Minded :
Approach feedback positively view it as opportunity grow rather than personal attack — this mindset fosters continuous improvement!
2 . Implement Suggestions :
Take actionable steps based upon feedback received make necessary adjustments future assignments ensure progress made over time!
3 . Seek Clarification :
If unsure about certain points raised during feedback sessions don’t hesitate ask questions clarify how best address concerns moving forward!
Explore Advanced Topics
Once comfortable foundational aspects consider exploring advanced topics within realm Data Science! These areas often require deeper understanding but offer exciting opportunities expand skill set further enhance employability prospects post-graduation!
Advanced Topics To Explore :
1 . Machine Learning Algorithms :
Delve into supervised unsupervised learning techniques including decision trees random forests neural networks etc .
2 . Big Data Technologies :
Familiarize yourself tools frameworks such as Hadoop Spark which enable processing large-scale datasets efficiently!
3 . Deep Learning :
Explore deep learning architectures convolutional recurrent networks commonly used image/video processing natural language processing tasks alike!
4 . Natural Language Processing (NLP):
Learn techniques analyze interpret human language allowing applications chatbots sentiment analysis text classification etc .
5 . Cloud Computing Solutions :
Understand how cloud platforms AWS Azure Google Cloud facilitate storage computing power needed handle large-scale analytical workloads seamlessly across distributed systems .
Conclusion
Navigating through challenging assignments in Data Science requires dedication , practice , effective communication skills — and sometimes assistance from experts !
By following these tips outlined above while utilizing resources like AssignmentDude when needed — you’ll be well-equipped not just academically but also professionally as embark upon this exciting journey!
Remember that persistence pays off ; embrace each challenge opportunity growth ! With hard work combined strategic learning approaches — you’ll soon find yourself thriving within this dynamic field filled endless possibilities !
If ever faced difficulties during assignments related specifically C++ , don’t hesitate reaching out AssignmentDude — we’re here dedicated support tailored just YOU!
Together we’ll conquer those challenges ensuring success throughout entire learning process! This guide provides comprehensive insights into overcoming writer’s block during assignment deadlines while offering practical tips for students facing challenges
#do my programming homework#programming assignment help#urgent assignment help#assignment help service#final year project help#php assignment help#python programming
0 notes
Text

As a student, juggling multiple assignments and deadlines can be overwhelming, especially when it comes to complex subjects like PHP. When I found myself struggling with my PHP assignments, I knew I needed expert help. That's when I turned to ProgrammingHomeworkHelp.com for assistance. They not only do My PHP assignment also helped me meet my deadlines but also improved my understanding and grades significantly.
One of the things that impressed me the most about ProgrammingHomeworkHelp.com was their team of experts. Each expert was highly knowledgeable and experienced in PHP, ensuring that my assignments were completed to the highest standard. They were also very responsive and communicative, keeping me updated throughout the process and addressing any concerns I had promptly.
Another aspect of their service that stood out to me was their commitment to quality. Every assignment I received was well-researched, properly formatted, and free of plagiarism. This not only helped me score better grades but also boosted my confidence in the subject.
I also appreciated the flexibility of their service. Whether I needed help with a simple PHP script or a more complex project, ProgrammingHomeworkHelp.com was able to accommodate my needs. They were also very accommodating when it came to revisions, ensuring that the final deliverable met my expectations.
Overall, my experience with ProgrammingHomeworkHelp.com has been extremely positive. Thanks to their expert help, I was able to excel in PHP and achieve the grades I had always wanted. If you're struggling with your PHP assignments, I highly recommend their services. Trust me, you won't be disappointed!
#assignment help#programming assignment help#programming homework help#university#education#pay to do my assignment#student#college#PHP#PHP Assignment Help
12 notes
·
View notes
Text
.
#i didn't even get twenty minutes in. why did i start crying? it's stupid. im stupid. im supposed to be the smart one. i always have been.#even since i was young. my mom said she never helped me with my homework because i never needed help. now i don't know what to do.#i tried what i did yesterday it isn't working. i have so much work to do. three essays and two tests to study for. i can't study for either.#these essays are going to take forever and ones due tomorrow while the other two are due on Friday.#im so tired. i don't want to do this. but I'll fail if i don't. I can fail. if i faul this program thats just more money my mom has to pay.#i don't know what to do. im sorry.#vent
5 notes
·
View notes
Text
Idea from tenth grader, don't go on the maths and tech profile in high school only because 'it's gonna pay well' and 'you're good at math'
Or if you do keep the pressure as low as possible
Please
(edit did I just go on a small tag rant lol)
#there's a math exercise for homework asking me to solve a thing that looks easy in two different ways#I don't know how to start the first way#fuck high school#I just wanna theater man#'you're good with numbers' OKAY AND!? THERE ARE NO NUMBERS IN MATH ANYMORE-#literally none of this will be of any use to me EVER#but the lazy ass people in the educational system won't make an actually updated program or whatever that's called#'pay your taxes' 'okay okay but did you know arcctg of -1/rad3 is 2pi/3?'#not to mention physics holy shit#what's gonna pay the bills? the carnot cycle?#and ye I know I picked this profile#I'm not that much of a hypocrite#but COME ON man#lemme rant someimes#just let me half ass it already#ugh#all that the maths and tech profile taught me is that I want nothing to do with neither of them#unless I hit my head or something major changes in the next two and a half years there's no way I'm going on something similar in uni#sorry I literally see no spark in it#'it pays well' good for it I'll go on a diet then
4 notes
·
View notes
Text
Can’t believe I got my midterm grade back on International Lesbian Day this is homophobia
(I had to take this midterm without my extended time accommodations since I haven’t had the time to meet with disability resources at my new school yet and. Well. Let’s just say that YEP, I definitely really need those accommodations 🥲)
#vent#graduate school jeremiad#svet.txt#At least I have near perfect homework scores thus far? Like I feel like I am learning the material pretty well#Which … honestly just adds insult to injury that my stupid gddamn ridiculously slow processing speed meant my exam grade couldn’t reflect t#It was the first exam in a while I had to leave questions I knew how to solve blank due to running out of time#I hate timed tests I hate them I hate them I hate them#I’m so looking forward to getting to just. Do research without having to even THINK about these bastards ever again#But to do that I have to survive qualifying exams first#Which means more timed tests! With extremely high stakes dictating whether I get to stay in my dream program! Yaaaay :’)
4 notes
·
View notes
Text
i love coding <- heavily caffeinated
#laptop wasn’t working so i wrote out a method/notes on a program and my brain is AWAKE#i want to stare at this program for hours. i have other stuff to do tonight but I HAVE TO CHASE THE MOTIVATION#current plan is to listen to really loud music + get the program working to reset myself and then look at… my other homework 😒#i also have to like. do laundry and shower. 😒😒😒😒#idk if the lab computers have netbeans but i’ll code on bluej if i have to. gary i NEED to program this
6 notes
·
View notes
Note
Do you have an education?
SCHOOL OF LIFE, ANON. SCHOOL OF LIFE. I'M NOT A SUCKER: I DON'T NEED A BUNCH OF PIECES OF PAPER AND CRIPPLING POST-SCHOOL STUDENT LOAN DEBT TO PROVE I KNOW THINGS! ALSO YOU ARE TALKING TO THE ALL-SEEINGEST OF ALL-SEEING-EYES, YOU KNOW. BOY, THE THINGS I'VE ""LEARNED"" OBSERVING YOUR SPECIES FROM EVERY ANGLE AND FROM INSIDE YOUR HEADS AND SAUSAGE BODIES - WOOF!
#ask bill cipher#inbox reply#THE EDUCATIONAL SYSTEM IS JUST CONFORMING PROGRAMMING ANYWAY#JOIN MY ARMY AND NEVER DO HOMEWORK AGAIN KIDS!!#ask me anything#ask blog open
2 notes
·
View notes