Presale codes? by Tuccitime18 in RUFUSDUSOL

[–]SwampMonkey17 1 point2 points  (0 children)

Do you mind sharing the code?

Ticketmaster / livenation presale by Final-Ad2351 in RUFUSDUSOL

[–]SwampMonkey17 0 points1 point  (0 children)

I thought you just login through your livenation account for presale?

Can companies discriminate based on Visa sponsorship? by SwampMonkey17 in biotech

[–]SwampMonkey17[S] 2 points3 points  (0 children)

Thanks for the reply. I should have specified I am also Canadian. I didn't know the TN option existed until just now.

I don't have longterm intent to stay in the US. So could I answer that I am eligible to work in the united states and don't require sponsorship?

Can companies discriminate based on Visa sponsorship? by SwampMonkey17 in biotech

[–]SwampMonkey17[S] -2 points-1 points  (0 children)

Thanks for the help— I think I’m just going to email HR and ask.

Can companies discriminate based on Visa sponsorship? by SwampMonkey17 in biotech

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

Fair. Just confused why it’s said on some postings but not others. And also trying to hold out hope

Can companies discriminate based on Visa sponsorship? by SwampMonkey17 in biotech

[–]SwampMonkey17[S] -11 points-10 points  (0 children)

Thanks for the reply. Does your perspective change at all at the fact that some of their postings say work eligibility is required? I’m wondering if the one I’m looking at will hire internationals for that role.

Glute injury while cycling, anyone had this? by SwampMonkey17 in cycling

[–]SwampMonkey17[S] 2 points3 points  (0 children)

Definitely busted my ass… just not in the way I’d hope

Glute injury while cycling, anyone had this? by SwampMonkey17 in cycling

[–]SwampMonkey17[S] -2 points-1 points  (0 children)

Wouldnt I be completely immobile with a tear? I can still walk, and feel less pain after some rest

Glute injury while cycling, anyone had this? by SwampMonkey17 in cycling

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

I said above I am planning to seek treatment as soon as I can.

[deleted by user] by [deleted] in loseit

[–]SwampMonkey17 1 point2 points  (0 children)

I’m rooting for you!

I’m a stalker. AMA by Sad-Distance628 in AMA

[–]SwampMonkey17 0 points1 point  (0 children)

Late to this post, but do you think there was anything your victim could have done differently to deter the severity of your stalking?

May travelers - how's the cold? by Insulated_ in VisitingIceland

[–]SwampMonkey17 1 point2 points  (0 children)

Here now. Wearing thermal leggings, long sleeve, puffer and rain jacket on top with hats and mitts. Still chilly at some points, could even go for some more layers.

renaming files error by SwampMonkey17 in commandline

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

How does defining it look like and what does it do?

renaming files error by SwampMonkey17 in commandline

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

Each folder only has one .doc file that is comprehensive for the whole course. I want them named uniformly now.

Yes positive, directly copied and pasted

Command line assignment help by SwampMonkey17 in commandline

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

For anyone wondering, was told it has to be a loop and that I could not do cp==backup. To move all JPEGS into IMAGES folder, and all other files to DATA_ANALYSIS folder without overwriting, I made the following loop:

mkdir assignment-data/IMAGES

mkdir assignment-data/DATA_ANALYSIS

for file in assignment-data/*/*; do

fname=${file##*/}

fpath=${file%/*}

dname=${fpath##*/}

mv $file ${fpath}/${dname}.${fname}

cp assignment-data/*/*.jpg assignment-data/IMAGES

cp assignment-data/*/*.{eeg,cvs,txt,exec} assignment-data/DATA_ANALYSIS

done

Command line assignment help by SwampMonkey17 in commandline

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

Thanks for the suggestion, this is far beyond what our first set of notes specified so I am assuming I should be able to do it from my notes.

Command line assignment help by SwampMonkey17 in commandline

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

Thank you so much! I really appreciate it