- Download Windows VM with IE from this url Free Virtual Machines from IE8 to MS Edge - Microsoft Edge Development Select for the virtual machine option IE11 on win7 and for platform you have to select VirtualBox
- Don’t close the browser tab until is completely downloaded
- Download Virtualbox https://download.virtualbox.org/virtualbox/6.0.4/VirtualBox-6.0.4-128413-OSX.dmg
- This will download faster, so go ahead and install it once it is downloaded
- When the VM finish downloading then unzip it, and double click the file with the extension
.ovfassuming you already installed VirtualBox, it will open VirtualBox and it will prompt a modal with the details of the VM with an “import” button at the bottom, go ahead and click it. Once it is done double click the vm from the list that appears on a left panel inside Virtual box, you are good to go.
Objective: Make BE a more reliable and stable application
KR1 - We are more aware of app - to > user feedback, by improving our error handling and making the application more intuitive KR2 - We get postive feedback from users, weather it is to improve or that the implemented changes are really making an impact KR3 - We are able to identify areas that need more thought and attention
Objective: Make a BE theme that can be customized and tailored to specific brands
Objective: Prepare BE for upcoming international Volvo dealerships & Polestar
- KR1 - Make BE GDPR compliant along with the implementation of TOS
- KR3 - Deliver Polestar reservation & designation work, A la carte booking flow, What's new, Loaner Management, and Costumer Docs fetures on time, with properly tested and minimal amount bugs
- KR4 - Find out requirements for "No Lonaer" feature for the UK market, and add required changes before August 2019
- KR5 - Provide OPS any support needed to get Polestar in China
| # nil? can be used on any Ruby object. It returns true only if the object is nil. | |
| nil.nil? # => true | |
| [].nil? # => false | |
| {}.nil? # => false | |
| "".nil? # => false | |
| " ".nil? # => false | |
| true.nil? # => false | |
| # empty? can be used on some Ruby objects including Arrays, Hashes and Strings. It returns true only if the object's length is zero. | |
| nil.empty? # NoMethodError: undefined method `empty?' for nil:NilClass |
Use the unsplash API to fetch images with the following search criteria pies, cookies, and random. Present them
to the user(at least 6 images) in a row layout with a message indicating the user to select the images that have pies. When the user clicks on an image
you will need to validate if the image is a pie by using the clarifai api(make sure you don't make a request for the same image twice).
If the image is valid, make it visible on the UI by adding a green border around the image. When the user has validated all images that are pies you should present a message back to the user that all selections are valid.