/app
├── /Application
| ├── /Exceptions
| ├── /Middlewares
| ├── /Providers
| ├── /Requests
├── /Domain
| ├── /MyDomainA
| | ├── /Contracts
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
public static int convertXpToLevel(int xp) { | |
// Level = 0.05 * sqrt(xp) | |
return (int) (Constants.LEVEL_MODIFIER * Math.sqrt(xp)); | |
} | |
public static int convertLevelToXp(int level) { | |
// XP = (Level / 0.05) ^ 2 | |
return (int) Math.pow(level / Constants.LEVEL_MODIFIER, 2); | |
} |
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
{ | |
"data": [ | |
{ | |
"name": "Spotify Widget", | |
"description": "", | |
"link": "https://github.com/wribeiiro/spotify-widget", | |
"image": "https://user-images.githubusercontent.com/20648572/112703098-ce318800-8ea6-11eb-85bd-59a4450159f9.gif", | |
"tags": "Javascript;Electron" | |
}, | |
{ |
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
Processador: Amd Ryzen 7 5700x ~ 3.40GHz | |
Placa-mãe: Gigabyte B550M Aorus Elite | |
Memória: Netac Shadow 32GB DDR4 3200mhz ~ 4x8GB | |
Placa de vídeo: NVIDIA GeForce RTX 2060 Super 8GB OC Galax | |
Fonte: PCYes 500W 75+ | |
Gabinete: Pichau Kazan | |
Watercooler: Water Cooler Deepcool Gammax LT120T | |
SSD M2: KingSpec 256GB | |
HDD: WD Blue 1TB | |
Monitor 1: LG Ultragear 24' Full HD 144Hz |
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
{ | |
"terminal.integrated.fontFamily": "Operator Mono Lig", | |
"terminal.integrated.fontSize": 15, | |
"terminal.integrated.fontWeight": "335", | |
"editor.smoothScrolling": true, | |
"editor.fontFamily": "Operator Mono Lig", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 15, | |
"editor.tabSize": 4, | |
"editor.fontWeight": "335", |
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
name: My Workflow | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: lorisleiva/laravel-docker:7.4 | |
steps: | |
- uses: actions/checkout@v2 |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
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
conky.config = { | |
alignment = 'top_left', | |
background = false, | |
border_width = 1, | |
cpu_avg_samples = 2, | |
default_color = 'white', | |
default_outline_color = 'white', | |
default_shade_color = 'white', | |
draw_borders = false, | |
draw_graph_borders = true, |