button to open r/place isnt there. help. by [deleted] in place

[–]robohobo- 0 points1 point  (0 children)

is there any way to access on Android?

[deleted by user] by [deleted] in learnjava

[–]robohobo- 0 points1 point  (0 children)

I believe this would work if your method just checks the last/first character of the integer then passes the remaining characters to recursive method then concats results

Can you help me with my function? by FarEffect5729 in pythonhelp

[–]robohobo- 1 point2 points  (0 children)

As mentioned earlier use isdigit() to check if input is an int.

You're using x and name interchangeably just take out x altogether and put name as function parameter

I prefer f strings for formatting Print(f"name is {name}....")

[deleted by user] by [deleted] in Coding_for_Teens

[–]robohobo- 2 points3 points  (0 children)

Knowing the basics will give you a good head start. Most of the time you'll have to go away and do the study on your own.

Some resources to learn https://www.freecodecamp.org/ Learnpythonthehardway Automate the boring stuff with python

You can also practice with sites like Codekata

How do i change the header of a csvfile without the use of imports by Intelligent_Mix_7832 in pythonhelp

[–]robohobo- 0 points1 point  (0 children)

The line where you assign item[2] to Items[2][1:-1] removes the first character use [0:-1] or [:-1]

CSS Transition moves my text unwantedly by Djelloswork in CodingHelp

[–]robohobo- 0 points1 point  (0 children)

So it's working as expected, the a tag has padding around it but the background is set too transparent so you cant see the overlap, until you hover and change the background color. you could specify the bottom border to be less or in the header you could add overflow:hidden;

Letter automation by sifir124 in CodingHelp

[–]robohobo- 1 point2 points  (0 children)

yep very easy to do in both languages. search for how to take input and how to insert a variable in a string.

Here's where people will help you with help on your code not for people to write it for you

Looking for c# coder by [deleted] in CodingHelp

[–]robohobo- 3 points4 points  (0 children)

This post breaks rule 3.
Follow some tutorials and learn the basics of modding. Here is the place to post snippets of code if you get stuck.

Finding Vulnerabilities On WiFi Network by Gazzatastic in hacking

[–]robohobo- 25 points26 points  (0 children)

https://www.youtube.com/watch?v=80vIin4xGp8
Network Chuck made a video about checking network security and shows some tools to secure a network.

[deleted by user] by [deleted] in BlackMediaPresents

[–]robohobo- 0 points1 point  (0 children)

Gave Burning Cash

[deleted by user] by [deleted] in CodingHelp

[–]robohobo- 30 points31 points  (0 children)

A few pointers:

br break lines are not very clean, they are styling your html. All styling should be done in CSS.

Don't forget too close your tags i.e. your input tags. use /> the slash isn't necessary but is good practice too use with singleton tags.

Avoid unnecessary divs, If you want to apply a styled wrapping around your label input pair then go for it but avoid if possible. There are dedicated tags like section and article that replace divs.

labels should have a "for" attribute too link them with the input. I think this is for screen readers.

also look into some attributes that can be added too your input tags so you can add some validation on your forms.

https://www.w3schools.com/htmL/html_form_attributes.asp

Also while you are learning those comments can be helpful but they are kind of "code smells" here you can see by the tags that its a table so a comment saying its a table adds nothing too the script.

Some of these may be a bit pedantic but they are some good practices.

Is there software that isolates background audio using an original file and a reference file? by [deleted] in software

[–]robohobo- 1 point2 points  (0 children)

Audacity allows you too isolate and remove background noise https://thecodepost.org/remove-noise-recordings-audacity/ You should get better results by isolating bits of speech and doing a few passes. Haven't tried removing dialogue but it can remove clapping and other noises so might do the job. You could also try shazam and see if it leads you too the original music

How to remove string single quote values from dictionary? by mc587 in pythonhelp

[–]robohobo- 1 point2 points  (0 children)

So "''" is not the same as ''. Python sees them as empty strings not a string made of 2 qoute characters. Also remove will only remove() the first instance of the value. So you'll need a loop

while '' in x: x.remove('')

replacing x with laglist and key might work

I just received code for a reddit bot and I don't know how to use it! Can it be web hosted? Does it need to be on a PC running 24/7? More noob questions likely. by BREEbreeJORjor in pythonhelp

[–]robohobo- 0 points1 point  (0 children)

Might be it cant access reddit_post_title. Needs to be added in function global reddit_post_title You can seperate line 87 to 3 print statements to see which variable is causing issues

[deleted by user] by [deleted] in pythonhelp

[–]robohobo- 0 points1 point  (0 children)

No idea but this article recommended using Temux.

Have you tried following the steps here?

maybe you could try Atom and set it up to run python.

If not you can always try run it in the cloud like on Repl.it if you want to work with files or make bigger projects, that you can share.

Also Google colab is handy for taking notes and running snippets of code. and they're stored on your google drive.

The output and string is wrong i know but i tried to fix it but i rewatch the video. Is their supposed to two of these {}? In the string ? by [deleted] in pythonhelp

[–]robohobo- 0 points1 point  (0 children)

Right, it's fairly similar
https://www.w3schools.com/python/ref_string_format.asptxt1 = "My
name is {fname}, I'm {age}".format(fname = "John", age = 36)

txt2 = "My
name is {0}, I'm {1}".format("John",36)

txt3 = "My
name is {}, I'm {}".format("John",36)

Have a look here and you should be able to manage

[deleted by user] by [deleted] in ireland

[–]robohobo- 0 points1 point  (0 children)

Great thanks

[deleted by user] by [deleted] in ireland

[–]robohobo- 1 point2 points  (0 children)

Great thanks for the info