Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for dagelfâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #292371 |
What happens if you remove the Q?
Or try CXXFLAGS += -std=c++17 -fno-fast-math
Are you using gcc or g++? (more) |
— | 2 months ago |
Edit | Post #288076 | Initial revision | — | over 1 year ago |
Answer | — |
A: PHP code is not excluding the watched videos. Does the `watchedvideos` column contain `uniqueid`'s? Are these numeric or string IDs? (If they are string ID's you shouldn't quote them below!) Also, why not use the `$excludelist` you already made? Did you print the queries and tried them manually, and do they return what you think they should? ... (more) |
— | over 1 year ago |
Edit | Post #288074 | Initial revision | — | over 1 year ago |
Answer | — |
A: Remove entries by two-column ID everywhere, that meet a condition somewhere You were on the right path breaking it down into two steps. First identify the cells you want to remove: # Identify the 'Cell' values that meet the criteria cellstoremove = df[(df['Resistance'] < 100000) & (df['Current'] == 100)]['Cell'].unique() And then remove them: # Remove a... (more) |
— | over 1 year ago |