- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert)
Se você quiser adicionar mais algum tópico deixe seu comentário, o objetico é facilitar para os iniciantes ou aqueles que buscam dominar JavaScript, quais tópicos são importantes para dominar JavaScript.
São tópicos para quem sabe o minimo de JavaScript (declarar variáveis), a ordem em que eles aparecem são por importância para o dominio como um todo. Mesmo que você já tenha experiência com JS, recomendo que leia os links de cada tópico para fortalecer suas bases teóricas e ter um comportamento mais profundo da linguagem.
Lista originalmente criada e compilada por Vinicius Reis
This file contains hidden or 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
| --This query enables ole automation procedures. set 0 to disable | |
| exec master.dbo.sp_configure 'Ole Automation Procedures', 1 | |
| RECONFIGURE | |
| --OLE utomation disabled the following error is thrown. | |
| --SQL Server blocked access to procedure 'sys.sp_OACreate' of component | |
| --'Ole Automation Procedures' because this component is turned off as part | |
| --of the security configuration for this server. | |
| --A system administrator can enable the use of 'Ole Automation Procedures' |
This file contains hidden or 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
| /* | |
| Problem: | |
| ['Tokyo', 'London', 'Rome', 'Donlon', 'Kyoto', 'Paris'] | |
| // YOUR ALGORITHM |
This file contains hidden or 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
| set foldmethod=syntax | |
| set foldnestmax=10 | |
| set nofoldenable | |
| set foldlevel=2 | |
| setlocal makeprg=yarn\ --silent\ eslint\ --format\ compact\ --fix | |
| setlocal formatprg=yarn\ --silent\ prettier\ --stdin-filepath\ % | |
| setlocal autoread | |
| augroup JS |
- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
This file contains hidden or 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
| class_name CallableStateMachine | |
| var state_dictionary = {} | |
| var current_state: String | |
| func add_states( | |
| normal_state_callable: Callable, | |
| enter_state_callable: Callable, | |
| leave_state_callable: Callable |
OlderNewer