pyenv versions # show installed versions
pyenv install --list | grep " 3\.[6]" # show available versions for prefix
rm -rf ~/.config/autostart/jetbrains-toolbox.desktop \ | |
rm -rf ~/.local/share/JetBrains/Toolbox \ | |
rm -rf ~/.local/share/applications/jetbrains-toolbox.desktop |
#Create a file | |
sudo touch /usr/local/bin/idea | |
#bash script: | |
#!/usr/bin/env bash | |
snap run intellij-idea-ultimate $1 /dev/null 2&1 & |
#!/usr/bin/env bash | |
. ~/.nvm/nvm.sh | |
cr=`echo $'\n.'` | |
cr=${cr%.} | |
currentNodeVersion=$(node -v) | |
echo Your NodeJS version is $currentNodeVersion |
/* | |
In this scenario we create twenty random cars (random model and year). | |
An expected result is to only get Toyota and sort by year, newest first. | |
*/ | |
class Scratch { | |
public static void main(String[] args) { | |
List<Car> cars = CarFactory.createTwentyRandomCars(); | |
System.out.println("Initial Cars list: " + cars.toString()); |
spring.jpa.show-sql=true | |
spring.jpa.properties.hibernate.format_sql=true | |
spring.jpa.properties.hibernate.generate_statistics=true |
pkill "Touch Bar agent"; | |
killall "ControlStrip"; | |
#or the same with sudo | |
sudo pkill "Touch Bar agent"; | |
sudo killall "ControlStrip"; |
~/.gradle/caches/modules-2/files-2.1 |
@Configuration | |
@EnableWebSecurity | |
public class WebSecurity extends WebSecurityConfigurerAdapter { | |
public WebSecurity() {} | |
@Override | |
protected void configure(HttpSecurity http) throws Exception { | |
http.cors().and().csrf().disable().authorizeRequests() |