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.
| #!/usr/bin/env python3 | |
| import sys | |
| import tqdm | |
| from pathlib import Path | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| import astropy.units as u | |
| from astropy.time import Time |
| #include <string.h> | |
| // This function is called when a packet is received on the raw HID interface. | |
| // `length` will always be the size of the output (host to device) report in bytes - 32 in current QMK, but will eventually be raised to 64. | |
| // Thus, if you wish to send variable length data, you should send the length along with the payload, splitting across multiple reports | |
| // if needed, and handle the parsing yourself. | |
| // | |
| // In this simple example, we check that the first byte of the received data is the ASCII character 'A', | |
| // in which case we respond with 'B' and toggle the backlight. | |
| void raw_hid_receive(uint8_t *data, uint8_t length) { |
| #!/bin/env bash | |
| # Usage : | |
| # ffwebm input_file output_file [video_bitrate [audio_bitrate]] | |
| INPUT=${1} | |
| OUTPUT=${2} | |
| BITRATE=${3:-1000k} | |
| AUDIO_BITRATE=${4:-64k} |
| #! /usr/bin/env ruby | |
| # NOTE: Requires Ruby 2.1 or greater. | |
| # This script can be used to parse and dump the information from | |
| # the 'html/contact_info.htm' file in a Facebook user data ZIP download. | |
| # | |
| # It prints all cell phone call + SMS message + MMS records, plus a summary of each. | |
| # | |
| # It also dumps all of the records into CSV files inside a 'CSV' folder, that is created |
| import noise | |
| width = 600 | |
| height = 300 | |
| freq = 160.0 | |
| image = Image.new("RGBA", (width, height)) | |
| pixels = image.load() |
| /** | |
| * Marlin 3D Printer Firmware | |
| * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] | |
| * | |
| * Based on Sprinter and grbl. | |
| * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or |
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.
| """ | |
| When run in cron, automatically adds compliant alias names to local DNS. | |
| Use at your own risk. | |
| Patrick Fuller, 25 June 17 | |
| """ | |
| import re | |
| import paramiko | |
| import pymongo |
You can run your Express app very easily inside your Electron app.
All you need to do is to:
your_electron_app\resources\appapp.js file