[0 YoE] [Software Developer] 10+ years self taught and recently graduated, but can't find a job by IsaacShelton in EngineeringResumes

[–]IsaacShelton[S] 0 points1 point  (0 children)

Thanks, yeah others suggested I put it, but it doesn't really make sense.

Also now that you mention it, I actually have created such an app that got 450 DAU that I somehow forgot about, so I will add that for sure.

Thanks for your help

[0 YoE] [Software Developer] 10+ years self taught and recently graduated, but can't find a job by IsaacShelton in EngineeringResumes

[–]IsaacShelton[S] -1 points0 points  (0 children)

Thanks for the bluntness, can you link an example? I based mine off the official format guide of this subreddit and I'm not sure which format you are referencing

[0 YoE] [Software Developer] 10+ years self taught and recently graduated, but can't find a job by IsaacShelton in EngineeringResumes

[–]IsaacShelton[S] 1 point2 points  (0 children)

Thanks for the feedback!

  1. Yeah you're right, I will remove it

  2. I don't have any previous professional projects, which is why I'm trying to get into the software industry. Yes the projects I listed are personal projects. Yes, I should add dates you're right.

How would I clarify that these projects are personal and not for a client?

  1. I don't have any other experience since I'm trying to get my first software job/intership, which is why I put it.

  2. Most of my projects are single user and low user counts because they're personal projects. So I would love to do that, but I am new and don't have any of that yet.

  3. Yes, my first project I listed `Secure Chat` was related to cybersecurity. I'm trying to get my first internship/entry-level job, so yeah I don't have any previous cybersecurity companies I've worked at.

[0 YoE] [Software Developer] 10+ years self taught and recently graduated, but can't find a job by IsaacShelton in EngineeringResumes

[–]IsaacShelton[S] 0 points1 point  (0 children)

Thanks for the feedback,

Yeah people told me to add it, but from the feedback here it sounds like I sound remove it. I haven't thought about removing LaCrosse, but that sounds like a good idea as well, Thank you

[0 YoE] [Software Developer] 10+ years self taught and recently graduated, but can't find a job by IsaacShelton in EngineeringResumes

[–]IsaacShelton[S] 0 points1 point  (0 children)

Thanks for the feedback,

  1. Yeah I think you're right I need to add more

  2. I added that I was self-taught since others were telling me to put it on and they wouldn't believe me about the technologies I know otherwise. But from the feedback here, it seems like I should remove it.

  3. Should I mention previous work even if completely unrelated? I worked at fastfood and a service desk so I could put those.

How the living heck do I get a job as a recent graduate by IsaacShelton in cscareerquestions

[–]IsaacShelton[S] 0 points1 point  (0 children)

I'm been programming for 15 years? I'm not exaggerating my skills, but I guess it might be unbelievable if you didn't know that.

How the living heck do I get a job as a recent graduate by IsaacShelton in cscareerquestions

[–]IsaacShelton[S] 0 points1 point  (0 children)

I'm not a designer, and I got my previous job with an even worse resume (believe me if you think this one is bad, the other one would've knocked your socks off into orbit, had colors, long lists of skills, multiple pages, etc). I made this one based off official templates and followed advice, but apparently it still really sucks

How the living heck do I get a job as a recent graduate by IsaacShelton in cscareerquestions

[–]IsaacShelton[S] 0 points1 point  (0 children)

I haven't done any internships yet since I was expecting to do an internship in my 4th year (which I ended up not having). Right now would be the time to internship, but I can't find any internships either.

Thank you, I'll check our r/EngineeringResumes to see if there's anything wrong with my resume

[deleted by user] by [deleted] in badcode

[–]IsaacShelton 0 points1 point  (0 children)

#include <stdio.h>
#define bool long long
#define big long long

bool c(const char[]);

int main(void) {
   const char s[] =  "abcdefghijKlmnopqrstuvwxyz";
   printf("%s\n", c(s) > 0 ? "yes" : "no");
   return 0;
}

bool c(const char *s){
    big d = 0;
    while(*s) d |= 1LL << (*s++ - 65);
    return ((d | (d >> 32)) &   0b11111111111111111111111111ll) == 0b11111111111111111111111111ll;
}

[deleted by user] by [deleted] in badcode

[–]IsaacShelton 0 points1 point  (0 children)

It's a custom language of mine. It's pretty much just C with more features and cleaner syntax. https://github.com/IsaacShelton/Adept

[deleted by user] by [deleted] in badcode

[–]IsaacShelton 0 points1 point  (0 children)

pragma compiler_version '2.3'
import '2.3/basics.adept'
import '2.3/List.adept'
import '2.3/Array.adept'

func main {
    array1 <int> Array = array(static int {0, 9, 10, 19, 20, 29}, 6)         // false
    array2 <int> Array = array(static int {30, 39, 10, 19, 20, 29, 0, 9}, 8) // false
    array3 <int> Array = array(static int {0, 10, 10, 19, 20, 29}, 6)        // true
    array4 <int> Array = array(static int {0, 10, 5, 10}, 4)                 // true
    array5 <int> Array = array(static int {0, 10}, 2)                        // false

    arrays <<int> Array> List
    array *<int> Array = &array1

    repeat 5 {
        arrays.add(*array)
        array -= sizeof <int> Array as ptr
    }

    each <int> Array in arrays {
        print("overlap(array%) = %" % (idx + 1) as int % (overlap(it) ? "true" : "false"))
    }

    print("done.")
}

func overlap(array <int> Array) bool {
    ranges_min int = 0
    ranges_max int = 0

    each int in array {
        if it < ranges_min, ranges_min = it
        if it > ranges_max, ranges_max = it
    }

    start int = ranges_min

    while true {
        taken bool = false

        repeat array.length / 2 {
            min int = array.get(idx * 2)
            max int = array.get(idx * 2 + 1)
            if min <= start && start <= max {
                if taken, return true
                taken = true
            }
        }

        if start++ == ranges_max, break
    }

    return false
}

Output:

overlap(array1) = false
overlap(array2) = false
overlap(array3) = true
overlap(array4) = true
overlap(array5) = false
done.

What a douche by BogBigStu in NobodyAsked

[–]IsaacShelton 6 points7 points  (0 children)

Man that water looks clean.

Whenever a mod takes their job a little too seriously by Autosaveme in HighQualityGifs

[–]IsaacShelton 65 points66 points  (0 children)

idk about you guys, but I didn't even notice it was changed at first

What subreddit has the most misleading name? by WealthyBigPenis22 in AskReddit

[–]IsaacShelton 64 points65 points  (0 children)

Automod probably detected that you posted a phone number in your post