This file contains hidden or 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
| <script src="https://meet.jit.si/external_api.js"></script> | |
| <div id="meet"> | |
| </div> | |
| hello world | |
| <script> | |
| var options = { | |
| roomName: "jdtest", | |
| width: 700, | |
| height: 700, | |
| parentNode: document.querySelector('#meet') |
This file contains hidden or 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
| conky.config = { | |
| use_spacer = 'left', | |
| pad_percents = 3, | |
| background = false, | |
| double_buffer = true, | |
| font = 'DejaVu Sans Mono:size=10', | |
| use_xft = true, | |
| alignment = 'top_right', | |
| gap_x = 10, | |
| gap_y = 40, |
This file contains hidden or 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
| geth --rinkeby account list | |
| geth --rpc --rpcport 8545 --rpccorsdomain "*" --rpcapi="db,eth,net,web3,personal,web3,debug" --rinkeby console --light --unlock "0xACCOUNTHASH" |
This file contains hidden or 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 { gun } from './gun.service'; | |
| export const STATUS_SUCCESS = 'success'; | |
| export const STATUS_ERROR = 'error'; | |
| const ACTION_CREATE = 'create'; | |
| const ACTION_AUTH = 'auth'; | |
| const SESSION_KEY_USERNAME = 'rt_username'; | |
| const SESSION_KEY_PASSWORD = 'rt_password'; | |
| export interface Credentials { | |
| username: string; |
This file contains hidden or 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
| cat /usr/share/X11/xorg.conf.d/75-synaptics.conf | |
| Section "InputClass" | |
| Identifier "touchpad catchall" | |
| Driver "synaptics" | |
| MatchIsTouchpad "on" | |
| MatchDevicePath "/dev/input/event*" | |
| EndSection | |
| # This option enables the bottom right corner to be a right button on | |
| # non-synaptics clickpads. |
This file contains hidden or 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
| cat /usr/share/X11/xorg.conf.d/75-synaptics.conf | |
| Section "InputClass" | |
| Identifier "touchpad catchall" | |
| Driver "synaptics" | |
| MatchIsTouchpad "on" | |
| MatchDevicePath "/dev/input/event*" | |
| EndSection | |
| # This option enables the bottom right corner to be a right button on | |
| # non-synaptics clickpads. |
This file contains hidden or 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
| Traceback (most recent call last): | |
| File "/home/jdunlap/plus/blender/2.79/scripts/modules/addon_utils.py", line 351, in enable | |
| mod = __import__(module_name) | |
| File "/home/jdunlap/.config/blender/2.79/scripts/addons/DECALmachine/__init__.py", line 85, in <module> | |
| modules = du.setup_addon_modules(__path__, __name__, "bpy" in locals()) | |
| File "/home/jdunlap/.config/blender/2.79/scripts/addons/DECALmachine/developer_utils.py", line 36, in setup_addon_modules | |
| modules = import_submodules(names) | |
| File "/home/jdunlap/.config/blender/2.79/scripts/addons/DECALmachine/developer_utils.py", line 28, in import_submodules | |
| modules.append(importlib.import_module("." + name, package_name)) | |
| File "/home/jdunlap/plus/blender/2.79/python/lib/python3.6/importlib/__init__.py", line 126, in import_module |
This file contains hidden or 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, { Component } from 'react'; | |
| import awsmobile from '../aws-exports'; | |
| import Auth from '@aws-amplify/auth'; | |
| import { Hub } from '@aws-amplify/core'; | |
| import {withOAuth} from 'aws-amplify-react'; | |
| const config = Auth.configure(awsmobile) as any; | |
| interface State { loggedIn: boolean, user?:{username: string, name:string, email: string} } | |
| class AWSApp extends Component<any, State> { |
This file contains hidden or 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 and prepare iot for pubsub | |
| const IotData = require("aws-sdk/clients/iotdata"); | |
| let iotData; | |
| export default function getIotData() { | |
| if (iotData) { | |
| return iotData; | |
| } else { | |
| iotData = new IotData({ | |
| endpoint: process.env["AWS_IOT_ENDPOINT"], |
This file contains hidden or 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
| I've installed a fresh copy of Fedora 29, installed wine-staging and other battle.net deps recommended for Fedora (see below). | |
| However, when I try to install Battle.net (or Overwatch), I get the following logs before the battle.net installer crashes. | |
| Installer failure image: | |
| https://imgur.com/a/QfuCpPL | |
| DEBUG 2018-10-31 06:26:18,888 [thread]:Processes monitored: Battle.net-Setu (5752:R), Battle.net-Setu (5752:R) | |
| Fontconfig error: "/etc/fonts/conf.d/90-synthetic.conf", line 6: invalid attribute 'version' | |
| Fontconfig error: Cannot load default config file |