[JavaScript] How can I fix "Uncaught TypeError: $(...).modal is not a function?"
Answers in Scripting and Automation | By Some Guy
Published

Last ReplyThe $(…).modal is not a function is usually caused because scripts are loaded in the wrong order . The browser will execute the scripts in the... walemark,
The $(…).modal is...
[Python] How to fix "TypeError: 'str' object does not support item assignment?"
Answers in Scripting and Automation | By Some Guy
Published

Last ReplyJust as the error message says, you can't modify a string. One approach, which will let you keep most of the code you've written, is to convert you... irvinborder,
Just as the error message...
[Python] Fix for "NameError: name 'xrange' is not defined?"
Answers in Scripting and Automation | By Some Guy
Published

Last ReplyThe error message 'xrange' is not defined would seem to indicate that you are trying to run a Python 2 codebase with Python 3 . In Python 2, an iterab... murphybeck,
The error message 'xrange...
[Python] Solution to "TypeError: a bytes-like object is required, not 'str'?"
Answers in Scripting and Automation | By Some Guy
Published

Last ReplyPython makes a clear distinction between bytes and strings . Bytes objects contain raw data — a sequence of octets — whereas strings are U... bennetcole,
Python makes a clear dist...
[Python] Help with "TypeError: 'float' object cannot be interpreted as an integer?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyWhen we try to use float numbers in Python range() function, we get a type error 'float' object that cannot be interpreted as an integer.&nb... rahuldev,
When we try to use float...
[Python] Fix for "TypeError: can't convert 'int' object to str implicitly?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyExplicitly cast the int object to a string: x = 10 # Integer print("X is set to " + str(10)) # Explicitly a string August R. Garcia,
Explicitly cast the int o...
Fix "typeerror: 'module' object is not callable"?
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyThis error is likely occurring because of code that involves a module that contains a function that has the same name as the module. For example, the... August R. Garcia,
This error is likely occu...
[Python] Solution to "ValueError: cannot convert float nan to integer?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyIf there are some scenarios where the value is actually not intended to be a number, this can also be solved with a try-catch block: try: #... August R. Garcia,
If there are some scenari...
How to fix "indexerror: arrays used as indices must be of integer (or boolean) type?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyIt's possible that if you have an array of values that you believe to be integers, that at some point they were converted to floats. Try printing out... August R. Garcia,
It's possible that if you...
[Solved] Python - ValueError: unsupported format character ')' (0x29) at index 113
Answers in Scripting and Automation | By August R. Garcia
Published
Alternatively "TypeError: %o format: an...
MoreThis is technically a different error message, but is what was causing the issue. string = "The value is one hundred (100)." # Raises an error...[Solved] How to un-shorten/resolve Twitter's t.co links using Python
Answers in Web Scraping, Data Analysis | By August R. Garcia
Published
TFW
MoreSee code. Yeah, it seems like you do in fact have to make a bunch of additional HTTP requests. def resolve_t_co(t_co_url): if t_co_url !...[Python] Fix for "TypeError: unsupported operand type(s) for - or / or + 'str'/'int'/'nonetype'/'list' and 'str'?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyWhat the fuck is this question. This is like eight different errors. The answer is probably to cast something as something else. Look at this thread:... August R. Garcia,
What the fuck is this que...
[Python] Fix for "TypeError: can only concatenate str (not "int") to str?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyCast the integer to be a string. # Probably something like this is causing the error x = 3 text = "whatever" # "TypeError: unsupported op... August R. Garcia,
Cast the integer to be a...
[Solved] Running Selenium with a Proxy (Python, FireFox)
Answers in Web Scraping, Data Analysis | By August R. Garcia
Published
It's time to post code so that I can fin...
MoreIt's time to post code so that I can find this the next eight times I need to do this: # ##### ##### ################# ##### ##### # # ##### ###...[Solved] Scraping Number of Search Results from Bing with Google Sheets
Answers in Web Scraping, Data Analysis | By August R. Garcia
Published
Last ReplyHere's a better version that removes the " results" string and then casts the result to a number instead of a string: =VALUE(substitute(importXML... August R. Garcia,
Here's a better version t...
[Solved] Python - Getting the remote/server IP address and port from an HTTP response using the requests library?
Answers in Web Scraping, Data Analysis | By August R. Garcia
Published | Last Update
Some edge case what even is this.
MoreThe solution here seems to generally work: https://stackoverflow.com/questions/22492484/how-do-i-get-the-ip-address-from-a-http-request-using-th...[Solved] Correct-Horse-Battery-Staple Implementations (Misc. Languages)
Answers in Scripting and Automation | By August R. Garcia
Published
Currently: Python, Bash
MoreSee: Correct Horse Battery Staple from XKCD, if somehow you haven't seen this before. There's also a generator that can be used here. How to...[Solved] How to Get Random Punctuation in Python
Answers in Scripting and Automation | By August R. Garcia
Published
Code:
MoreCode: # string.punctuation contains the following characters: # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ import random, string print( rand...[Solved] How to immediately kill all Python threads when working with multithreading
Answers in Scripting and Automation | By August R. Garcia
Published | Last Update
why is this answer so hard to find
MoreNormally, to kill a Python script while it is running, pressing CTRL+C will work. However, if there are multiple threads running because the program i...[Solved] Color code HTTP status codes in Python
Answers in Web Scraping, Data Analysis | By August R. Garcia
Published
Last ReplyFor Python 3: import http.client [...] try: msg = " " + http.client.responses[status_code] [...] Code is basically th... August R. Garcia,
For Python 3:
Solve "Typeerror: unhashable type: 'list'"?
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyRan into this like five minutes ago and found this fucking thread in the SERPs. What a shitty fucking thread that did not answer my question. Anyway,... August R. Garcia,
Ran into this like five m...
[Solved] Basic progress bar functionality with Python
Answers in Scripting and Automation | By August R. Garcia
Published | Last Update
Commentary is hard. Use your reading ski...
MoreCommentary is hard. Use your reading skills to read this code: #!/usr/bin/env python # -*- coding: utf-8 -*- import time import sys from...[Solved] How to Show Number of Remaining Threads in Python
Answers in Scripting and Automation | By August R. Garcia
Published | Last Update
Self explanatory, mostly.
MoreSelf explanatory, mostly. Original Code import Queue from threading import Thread, active_count import time que = Queue.Queue()...[Solved] Google Sheets: "Text result of JOIN is longer than the limit of 50000 characters"
Answers in Spreadsheets | By August R. Garcia
Published
The answer is to fucking kill yourself.<...
MoreThe answer is to fucking kill yourself.[Solved, Basically] Nautilus - Open Multiple Tabs from Command Line?
Answers in Shell Scripting | By August R. Garcia
Published | Last Update
How to open multiple GUI file manager ta...
MoreThe answer is that there's no built in option to do this in Nautilus, although there are Stack Exchange threads discussing ghetto hack workarounds....[Python] Fixing "TypeError: only integer scalar arrays can be converted to a scalar index?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyA simple case that generates this error message: In [8]: [1,2,3,4,5][np.array([1])] --------------------------------------------------------------... Univa,
A simple case that genera...
Last ReplyThe $ is used in a cell reference to create an absolute reference. An absolute reference is one that will not change when the formula is copied. Th... Univa,
The $ is used in a cell r...
[JavaScript] Fix for "Uncaught SyntaxError: unexpected token export/import/illegal?"
Answers in Scripting and Automation | By Some Guy
Published
Last ReplyIn case you get this error it might also be related to how you included the javascript file into your html page. When loading modules you have to expl... Univa,
In case you get this erro...
[Solved] Bash: cannot create temp file for here-document: No space left on device.
Answers in Shell Scripting | By Whisky Fren
Published
Now I can use tab completion on my celeb...
MoreThe answer is that you're out of storage space. Possibly because of temporary files, but also possibly your hard drive is close to full. Or your serve...[Google Sheets] Global conditional formatting across multiple sheets/tabs?
Answers in Spreadsheets | By Some Guy
Published
Last ReplyCreate sheets by clicking the "+" button at the bottom of your browser window. In Sheet1, type this formula into any cell in column A: =INDIRECT("... Univa,
Create sheets by clicking...