Ubuntu, Fedora, openSUSE, CentOS, SUSE Linux Enterprise, Debian,... users can finally use Autodesk Fusion 360 in the Linux Browser now.
On Chromium 55.0.2843.0 I get NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED
.
import { Meta } from "@storybook/react/types-6-0"; | |
import { PostList } from "../PostList"; | |
import { getTRPCMock } from "../getTrpcMock"; | |
export default { | |
title: "Components/PostList", | |
component: PostList, | |
} as Meta; | |
export const PostListPage = () => { |
#!/bin/bash | |
gource \ | |
-s .03 \ | |
-1280x720 \ | |
--auto-skip-seconds .1 \ | |
--multi-sampling \ | |
--stop-at-end \ | |
--key \ | |
--highlight-users \ |
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import SyntaxHighlighter from 'react-syntax-highlighter'; | |
export default class CodeBlock extends React.PureComponent { | |
static propTypes = { | |
value: PropTypes.string.isRequired, | |
language: PropTypes.string, | |
} |
import { withRouter } from 'next/router'; | |
import Link from 'next/link'; | |
import React, { Children } from 'react'; | |
const ActiveLink = ({ router, children, ...props }) => { | |
const child = Children.only(children); | |
let className = child.props.className || ''; | |
if (router.pathname === props.href && props.activeClassName) { | |
className = `${className} ${props.activeClassName}`.trim(); |
Ubuntu, Fedora, openSUSE, CentOS, SUSE Linux Enterprise, Debian,... users can finally use Autodesk Fusion 360 in the Linux Browser now.
On Chromium 55.0.2843.0 I get NET::ERR_CERTIFICATE_TRANSPARENCY_REQUIRED
.
[Desktop Entry] | |
Categories=Development; | |
Comment=Supercharge your API workflow | |
Exec="/home/hauthorn/Programs/Postman/Postman" | |
Icon=/home/hauthorn/Programs/Postman/app/resources/app/assets/icon.png | |
Name=Postman | |
Terminal=false | |
Type=Application | |
Version=1.0 |
// dependencies | |
var async = require('async'); | |
var AWS = require('aws-sdk'); | |
// Enable ImageMagick integration. | |
var gm = require('gm').subClass({ imageMagick: true }); | |
var util = require('util'); | |
var pdf2png = require('pdf2png'); | |
pdf2png.ghostscriptPath = "/usr/bin"; | |
// constants |
The aim of this gist is to fix the following informative post about uploading via XHR.
The first part is the HTML. First of all, you really don't need JavaScript to upload a file but you do need a proper form. Secondly, inputs in a form shouild have a name, because the name is what the server will receive: not IDs, names!
Following the fixed form part.
# Copyright (c) 2016 Shotgun Software Inc. | |
# | |
# CONFIDENTIAL AND PROPRIETARY | |
# | |
# This work is provided "AS IS" and subject to the Shotgun Pipeline Toolkit | |
# Source Code License included in this distribution package. See | |
# https://github.com/shotgunsoftware/tk-core/blob/master/LICENSE | |
# By accessing, using, copying or modifying this work you indicate your | |
# agreement to the Shotgun Pipeline Toolkit Source Code License. All rights | |
# not expressly granted therein are reserved by Shotgun Software Inc. |