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
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
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
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
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
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
<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
Section "InputClass" | |
Identifier "touchpad catchall" | |
Driver "synaptics" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
#Option "TapButton1" "1" | |
Option "TapButton2" "3" | |
#Option "TapButton3" "2" | |
Option "FingerHigh" "50" | |
Option "ClickTime" "0" |
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
https://www.reddit.com/r/unixporn/comments/64mihc/i3_kde_plasma_a_match_made_in_heaven/ | |
just install plasma and i3. Copy my i3 configuration and the file ~/.config/plasma-workspace/env/wm.sh. Restart X (keep using plasma as session) and you have your DE+WM environment. Then just start playing with configuration and themes :) | |
[–]endlessfield 4 points 5 months ago | |
When I try this, KWin runs on top of i3 blocking almost all of the screen except for i3bar. Is there any additional things you need to configure in order not to spawn KWin? | |
[–]poppinsmacArch 3 points 4 months ago |