- The Idiot Brain
- The Self Illusion
- Rich Dad Poor Dad by Robert T. Kiyosaki
- The Power of Habit by Charles Duhigg
- E-Myth Revisited: Why Most Small Businesses Don't Work and What to Do About It
- The 10X Rule: The Only Difference Between Success and Failure by Grant Cardone
- A Criminal History of Mankind by Colin Wilson
- Triumph Over Shyness: Conquering Shyness and Social Anxiety by Murray B. Stein and John R. Walker
- Blindspot: Hidden Biases of Good People by Mahzarin R. Banaji and Anthony G. Greenwald
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
syntax on | |
":syntax on | |
set number relativenumber | |
set wildmode=longest,list,full | |
set splitbelow splitright | |
" spell cheking | |
"set spell |
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
vim.wo.number = true | |
vim.opt.relativenumber = true | |
vim.o.mouse = 'a' | |
vim.o.clipboard = 'unnamedplus' | |
vim.o.undofile = true |
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
@if ($errors->any()) | |
<div class="alert alert-danger"> | |
@foreach ($errors->all() as $error) | |
{!! $error !!}<br/> | |
@endforeach | |
</div> | |
@endif | |
@if (Session::get('flash_success')) | |
<div class="alert alert-success"> | |
@if(is_array(Session::get('flash_success'))) |
This is a bash shell scripting which can be found on Unix, Linux and Mac. You can install bash on the Linux subsystem on Windows too.
the first line is #! /bin/bash
because the bash program is in /bin/bash, you can know the path where the bash is by this command which bash
You can useecho Hello, World!
or echo "Hello, world!"