macOS: 10.13.3
WebDriver: 387.10.10.10.25.156
CUDA Toolkit: 9.1.128
cuDNN: 7
NVDAEGPUSupport: 6
| // use this format since .eslintrc is deprecated. | |
| // You can logically derive this format. | |
| module.exports = { | |
| parser: 'babel-eslint', | |
| extends: [ | |
| 'plugin:flowtype/recommended', | |
| 'plugin:jest/recommended', | |
| 'plugin:react/recommended', | |
| 'eslint-config-airbnb', |
| // bower dependency: "ng-file-upload" | |
| // npm dependency: "loopback-component-storage" | |
| 'use strict'; | |
| angular | |
| .module('app', [ | |
| 'ngFileUpload' | |
| ]) | |
| .controller('UploadController', function(Upload) { |
| #!/bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: vino-server | |
| # Required-Start: $local_fs | |
| # Required-Stop: $local_fs | |
| # Should-Start: | |
| # Should-Stop: | |
| # X-Start-Before: | |
| # X-Stop-After: |
macOS: 10.13.3
WebDriver: 387.10.10.10.25.156
CUDA Toolkit: 9.1.128
cuDNN: 7
NVDAEGPUSupport: 6
| require "bson" | |
| def make_insert(table_name, bson) | |
| columns = ["id",*bson["value"].keys] * ", " | |
| values = ["'#{bson["_id"]}'",*bson["value"].values.map{|value| value.is_a?(Numeric) ? value : "'#{value}'"}] * ", " | |
| return "insert into #{table_name} (#{columns}) values (#{values});" | |
| end | |
| file_name = ARGV.first | |
| file=File.new(file_name) |
| package org.hibernate.test; | |
| import com.google.inject.AbstractModule; | |
| import com.google.inject.Inject; | |
| import com.google.inject.Singleton; | |
| import com.google.inject.persist.PersistService; | |
| import com.google.inject.persist.jpa.JpaPersistModule; | |
| public class DatabaseTestModule extends AbstractModule { |
Just run:
curl -ks https://gist.github.com/nicerobot/5652802/raw/install.sh | bash -
| # For more info: http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_video_display/py_video_display.html | |
| import cv2 | |
| import numpy as np | |
| # Playing video from file: | |
| # cap = cv2.VideoCapture('vtest.avi') | |
| # Capturing video from webcam: | |
| cap = cv2.VideoCapture(0) | |
| currentFrame = 0 |
Download: StarUML.io
Source: jorgeancal
After installing StartUML successfully, modify LicenseManagerDomain.js as follow:
/**| # Generate a BaseSystem.dmg with 10.13 Install Packages | |
| hdiutil attach /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/InstallESD.dmg -noverify -mountpoint /Volumes/highsierra | |
| hdiutil create -o /tmp/HighSierraBase.cdr -size 7316m -layout SPUD -fs HFS+J | |
| hdiutil attach /tmp/HighSierraBase.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
| asr restore -source /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase | |
| cp -R /Volumes/highsierra/Packages /Volumes/OS\ X\ Base\ System/System/Installation | |
| hdiutil detach /Volumes/OS\ X\ Base\ System/ | |
| hdiutil detach /Volumes/highsierra/ | |
| mv /tmp/HighSierraBase.cdr.dmg /tmp/BaseSystem.dmg |