A Pen by Giovanni Bernini on CodePen.
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
cat /etc/[A-Za-z]*[_-][rv]e[lr]* |
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 | |
# The number "12" below will represent your device | |
# If you don't know your device code, use: xinput --list | |
# If you want see the others property, use: xinput -list-props X | |
# X = your device code | |
xinput --set-prop 12 "Device Accel Constant Deceleration" 2 |
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
(function() { | |
console.log('salve') | |
})() |
A Pen by Giovanni Bernini on CodePen.
A Pen by Giovanni Bernini on CodePen.
A Pen by Giovanni Bernini on CodePen.
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 React from 'react' | |
import { | |
BrowserRouter as Router, | |
Route, | |
} from 'react-router-dom' | |
import Root from './Root' | |
import Home from './pages/Home' | |
import About from './pages/About' | |
const AppRouter = () => { |
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 React from 'react' | |
import isApp from 'utils/isApp' | |
const welcomeType = isApp | |
? 'Your app home page' | |
: 'Your web home page' | |
const Home = () => { | |
return ( | |
<div> |
OlderNewer