- Peter Collingridge SVG Editor + Optimizer
http://www.petercollingridge.appspot.com/svg-editor - Draw SVG
http://www.drawsvg.org/drawsvg.html - Vecteezy
https://www.vecteezy.com/editor - SVG Edit
https://svg-edit.github.io/svgedit/editor/svg-editor.html
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
stages: | |
- test | |
variables: | |
MYSQL_DATABASE: sylius_test_cached | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_USER: root | |
# This is normally provided by the .env file. But since we have to use "mysql" as host name, its defined | |
# here. We not using any .env file! | |
# The pattern is: mysql://user:password@host/database |
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
-- | |
-- MySql - ASP.NET Core Identity | |
-- | |
-- | |
-- Table structure for table `aspnetroles` | |
-- | |
CREATE TABLE IF NOT EXISTS AspNetRoles ( | |
`Id` varchar(128) NOT NULL, |
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 { ComponentFixture, TestBed } from '@angular/core/testing'; | |
import { ElectronService } from 'ngx-electron'; | |
import { AppComponent } from './app.component'; | |
import { FakeElectronService } from './fake-electron.service'; | |
describe('AppComponent', () => { | |
let fixture: ComponentFixture<AppComponent>; | |
let comp: AppComponent; | |
let electronService: FakeElectronService; |
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
const canvas = fabric.createCanvasForNode(width, height); | |
canvas.contextCache.constructor.prototype.getFontSize = function getFontSize() { | |
return 1 * this.font.split('-')[1]; | |
}; | |
canvas.contextCache.constructor.prototype.getFontFamily = function getFontFamily() { | |
return this.font.split('-')[0] | |
}; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- | |
Copyright (c) 2014-2017, Jan Bösenberg & Jürg Lehni | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This example renders thirty frames of the Three.js 'your first scene' example and sends them to a Node.js microservice, which saves them to the filesystem.
test-render-client.html
- Creates the scene, camera, renderer, and kicks off the render loop, which stops after 30 frames have been rendered.
- As an optimization, it doesn't add the Three.js canvas to the browser DOM, rendering it offscreen, but reporting progress.
- It extracts the data for each frame using canvas.toDataURL(), sending that to a web worker process for transmission.
- When all frames are rendered, it sends a 'done' message to the worker.
test-render-worker.js
- Sets up a queue for incoming frames to be sent to the server.
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
<f:form class="searchbox form-inline" | |
pageUid="{pidSearch}" | |
method="post" | |
noCacheHash="true" | |
absolute="0" | |
action="search" | |
extensionName="IndexedSearch" | |
pluginName="pi2" | |
controller="Search" | |
> |
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
// Get height of window and set an offset from bottom | |
var winHeight = $(window).height(); | |
var offset = 50; | |
// Recalc height of window in case of resize | |
$(window).bind('resizeEnd', function() { | |
winHeight = $(window).height(); | |
}); | |
// When we scroll we do some checks... |
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
#!/bin/bash | |
set -e | |
##################### | |
# Inkscape Install # | |
##################### | |
# Script installs Inkscape from source for Amazon AMI Instance (CentOS/REHL) | |
# | |
# Works as of 01/03/2016 |
NewerOlder