- https://fishshell.com/ - мой дефолтный шелл, я использую тему bobthefish
- https://www.sublimetext.com/ - дефолтный текстовый редактор
- Material Theme
- Operator font
- Пакеты: Emmet, Hayaku, SidebarEnhancements, JS Snippets, GSAP Snippets
- Снипет для комментирования
- Иконка приложения
- https://code.visualstudio.com/ - пытаюсь его использовать, но пока не переехал
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 { useEffect, useState } from 'react' | |
| import { API, graphqlOperation } from 'aws-amplify' | |
| const ListTalks = ` | |
| query { | |
| listTalks { | |
| items { | |
| name | |
| description | |
| presenter { |
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 from "react"; | |
| import ReactDOM from "react-dom"; | |
| import { useState, useEffect, useRef } from "react"; | |
| import posed, { PoseGroup } from "react-pose"; | |
| import "./styles.css"; | |
| let AnimatableDiv = posed.div({ | |
| enter: { | |
| y: 0, | |
| x: 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
| import { Module, Global, DynamicModule } from '@nestjs/common' | |
| import { EnvModule } from './env.module' | |
| import { EnvService } from './env.service' | |
| import { TypeOrmModule } from '@nestjs/typeorm' | |
| function DatabaseOrmModule (): DynamicModule { | |
| const config = new EnvService().read() | |
| return TypeOrmModule.forRoot({ | |
| type: config.DB_TYPE, |
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 * as React from "react"; | |
| import { Frame, Stack, PropertyControls, ControlType } from "framer"; | |
| import { Avatar, PostHeader, PostImage, PostButtonGroup } from "./canvas"; | |
| // Define type of property | |
| interface Props { | |
| username: string; | |
| timeStamp: string; | |
| postText: string; | |
| width: number; |
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 * as Sentry from "@sentry/node"; | |
| import imagemin from "imagemin"; | |
| import mozjpeg from "imagemin-mozjpeg"; | |
| import sharp from "sharp"; | |
| import isJpg from "is-jpg"; | |
| import * as aws from "aws-sdk"; | |
| import { Upload } from "../../types/graphqlUtils"; | |
| import { generateFilename } from "./generateFilename"; | |
| export const s3 = new aws.S3({ |
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 { Backpack } from "react-kawaii"; | |
| class Packy extends Component { | |
| componentWillUnmount() { | |
| alert(`Bye, bye 👋 \n I have to start my journey! 🗺`); | |
| } | |
| render() { | |
| return <Backpack size={200} mood="excited" color="#FFD882" />; |
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 Packy from "./packy"; | |
| class Five extends Component { | |
| state = { | |
| comeHome: true | |
| }; | |
| comeHomePacky = () => { | |
| this.setState({ comeHome: !this.state.comeHome }); |
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 { IceCream } from "react-kawaii"; | |
| class Four extends Component { | |
| state = { | |
| mood: "sad" | |
| }; | |
| changingMood = () => { | |
| this.setState({ mood: "sad" }); |
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 { Browser, Ghost } from "react-kawaii"; | |
| class Three extends Component { | |
| state = { | |
| type: "Browser", | |
| mood: "happy", | |
| color: "#61DDBC", | |
| visible: true | |
| }; |
NewerOlder