What do you want to save?
Add Code snippet
New code examples
-
Python 2022-03-27 23:25:09
python odd or even
# Python program to check if the input number is odd or even. # A number is even if division by 2 gives a remainder of 0. # If the remainder is 1, it is an odd number. num = int(input("Enter a number: ")) if (num % 2) == 0: print("{0} i... Add solution -
Other 2022-03-27 23:20:24
realloc
int ptr_new = *realloc(void *ptr, size_t size); Where 'ptr_new' is the new pointer you want to point to the required Dynamic memory, 'ptr' is the already existing pointer to a dynamic memory and 'size' is the new size of dynamic memory that you want to a... Add solution -
Shell/Bash 2022-03-27 23:20:04
set user as admin gitlab
# Open the rails console, i.e: sudo gitlab-rails console -e production # Excute the follwing: # Find user user = User.find_by(username: 'my_username') # Make the desired change user.admin = true # Save the changes user.save! # Exit the console exit # Lo... Add solution -
Best helpers
Ranking is empty