برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
I created a file with one line "bug line", initialized git repository and committed change. Then I added the second line "staged" and staged the change. Then I added the third line "unstaged". How to add a commit changing the first line to "bug line changed" so that I still get the second line as staged change and the third line as unstaged change without merge conflicts?
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
I'm writing a query in Oracle SQL. I'm using a count - group by query, for example:
select column_a, count(*)
from table_1
group by column_a
COLUMN_A COUNT(*)
value_1 5
value_2 6
value_3 2
(null) 1
Can I write a group by that allows me to get two result rows, one with value_1 and its count, and another with the count of all other values? It would look like this:
COLUMN_A COUNT(*)
value_1 5
others 9
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
I'm leaing Python and using VS Code (Windows). I wanted to clear the terminal from the long paths when ruing code, so I installed Code Ruer and went to Settings -> Executor Map, and changed python map from "python -u" to "clear && python3 -u". But when I run code, I get what's in the picture instead of execution result. (There's nothing in output console either.)
برچسب:
نویسنده: استخدام کار
برچسب:
نویسنده: استخدام کار
I'm trying to lea graphics programming. Currently, I'm trying to make my camera look at the world origin at (0, 0, 0), but I can't understand why this operation is inverted for the camera. For example, if I have a camera at (0, 0, -5), it tries to look at (0, 5, 0). Instead of looking at the desired position, the camera looks at the inverted position at (0, -5, 0).
Here's the code implementation for the context:
برچسب:
نویسنده: استخدام کار