Just paste this on your ~/.bash_profile
, ~/.bashrc
or ~/.zshrc
, run source ~/.bashrc
(or ~/.zshrc
) and done!
nano ~/.bash_profile
# paste the functions below in your ~/.bash_profile and save it
source ~/.bashrc
const revenue = process.argv[2] | |
const prolabore = 28 | |
const das = 6 | |
const prolaboreAmount = ((prolabore / 100) * revenue) | |
const getINSSTaxAmount = () => { | |
if (prolaboreAmount <= 1100) { | |
return 7.5 | |
} |
### Keybase proof | |
I hereby claim: | |
* I am uselessdev on github. | |
* I am iamwallace (https://keybase.io/iamwallace) on keybase. | |
* I have a public key ASBMpXCEFuvacJHu-V26ecqZCr-S-LQ94uIaYIOZalpY_go | |
To claim this, I am signing this object: |
import path from 'path' | |
import webpack from 'webpack' | |
import ReactRefreshPlugin from '@pmmmwh/react-refresh-webpack-plugin' | |
const config: webpack.Configuration = { | |
entry: path.resolve(__dirname, './src/index.tsx'), | |
module: { | |
rules: [ | |
{ |
'use strict'; | |
const usrKey = process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'] | |
module.exports = { | |
styl: { | |
'src': './src/assets/stylus/*.styl', | |
'dist': './src/assets/styles', | |
'watch': './src/assets/stylus', | |
'compiled': './dist/assets/styles' |
version: '2' | |
volumes: | |
app-mysql-data: | |
driver: local | |
services: | |
mysql: | |
image: mysql | |
container_name: app-mysql |
Pegando dados do banco usando $group
db.plantas.aggregate({
$group: {
_id: "$jardineiro",
plantas: { $push: "$nome" }
}
})
I hereby claim:
To claim this, I am signing this object:
installation via clone
Using vagrant as serve
git clone [email protected]:opencart/opencart.git <store-name>
vagrant ssh && cd /vagrant/www//upload