All Questions
20,061,604
questions
0
votes
0answers
3 views
How do you feature engineer string column to extract year and month as integer values? pd.to_datetime returns 1970-01-01 for all values
non_numeric = df.select_dtypes(include = 'object')
non_numeric
df['earliest_cr_line'] = pd.to_datetime(df['earliest_cr_line'], errors = 'coerce')
df['earliest_cr_line']
enter image description here
0
votes
0answers
3 views
Why are my Amazon Appstore submissions being rejected? How to get more info?
Since over a year I have a multiplayer word game published at https://www.amazon.de/dp/B0792GQQZR/#ace-7038974143
Now I have translated it to English and German languages, but have problems getting it ...
0
votes
0answers
3 views
Use CSS to fake a custom ol label
I would like to go beyond the ideas suggested in e.g. How can you customize the numbers in an ordered list? and use a possibly complicated snippet of HTML to make my own labels in an ordered list. ...
0
votes
0answers
4 views
How can I get AWS EventBridge putevents to work with SNS?
I have a python Lambda, posting a test message to EventBridge. Each time I get a success response like this one:
{'FailedEntryCount': 0, 'Entries': [{'EventId': '54c3b323-f8f1-2e89-71e8-b6c00511ff47'}]...
0
votes
0answers
3 views
Job in background not work is performed If the application is minimized
Please help. I have a very simple application that checks the url in the background to see if it returns 1 or 2. If it returns 1, a notification will pop up on the phone.
The app works very well, but ...
0
votes
0answers
9 views
Why is this variable not updating?
So I'm working on a basic game in pygame and I have an if-block that checks whether the skeleton is moving or not and whether the random generated side is 0 or 1 where, 0 = right, and 1 = left and the ...
0
votes
0answers
7 views
if there any event listener exist that trigger before the page reload?
hello I wondering is there any EVENTLISTENER exist in javaScript DOM that trigger right before the page reload not after.
i was searching for a while and couldn't find any.
I wanted to be sure so I ...
0
votes
0answers
4 views
Using RediSearch with NRediSearch (C#), how to apply OR clause on two numberic fields like i.CountyId == id || i.CityId == id
I am developing a .Net Core web app with RediSearch. Previously I have used in-app memory cache, but I have to change it to distributed cache. The issue is, the web app has very complex searches which ...
0
votes
0answers
3 views
Cisco Devnet Certification
I have 2 years of experience in networking(Routing and Switching) and basic knowledge in Python Programming. Can i take cisco Devnet certificate? As per devnet website eligibility is "those who ...
0
votes
0answers
3 views
In bash configure shortcut ctrl+c for copy if text is selected and for SIGINT if no text is selected
For /bin/bash I want to configure this behavior when pressing ctrl+c:
If no text is selected in the terminal SIGINT is sent (this is the standard behavior and interrupts the running process and gives ...
0
votes
0answers
3 views
Emulating a BOM requirement in excel
I am in need of a minor business solution in manufacturing sector, within MS Excel itself, especially BOM (bill of materials for those are unaware).
Lets say I make parts A, B and C which are complex ...
0
votes
0answers
6 views
Images and CSS are not working on github.io pages
i had a older portfolio page in this link. Now i create new updated one. But the CSS and Images can't work. I cleared the caches but didn't work.
repo link : https://github.com/Remonhasan/remonhasan....
-3
votes
0answers
7 views
WORDPRESS DATABASE AND PHP
HELLO THERE I HOPE YOU ALL WOULD BE GOPING GREAT. I AM FACING AN ISSUE WITH MY WP WEBSITE. AS I'M NEW TO WP SO I DONT REALLY KNOW ABOUT IT. I HAD A CUSTOM PAGE EARLIER I CODED IN PHP AND INTEGRATED ...
0
votes
0answers
7 views
Python Discord Bot: how to interact with the user?
I'm trying to make a Discord bot for my server, and I'm having some difficulties. I've looked at other people's questions, applied all type of changes and I'm still stuck. As reference, I'm relative ...
0
votes
0answers
5 views
Getting Variable Error - Mytable and tableName can be undefined in this Python Code. How can this be corrected?
enter image description here
Hello, I am trying to start coding and apologies if i have posted something incorrectly
Getting Variable Error - Mytable and tableName can be undefined in this Python Code....