180
Points
Questions
34
Answers
52
-
I have a Python project which I want to build and test with gitlab-ci. In my setup.py file I have …
- 391 views
- 1 answers
- 0 votes
-
class ListNode: def __init__(self, val=0, next=None): self.val = val self.next = next 1. a = ListNode(1) b = a print(b.next) …
- 247 views
- 0 answers
- 0 votes
-
So I was trying to figure out a way to use sockets to make a terminal-based chat application, and I …
- 372 views
- 1 answers
- 0 votes
-
- 375 views
- 0 answers
- 0 votes
-
I have this code: <script type=”text/javascript”> var foo = ‘bar’; <?php file_put_contents(‘foo.txt’, ‘ + foo + ‘); ?> var baz …
- 410 views
- 4 answers
- 0 votes
-
This question already has answers here: In CSS Flexbox, why are there no “justify-items” and “justify-self” properties? (6 answers) Closed …
- 429 views
- 2 answers
- 0 votes
-
so I have been using codes like float:right, margin-left, position relative/absolute to try and shift the left text and custom …
- 401 views
- 1 answers
- 0 votes
-
how could I add an input text box inside the select option drop menu. plzzz can anyone could solve this …
- 288 views
- 1 answers
- 0 votes
-
The picture explains better. I want to the ui-select overflow the table, but at the same time, as the table …
- 316 views
- 0 answers
- 0 votes