Additional steps for: https://superuser.com/questions/1571431/how-do-you-use-an-existing-ext4-hard-drive-with-virtualbox/1571801
- File > Virtual Media Manager > Add
- Select "C:\Users<UserFolder>\VirtualBox VMs\Ubuntu (local NVMe)\local-nvme.vmdk"
- Open
| /* tailwindcss 2.x */ | |
| /* @import url("https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"); */ | |
| /* custom tailwindcss with children variant */ | |
| /*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */*,::after,::before{box-sizing:border-box}:root{-moz-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji'}code{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}button{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button{text-transform:none}[type=button],button{-webkit-appearance:button}h1,h2,h3,p{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sa |
| import Controller from '@ember/controller'; | |
| import { inject as service } from '@ember/service'; | |
| import { action } from '@ember/object'; | |
| export default class FirstController extends Controller { | |
| @service settings; | |
| @action changeLanguajeToEN () { | |
| this.settings.lang = 'EN'; | |
| } |
Additional steps for: https://superuser.com/questions/1571431/how-do-you-use-an-existing-ext4-hard-drive-with-virtualbox/1571801
| sudo apt-get update | |
| sudo apt-get install mysql-server -y | |
| curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash | |
| rbenv install 2.5.1 | |
| gem install bundler | |
| gem install rails -v 5.0.7 |
I hereby claim:
To claim this, I am signing this object:
Coming from the old jQuery days I used to hear from core members about how interesting the Amber.js framework was. Quickly enough it became Ember.js and I jumped-in head-on.
I've never been "active" in the community, but whenever an SPA project pops up I have always pushed for Ember to be used as the an essential part of the project because it is the easiest to use, and most reliable framework to work with as a team. Conventions over configuration are that good.
Now with this Call for Blog Posts, I present you with a few ideas I would love to see in the plausible future.
| // Convert units | |
| // Eg. | |
| // font-size: convert-unit(16rem, em); | |
| // >> font-size: 16em; | |
| // | |
| // font-size: convert-unit(16em, rem); | |
| // >> font-size: 16rem; | |
| // | |
| // font-size: convert-unit(16em, px); | |
| // >> font-size: 16rpx; |
| // do not print foundation css classes | |
| $include-html-classes: false; | |
| $modules: ("global"); | |
| // import foundation variables | |
| @import "foundation/components/global"; |