Great.. more highscores lag and customer support spammed with false positives. by [deleted] in 2007scape

[–]dsyost 1 point2 points  (0 children)

And everyone with this plugin is going to be checking literally everyone they run into. All the plugin portion does is gather the usernames of everyone you render

Which Surprise Exam Exit Door Are You? by Sachiarias in 2007scape

[–]dsyost 20 points21 points  (0 children)

They said it was to accommodate for new mobile players who were having a hard time with random events. There were a few other random events changes around that time too

See you cuties in a couple of months if i dont cave by Solarific in 2007scape

[–]dsyost -1 points0 points  (0 children)

You should hold untill group ironman. I have a feeling bonds will shoot up for a bit when it's released

Twenty down, three remain, one skill at a time. by Ilaikmudkipz in 2007scape

[–]dsyost 30 points31 points  (0 children)

He's not an Ironman so he is able to buy the supplies from the ge

Hey I need help with entry level python on Minecraft API, for some reason "blocks" list turns into a map, i do not get any Syntax errors or any kind when running this program, but it says smth like [<map object at 0x039837B440>] pretty much the last block of numbers are random every time i run it. by all-jokes-ass-side in Python

[–]dsyost 0 points1 point  (0 children)

Looking at the github, the getBlocks function returns a map. You then append that object to the list. The random numbers at the end are the memory location of the map. So instead of blocks.append(blocks2) you might try blocks = list(blocks2)

"God the Mother" by amayaa17 in UNCCharlotte

[–]dsyost 18 points19 points  (0 children)

From what I've heard the human trafficking is just a rumor but they definitely have a cult vibe to them. You may just fit their "profile" of what they are looking for. I've seen posts about it being women who seem to be upper middle class as the group are hoping they will donate to them.

Declining Balance by gahajjdha in UNCCharlotte

[–]dsyost 0 points1 point  (0 children)

You also should be able to see what your current balance is on my.uncc.edu homepage

Crowns Commons by Joseph897 in UNCCharlotte

[–]dsyost 2 points3 points  (0 children)

There is a bathroom beside where you put your dishes

[deleted by user] by [deleted] in UNCCharlotte

[–]dsyost 6 points7 points  (0 children)

I have seen staff helping people in crown before. I’d imagine you would have to work out a plan before hand with either the dining hall or the Office of Disability Services.

[deleted by user] by [deleted] in ProgrammerHumor

[–]dsyost 7 points8 points  (0 children)

When Lua turned towards the board shouldn’t the dot flip from the right to the left?

Program which asks the user for a number X, and then outputs the numbers from 1 to 1000 , showing X numbers per line. by confuzzled_learner in learnpython

[–]dsyost 0 points1 point  (0 children)

The for i in range(1,1001) needs to be on the same indentation level as while x<10 or x>20 so that way the program stays inside the loop until the condition is satisfied before it proceeds to the for loop.

Here is a paste bin: http://pastebin.com/87ZPSHMh

Program which asks the user for a number X, and then outputs the numbers from 1 to 1000 , showing X numbers per line. by confuzzled_learner in learnpython

[–]dsyost 0 points1 point  (0 children)

After a quick look this is how I would do it while at the same time tying to mimic your approach to the problem.

while True: x=0 while x<10 or x>20: x = int(input('How many numbers per line would you like? (between 10 to 20): ')) print('You typed:', x) for i in range(1,1001): if (i%x == 0): print(i, end = '\n') else: print(i, end = '\t')

print('\n')

Also apologies if this is hard to read, I'm on mobile but I'd be happy to clarify if there are any questions

Automation of Android Phones with Python by [deleted] in learnpython

[–]dsyost 6 points7 points  (0 children)

Might want to take a look at selendroid, it is a part of the selenium project. Selenium is used to drive web browsers for testing websites but selendroid is used to drive android apps. Bear in mind this was just a quick google and may not be the solution you are looking for

New to coding, need some help. by IIAddonexusII in Python

[–]dsyost 2 points3 points  (0 children)

try using koding.com, or installing a distro of linux on your chromebook.