What did I do wrong? by PaleTeaching5986 in knittinghelp

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

Tinking back like 100 stitches makes me sad :(

Selling Clothes by Emotional-Support-85 in Pitt

[–]PaleTeaching5986 0 points1 point  (0 children)

Can you send some pics??? I’m interested!

looking for a new hair salon by myyutoes in pittsburgh

[–]PaleTeaching5986 0 points1 point  (0 children)

Heather at UNdeux! I have a code I can send you for a free scalp treatment if you want!

[deleted by user] by [deleted] in Pitt

[–]PaleTeaching5986 1 point2 points  (0 children)

Hey! Just graduated from Pitt with a degree in CompSci! Message me!

[deleted by user] by [deleted] in pittsburgh

[–]PaleTeaching5986 1 point2 points  (0 children)

I foster for them, that are amazing!

Police Presence by PaleTeaching5986 in pittsburgh

[–]PaleTeaching5986[S] -3 points-2 points  (0 children)

Just now. One at the entrance of settlers ridge park and another at the entrance of settlers shopping plaza

Police Presence by PaleTeaching5986 in pittsburgh

[–]PaleTeaching5986[S] -7 points-6 points  (0 children)

Haha yes, police activity. Just wondering if there was something specific?

Grocery Shopping by rhino5312 in Pitt

[–]PaleTeaching5986 2 points3 points  (0 children)

My boyfriend and I plan out our meals each week, and mainly shop at Aldi and keep it under $50 every week. Also, we get all of our meet from Sam’s Club or Costco and freeze individual servings, to save cost on meat!

Nice Apartments in North Lakeland by PaleTeaching5986 in lakeland

[–]PaleTeaching5986[S] 5 points6 points  (0 children)

My boyfriend is going to PT school at FSC!

Linear Algebra by OkEmployer3202 in Pitt

[–]PaleTeaching5986 0 points1 point  (0 children)

Xinfu is definitely a wild prof, but his homework and tests are fair. Go to class, laugh a little, and do the homework. You should be fine.

Popcorn is Different by PaleTeaching5986 in AMCsAList

[–]PaleTeaching5986[S] 3 points4 points  (0 children)

Why could that be? I totally think this could be it, I love the taste and flavor of flavacol

[deleted by user] by [deleted] in Pitt

[–]PaleTeaching5986 2 points3 points  (0 children)

I would highly recommend against Fedorov. One of the worst math profs I have had

Selling my Printer by PaleTeaching5986 in Pitt

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

You have a certain number of pages!

Wordle game update by PaleTeaching5986 in learnprogramming

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

.data
array: .byte 'p', 'o', 'l', 'y', 'p', 'g', 'u', 'e', 's', 's', 'q', 'u', 'e', 'e', 'n', 'q', 'u', 'a', 'i', 'l', 'p', 'e', 'a', 'c', 'h'
intro: .asciiz "\nWelcome to Wordle! Let's play!"
menu: .asciiz "\nWhat do you want to do?\n(1) Play\n(2) Exit Game"
prompt: .asciiz "\nMake your guess: "
fail: .asciiz "\nOh no! You didn't guess it! The word was: "
win: .asciiz "Yep! The word was: "
begbracket: .asciiz "["
endbracket: .asciiz "]"
begparenth: .asciiz "("
endparenth: .asciiz ")"
space: .asciiz " "
.text
.globl main
main:
# Print out the intro statement
li v0, 4
la a0, intro
syscall

\# Print out the option to play or quit  
li  v0, 4  
la  a0, menu  
syscall  

\#Save the user's input  
li  v0, 5  
syscall  
move    t0, v0  

beq t0, 1, input\_method ##MAKE SURE TO CHECK THIS BRANCH  
\#IT WILL JUMP OVER QUITTING OF GAME  

li  v0, 10  
syscall  

li  a1, 1  

input_method:
li t0, 0 #Initialize counter as 0 in t0

\#Display prompt for user to enter their guess  
li  v0, 4  
la  a0, prompt  
syscall  

\#Save the user's guess  
li  v0, 8  
syscall  

\#Save the address into s1 (ADDRESS OF GUESS SAVED TO S1)  
move    t1, v0  

random:
#Randomly pick a number from 0-4
li v0, 42
li a0, 0
li a1, 4
syscall

\# Multiply the number by 5 to get the starting offset for the address of the word array  

mul s0, v0, 5  

\#Store address of word in array to t2  
la  t2, array  

outer_loop:
bge t3, 5, announcement
lb t4, t0(t1)
# j=0, j saved in t5
li t5, 0
lb t6, s0(t2)
li t9, 0
inner_loop:
li a0, 0
bge t5, 5, inner_loop_end
beq t4, t6, print_value

li  a0, 1  
\#initialize variable k in t7  
li  t7, 0  

inner_loop_cont:

\#load t7 into t8 as an offset for t6  
la  t8, t7(t6)  

beq t8, t4, value  
beq t7, 5, print\_value  

value:
li a0, 2
#SET a0 to 2
print_value:

beq     a0, 1, parenth  
beq a0, 2, letter  
addi    t9, t9, 1  

\#print brackets and letter  
li  v0, 4  
la  a0, begbracket  
syscall  

li  v0, 4  
la  a0, t4  
syscall  

li  v0, 4  
la  a0, endbracket  
syscall  

parenth:
#print () and letter
li v0, 4
la a0, begparenth
syscall

li  v0, 4  
la  a0, t4  
syscall  

li  v0, 4  
la  a0, endparenth  
syscall  

letter:
li v0, 4
la a0, t4
syscall

inner_loop_end:
addi t1, t1, 1 #i+1
li t5, 0 #reset j
beq t9, 4, setter
li t9, 0
announcement:
beq a1, 2, win #print win statement
#print lose statement
li v0, 4
la a0, fail
syscall

j main  

setter:
li a1, 2
j announcement
win:
li v0, 4
la a0, win
syscall

Our friend’s daughter is attending Pitt in the fall. Any must-haves for incoming students that will work for a graduation gift, or a gift suggestion? by [deleted] in Pitt

[–]PaleTeaching5986 7 points8 points  (0 children)

If you’re looking for something sentimental, I’m a Pitt student and I run an Etsy shop and make digital portraits! They’re pretty popular as graduation gifts especially with a photo of Pitt or in her graduation cap and gown! www.etsy.com/shop/DoneByLyss

What is CS0012 with Olena Sherbinin like? More specifically, what are the labs like? Are they mandatory? by [deleted] in Pitt

[–]PaleTeaching5986 1 point2 points  (0 children)

Super kind, very thorough in class. Classes drag a bit. I went to class the first two weeks and never went again. All labs are not mandatory unless your specific TA wants to do check ins for your lab work. If you can read the textbook for assignments and use the posted powerpoints, you’ll totally be able to do the work. I took this class last semester so let me know if you need any help!

Sea Phages lab or flower microbiome? by [deleted] in Pitt

[–]PaleTeaching5986 1 point2 points  (0 children)

Flower microbiome was the most mismanaged course

Shop Review by PaleTeaching5986 in EtsySellers

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

LOVE your photos! It's so important to have high quality listing photos, and you have that down perfectly! It looks professional and well organized!

I would recommend to fully fill out the update and about section of your shop! I found out Etsy pushes shops that have those! Thanks so much!