This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"show_edit_predictions": false, | |
"assistant": { | |
"default_model": { | |
"provider": "anthropic", | |
"model": "claude-3-sonnet-20240229" | |
}, | |
"version": "2" | |
}, | |
"icon_theme": "JetBrains New UI Icons (Dark)", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p {controller,service,repository,model,config} ../../../../resources && touch model/User.java controller/UserController.java service/UserService.java repository/UserRepository.java config/SecurityConfig.java ../../../../resources/application.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# 1. Check package manager (npm or yarn) | |
# 2. Bump version | |
# 3. Set project ID in HTML (based on package.json version) | |
# 4. Get/set values in .env | |
# 5. Make the script globally accessible in the system | |
# | |
# Usage: | |
# myscript.sh <command> [args...] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const getDialog = document.getElementsByClassName( | |
'q-flex qu-alignItems--center qu-justifyContent--center qu-overflow--hidden qu-zIndex--blocking_wall', | |
); | |
const getBlur = document.getElementsByClassName( | |
'q-box qu-overflow--hidden', | |
); | |
getDialog[0].remove(); | |
getBlur[0].style.filter = 'none'; | |
getBlur[0].style.removeProperty('position'); |