gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
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
import { Pipe, PipeTransform } from '@angular/core'; | |
/** | |
* Iterable Pipe | |
* | |
* It accepts Objects and [Maps](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) | |
* | |
* Example: | |
* | |
* <div *ngFor="let keyValuePair of someObject | iterable"> |
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
package your.package; | |
import org.springframework.jdbc.core.JdbcTemplate; | |
import org.springframework.jdbc.core.SingleColumnRowMapper; | |
import org.springframework.stereotype.Component; | |
import java.util.ArrayList; | |
import java.util.List; | |
@Component |
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
local map = vim.keymap.set | |
map("n", "<S-f>", "<Cmd>Telescope find_files<CR>", { desc = "Find File/Class" }) | |
map("n", "<C-b>", "gd", { desc = "Navigate to Class/Definition" }) | |
map("n", "<A-S-Up>", ":m-2<CR>", { desc = "Move Line Up (Alt + Shift + Up)" }) | |
map("n", "<A-S-Down>", ":m+<CR>", { desc = "Move Line Down (Alt + Shift + Down)" }) | |
map("v", "<A-S-Up>", ":move '<-2<CR>gv", { desc = "Move Selected Block Up (Alt + Shift + Up)" }) | |
map("v", "<A-S-Down>", ":move '>+1<CR>gv", { desc = "Move Selected Block Down (Alt + Shift + Down)" }) | |
map("n", "<A-Up>", "<Plug>(expand_region_expand)", { desc = "Expand Selection" }) | |
map("v", "<A-Up>", "<Plug>(expand_region_expand)", { desc = "Expand Selection" }) |