Skip to content

Instantly share code, notes, and snippets.

View Lanttcat's full-sized avatar
🎯
Tennis

Lantt Lanttcat

🎯
Tennis
View GitHub Profile
@Lanttcat
Lanttcat / command.sh
Created March 11, 2023 05:53
Enable mac key repeats
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
@Lanttcat
Lanttcat / [email protected]
Last active April 11, 2022 07:29
Install lua-http on mac without openssl@3
@Lanttcat
Lanttcat / dark-mode-in-a-website-with-css.markdown
Created November 4, 2019 10:24
Dark mode in a website with CSS
@Lanttcat
Lanttcat / markdownhere.css
Created December 17, 2018 15:42 — forked from xiaolai/markdownhere.css
markdown-here-css
.markdown-here-wrapper {
font-size: 16px;
line-height: 1.8em;
letter-spacing: 0.1em;
}
pre, code {
font-size: 14px;
font-family: Roboto, 'Courier New', Consolas, Inconsolata, Courier, monospace;
@Lanttcat
Lanttcat / TabItem.jsx
Created October 23, 2018 05:31
[React] # tags
import React from 'react';
class TabItem extends React.Component {
render() {
return <div>{this.props.children}</div>;
}
}
export default TabItem;