- 2015-02-20: OX 10.10.5 on Apple hardware can successfully build
- NOTE: Credit and thanks to Amit Singh
- Reference:
This file contains 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
/** | |
* @param model | |
* @return | |
*/ | |
@PreAuthorize("ROLE_USER") | |
@RequestMapping(value = "/secure/etsy-receipts.html", method = RequestMethod.GET) | |
public ModelAndView handleSecureEtsyReceiptsGetRequest(ModelMap model) { | |
logger.debug("Called handleSecureEtsyReceiptsGetRequest"); | |
// Get the first EtsyShop, which should be our primary shop, not supporting multiple shops RN. |
This file contains 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
package com.gordonturner.dangerdigital.service; | |
import com.notronix.etsy.api.EtsyAPI; | |
import com.notronix.etsy.api.EtsyAPIException; | |
import com.notronix.etsy.api.authentication.Credentials; | |
import com.notronix.etsy.api.authentication.EtsyScope; | |
import com.notronix.etsy.api.model.ShopAssociations; | |
import com.notronix.etsy.api.model.UserAssociations; | |
import com.notronix.etsy.impl.EtsyDataService; | |
import com.notronix.etsy.impl.model.EtsyShop; |
This file contains 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
import React, { useEffect } from 'react'; | |
import { PanelProps } from '@grafana/data'; | |
import { stylesFactory } from '@grafana/ui'; | |
import { css, cx, injectGlobal } from 'emotion'; | |
import glyphiconWoff from './fonts/glyphicons-halflings-regular.woff'; | |
import { DEFAULT_API_URL, DEFAULT_API_KEY } from './constants'; | |
import { ListlistData, ListlistItem, ListlistOptions } from './types'; | |
import { DateTime } from 'luxon'; | |
import axios, { AxiosRequestConfig } from 'axios'; |
- 2016-02-20: Ubuntu 15.10 (x86_64) can successfully build OVMF
- 2016-02-20: The OVMF download from http://www.tianocore.org/ is out of date
- The Release r15214 (
OVMF-X64-r15214.zip
) appears to be from 2014-02-11:
- Some notes about this approach:
- An OSX Installer USB drive for
Install OS X El Capitan
is created - Clover is then installed on the USB drive
- Clover Configurator is then run on the USB drive
- The USB drive contents are copied to the VM host
- VNC is used to connect to the guest UI
- An OSX Installer USB drive for
- The qxl virtual video device is used (part of the standard kvm qemu install)