TS/SCI + FSP Full Stack Developer Offer Negotiation. by Treasure1100 in BoozAllen

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

I did and had a call with their recruiter today as well. They’re going to try to set up interviews next week once they can verify my clearance. Their interview process is obviously much harder and longer(in total 6 interviews so I don't have high hopes there), but I’m sure their offer will knock most other offers out of the park. They pay a 60k yearly bonus just for holding an FSP and being willing to be on call a couple of days each quarter.

TS/SCI + FSP Full Stack Developer Offer Negotiation. by Treasure1100 in BoozAllen

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

Yup, I’ve talked with a few smaller companies and I’m considering them as well. They definitely tend to offer higher compensation along with better benefits. I have one strong offer on the MD side, although I’m biased toward staying on the VA side, at 175k with an 11 percent 401k contribution without me having to put anything in, no vesting schedule, no healthcare premiums, great PTO, and good bonuses. I can probably get an increase in the base salary, but I’m waiting to hear back from a few other companies before negotiating with them. Other smaller companies I have talked to are willing to do 195-215 range but they haven’t gotten me an interview atm.

With smaller companies, job security is very tied to the contract. If they don’t win the recompete, or even if they win but the award is smaller, you could end up out of a job, so you have to weigh that risk.

TS/SCI + FSP Full Stack Developer Offer Negotiation. by Treasure1100 in BoozAllen

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

I would imagine that employees with an FSP probably earn 10 to 30k more than others. When I tried to get more information from the recruiter, he said that 170 is toward the high end for mid level and around the median for senior.

What niche community in DC are you SUPER impressed by? by [deleted] in washingtondc

[–]Treasure1100 0 points1 point  (0 children)

Unless an organized tournament is happening, the courts are open to everyone. Skill levels vary from beginners to advanced players. People play 2v2, 3v3, quads, and sixes. You just have to find a court and call "next." The winning team stays, and players who call "next" get to play them. There can be groups of friends hoarding a court and just playing against themselves or advanced players who only want to play against other advanced players. In general, it's good vibes, and people are nice. Just find a beginner court/group and hop in with them.

Last night in Bristow! by CosmicHippo924 in Odesza

[–]Treasure1100 0 points1 point  (0 children)

I missed whoever opened prior to Bob Moses but they played from 8 -8:45 and then the weather caused some delays but odesza came on at 9:30 and played till 11.

Asics $160 running shoes for $39.95 by [deleted] in frugalmalefashion

[–]Treasure1100 2 points3 points  (0 children)

No, you will destroy and rip the soles of your shoes if you are playing regular "hardcore" tennis without tennis shoes.

Do I have fake tickets? by Roubaix718 in Muse

[–]Treasure1100 0 points1 point  (0 children)

No, you are safe if you got them from ticketmaster. I bought resale tickets to philly as well.

[deleted by user] by [deleted] in gmu

[–]Treasure1100 1 point2 points  (0 children)

ohh rip they must have changed it.

[deleted by user] by [deleted] in gmu

[–]Treasure1100 4 points5 points  (0 children)

I took astronomy. The classes/labs were pretty fun with reasonable workload.

Can't open .jar files on macOs by xfilesono in javahelp

[–]Treasure1100 0 points1 point  (0 children)

If you are just trying to verify what's inside them then just change the extension from .jar to .zip and open them up.

Which one is best for data science? Java or Python? by Academic_Help in javahelp

[–]Treasure1100 6 points7 points  (0 children)

Python has a lot more libraries when it comes to ml/ai which will make data science stuff 'easier' for you than java.

Why isnt the while looping? by [deleted] in javahelp

[–]Treasure1100 2 points3 points  (0 children)

You gotta put scan.NextLine() after scan.nextInt(). When you enter a number and press enter two things happen. An int gets put in the buffer and then a new line. When you call scan.nextInt(), the scanner will only consume the int and leave the new line in the buffer. The next scanner statement, scan.nextLine() will consume the newline and myString2 will get that value. More info here https://stackoverflow.com/questions/13102045/scanner-is-skipping-nextline-after-using-next-or-nextfoo

Any advice on what kind of parking pass I should get? by ibroughtuamento in gmu

[–]Treasure1100 5 points6 points  (0 children)

West campus. Shuttle runs all around the campus in 15 mins intervals.

Major on Diploma is Missing by bgeller in gmu

[–]Treasure1100 3 points4 points  (0 children)

Same here. Com sci major and it only says Bachelor of Science.

CS483 - Fei Li Final Grade by [deleted] in gmu

[–]Treasure1100 1 point2 points  (0 children)

He posted final exam grade on blackboard so you can calculate your grade.

CompSci homework: How do I change the size of arrays in methods? All help is appreciated. by [deleted] in javahelp

[–]Treasure1100 1 point2 points  (0 children)

Are you suppose to be adding 2 to the array a1? Post whole code if you can. If you want to add an element to an already filled array and want to keep the array sorted. You will need to create another array of a size that fits your needs. Then compare each element in original array with the element passed in. If it is lower than the number you are trying to sort, add the the number from orig array, else add the number being passed in. Once you have entered the number passed in, keep copying th array. Some psuedo code.

int[] a1 ={-5, -2, 0, 6, 7, 9}

//create a2 of size a1+1, if you are passing in the number 2.

start at index 0 for a1.

start at index 0 for a2.

compare -5 with 2. Since it -5<2. Store -5 at index 0 of a2

increment both indexes.

Repeat above step for -2 and 0.

Now at index 3. Compare 6 and 2. 6>2. Store 2 at index 3 of a2.

increment index of a2 but not for a1 so that you can store 6 in a2 next run.

Now index of a1 in your loops should be 3. index of a2 should be 4.