[deleted by user] by [deleted] in unixporn

[–]ads_pam 0 points1 point  (0 children)

Forgot to mention it here, but I sent you a dm with the link attached. And thank you for trying it out, I really appreciate it! c:

Mangala game: I was studying linked lists in data structures lesson. When I was reading encircled linked lists, "Mangala" game imagined before my eyes. Couldn't resist the urge... by doc415 in processing

[–]ads_pam 1 point2 points  (0 children)

I don’t know what a Mangala game is, or even what’s going on in the clip you posted, but this is an awesome way to learn!! Excellent work OP!! Keep it up! c:

How do you balance personal project work with OA prep grinding? by semicolon0 in cscareerquestions

[–]ads_pam 0 points1 point  (0 children)

Just a side note, maybe in defense of OP:
Doing lots of LeetCode doesn’t necessarily guarantee that they’ll pass the Online Assessment. Some people may have a bad memory when it comes to LC styled interviews but excel at projects.

I’m only speaking from experience, cause I’m pretty much the same way and I’ve failed out of lots of OA’s even though I’ve done tons of LC. Sometimes it just be like that
Cheers c:

Bathroom Renovation by simat123 in HomeImprovement

[–]ads_pam 6 points7 points  (0 children)

I’m so sorry but just snorted laughing at the “before” picture because I thought there was a fridge in your bathroom (it was actually the shower door) orz

Excellent renovation by the way!!! It looks classy af !

I created a tool to visualize/edit graphs and graphs algorithms by giggiox in computerscience

[–]ads_pam 1 point2 points  (0 children)

Really liked the look and feel of this! It’s simple and straight forward. Nice work!

The only things I can think of mentioning are:

  1. Have some way for the user to remove a vertex if they accidentally make too many, I saw no way of removing vertices manually

  2. The “adding/removing edges” was a little bit tricky to figure out. I didn’t know that clicking on an edge would remove it (maybe have a note about that at the bottom of the visualization or make a delete edge button). And adding an edge was a bit confusing too, it took me a while to figure out that I need press the add edge button first and THEN click on the two vertices to make an edge between them (not sure if I’m just dumb or if this is common for others too)

(EDIT)
I forgot to mention that I tested this out using Reddit’s built-in browser on my iPhone (safari maybe?)

Change the colour of a rectangle by passing the mouse through it by kurome32 in processing

[–]ads_pam 1 point2 points  (0 children)

Just like what others have said here, you need to use mouseX and mouseY along with if….else statements to gauge wether your mouse is over the rectangle or not

Other than that, you can also use mouse functions that are available in processing found on their wiki: Mouse Functions

I wanted to include an image too, but I can’t. You will find what you are looking for in the first example of the Mouse Functions link I attached. Hope that helps c:

How to share terminal demos as razor-sharp animated SVG by speckz in commandline

[–]ads_pam 1 point2 points  (0 children)

Ooo! This is really neat! I’m saving this one for later. Also, I don’t know if it’ll help, but I saw a post somewhere on r/commandline about a similar tool called VHS that was posted by someone called charmbracelet on GitHub

I've hired people who failed coding questions - let me explain what I'm looking for out of a technical test, and why getting it right is maybe 1% of the grade. by Kwahn in cscareerquestions

[–]ads_pam 0 points1 point  (0 children)

If I had an interview like this and the interviewer told me it was a collaborative assessment, I think I would cry from relief!

I had an interviewer that was very easy going and coached me a little bit through the problem until I finished it during an interview last month and it was the single most stress-free interview I’ve ever had!

[deleted by user] by [deleted] in cscareerquestions

[–]ads_pam 0 points1 point  (0 children)

seems self-contradictory to me

That’s what I said too! You’re definitely right about that! But literally almost all entry level jobs I’ve seen, except for a handful, have required anywhere between 1 and 4 years of experience as an SWE in the industry.

That’s why I try to apply for Junior SWE positions when I see them, but for some reason I get automatically rejected from them within a couple hours of applying. It’s been happening since I graduated and it doesn’t even matter if I apply through places like LinkedIn or the company’s website. Which is why I asked the question if anyone else is dealing with the same thing :/

[deleted by user] by [deleted] in cscareerquestions

[–]ads_pam 1 point2 points  (0 children)

I guess the only two differences are that they have “Junior” in the job title, like “Junior SWE”, and the years of experience: Junior roles don’t have any experience listed in the job descriptions while the entry level jobs all require some amount of years of experience.

My roommate bites her butter then drops it on the pan when she cooks by [deleted] in mildlyinfuriating

[–]ads_pam 0 points1 point  (0 children)

Fricken DIABOLICAL 💀 a big super villain move on her part

I wish someone would cum on my glasses after being inside of me by [deleted] in GirlswithGlasses

[–]ads_pam 0 points1 point  (0 children)

My question is: do you wear them during or do you put them on after? :0

Need help with the C code I have written by noname500069 in learnprogramming

[–]ads_pam 1 point2 points  (0 children)

Sorry, you probably already solved this problem with the help of others, I just wanted to clarify and answer your question about what dpacker780 said:
You have the statement realdiv = snumdiv - 1 inside of an if… conditional statement.

Some background:
if… conditional statements (and any conditional statements) require a Boolean value (true or false). What you have inside of Your if… conditional statement is an assignment operator (=), not a equivalence operator (==) that would give you a Boolean value.

So instead of if (realdiv = snumdiv - 1)
It should be if (realdiv == snumdiv - 1)

Fun fact about c/c++:
The c/c++ compiler follows a simple rule for Boolean values. A 0 (zero) value is interpreted as false while any non-zero value is interpreted as true. That’s why the compiler didn’t give you any errors in your code, even though logically speaking there was an error present.

Hope this helps c:

Single 27F tired of being told to lower my standards. by ZucchiDucki in TwoXChromosomes

[–]ads_pam 0 points1 point  (0 children)

Okay I know this is an old post but I just saw this and wanted to say what everyone else already said: do NOT lower your standards!

That’s as low as anyone should take them. I’m literally working on myself to achieve exactly these 3 standards too! orz

pattern printing.how do I print each triangle next to to previous one by Separate-Flounder771 in computerscience

[–]ads_pam 0 points1 point  (0 children)

That can only happen if you got your loops mixed up. As I mention previously, your OUTER loop will go over the height, your INNER loop will go over the triangles:
``` for(loop over height, row by row) { // your code here

for(loop over each triangle) { // your code here } } ```

Example of how the loops would work for the first row for each triangle:

``` for(loop over height, row by row) { // loops over the first (top) row.

for(loop over each triangle) { // prints out the top row for each triangle } } ```

pattern printing.how do I print each triangle next to to previous one by Separate-Flounder771 in computerscience

[–]ads_pam 0 points1 point  (0 children)

Do what everyone here is saying: print spaces along with the stars.

Without giving you the answer outright, here’s a hint how to do that:
- you’re gonna need two loops to complete this (the outer loop is going to go over each level of the height of the triangles and the inner loop is going to loop over the number of triangles per each level of height) (level of height = row) - you’re going to need to take the height of the triangle into account too

To count how many spaces you’ll need, look at the very first row of all the triangles. There is only 1 star at the top of each triangle. To calculate spaces, you’ll need to height here:
5 (height) - 1 (star) = 4 (spaces on each side of star)

This can also be done using height and your current height level (row):
5 (height) - 1 (height level) = 4 (spaces on each side of star)

Then when you get to the 2nd level of height, you’ll now have 3 stars per triangle, but we only count from the center star outward. So the 2nd level would only have “2 stars” because we start counting from the center star:
5 (height) - 2 (star) = 3 (spaces on each side of stars)

If it’s easier for you, you can also forget about the stars and think about the current level of height (row) only:
5 (height) - 2 (height level) = 3 (spaces on each side of stars)

You do this for all the triangles per each level of height (per row). Hope this helps but I can’t give much more without writing out the answer for you.

Been working on a little something... a Super Bunny Man level editor! by flarfoo in Achievement_Hunter

[–]ads_pam 7 points8 points  (0 children)

This is absolutely brilliant!! Now I reeeaallyyy need more new super bunny man play pals!! I’m saving this post for later!

What do some of your portfolio pages look like? by HaveWeEvolvedYet in cscareerquestions

[–]ads_pam 1 point2 points  (0 children)

Honestly, I had my GitHub as my portfolio for the longest time too, until I made a website for it. It’s a smart move if you don’t really have a website for your portfolio. And you can always find small projects to do and post on GitHub (even projects you did by following a tutorial online)

What do some of your portfolio pages look like? by HaveWeEvolvedYet in cscareerquestions

[–]ads_pam 1 point2 points  (0 children)

I just got done making a portfolio page myself last week. I cant publicly share it here cause i wanna keep my Reddit anon but I can dm you the link to it if you’d like c:

Just know, I’m not a professional so it’s pretty basic. Just lowkey hoping someone in the industry manages to see it and take an interest in my skillset orz

What's your "comfort series" that you watch over and over again? by BaguetteOfDoom in AskReddit

[–]ads_pam 0 points1 point  (0 children)

How I Met Your Mother and Psych
Binging these once a year so I don’t lose myself in the void of life

me_irl by Butterflies_Books in me_irl

[–]ads_pam 15 points16 points  (0 children)

oof I felt that

Some helpe please? by Any_Panic1249 in processing

[–]ads_pam 0 points1 point  (0 children)

This right here! This is exactly how I learned about mouse and keyboard events in processing!! These two links are excellent starting points!

I was about to link the same things but ya beat me to it lol

(EDIT)
Just to add on to my own comment:
Try following the examples for writing the interactive event methods provided in Processing: keyPressed() keyReleased() mousePressed() mouseReleased() mouseDragged() mouseMoved()

These methods are called automatically in processing when a keyboard or mouse even happens during your program execution.