Skip to content

Instantly share code, notes, and snippets.

View timseriakov's full-sized avatar
💬
IN GIT WE TRUST

Tim Seriakov timseriakov

💬
IN GIT WE TRUST
View GitHub Profile

Brew Bundle Brewfile Tips

Copyright & License

Unless otherwise noted (either in this file or in a file's copyright section) the contents of this gist are Copyright ©️2020 by Christopher Allen, and are shared under spdx:Creative Commons Attribution Share Alike 4.0 International (CC-BY-SA-4.) open-source license.

Sponsor

If you more tips and advice like these, you can become a monthly patron on my GitHub Sponsor Page for as little as $5 a month; and your contributions will be multipled, as GitHub is matching the first $5,000! This gist is all about Homebrew, so if you like it you can support it by donating to them or becoming one of their Github Sponsors.

@timseriakov
timseriakov / tailwind.config.js
Created May 18, 2022 12:27 — forked from hacknug/tailwind.config.js
TailwindCSS default config
/*
Tailwind - The Utility-First CSS Framework
A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink),
David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger).
Welcome to the Tailwind config file. This is where you can customize
Tailwind specifically for your project. Don't be intimidated by the
length of this file. It's really just a big JavaScript object and
@timseriakov
timseriakov / useSelector-useCallback.jsx
Created January 15, 2021 08:50
useSelector без лишних перерисовок #useSelector #redux
const selector = useCallback((state) => state.todolist, [])
const {todoListData} = useSelector(selector)
import React, {ChangeEvent, useState} from 'react';
import {TextField} from '@material-ui/core';
type EditableSpanPropsType = {
value: string
onChange: (newValue: string) => void
}
export const EditableSpan = React.memo(function (props: EditableSpanPropsType) {
console.log("EditableSpan called");
@timseriakov
timseriakov / pug.md
Created April 17, 2020 16:28 — forked from neretin-trike/pug.md
Туториал по HTML препроцессору Pug (Jade)