Skip to content

Commit d646534

Browse files
Степан Самутичевsamutich
authored andcommitted
Initial commit
Initial commit
0 parents  commit d646534

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3284
-0
lines changed

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: '.'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
.pnpm-debug.log*
9+
lerna-debug.log*
10+
11+
# Diagnostic reports (https://nodejs.org/api/report.html)
12+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13+
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
*.lcov
26+
27+
# nyc test coverage
28+
.nyc_output
29+
30+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31+
.grunt
32+
33+
# Bower dependency directory (https://bower.io/)
34+
bower_components
35+
36+
# node-waf configuration
37+
.lock-wscript
38+
39+
# Compiled binary addons (https://nodejs.org/api/addons.html)
40+
build/Release
41+
42+
# Dependency directories
43+
node_modules/
44+
jspm_packages/
45+
46+
# .lock files
47+
package-lock.json
48+
yarn.lock
49+
50+
# yarn
51+
.yarn/
52+
.yarn/cache
53+
.yarn/unplugged
54+
.yarn/build-state.yml
55+
.yarn/install-state.gz
56+
.pnp.*
57+
58+
# Yarn rc.yml file
59+
.yarnrc.yml
60+
61+
# Yarn Integrity file
62+
.yarn-integrity
63+
64+
# Optional npm cache directory
65+
.npm
66+
67+
# TypeScript v1 declaration files
68+
typings/
69+
70+
# Snowpack dependency directory (https://snowpack.dev/)
71+
web_modules/
72+
73+
# TypeScript cache
74+
*.tsbuildinfo
75+
76+
# Optional eslint cache
77+
.eslintcache
78+
79+
# Optional stylelint cache
80+
.stylelintcache
81+
82+
# Microbundle cache
83+
.rpt2_cache/
84+
.rts2_cache_cjs/
85+
.rts2_cache_es/
86+
.rts2_cache_umd/
87+
88+
# Optional REPL history
89+
.node_repl_history
90+
91+
# Output of 'npm pack'
92+
*.tgz
93+
94+
# dotenv environment variables files
95+
.env
96+
.env.development.local
97+
.env.test
98+
.env.test.local
99+
.env.production
100+
.env.production.local
101+
.env.local
102+
103+
# parcel-bundler cache (https://parceljs.org/)
104+
.cache
105+
.parcel-cache
106+
107+
# Next.js build output
108+
.next
109+
out
110+
111+
# Nuxt.js build / generate output
112+
.nuxt
113+
dist
114+
dist/
115+
.output/
116+
117+
# Gatsby files
118+
.cache/
119+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
120+
# https://nextjs.org/blog/next-9-1#public-directory-support
121+
# public
122+
123+
# vuepress build output
124+
.vuepress/dist
125+
126+
# vuepress v2.x temp and cache directory
127+
.temp
128+
.cache
129+
130+
# Docusaurus cache and generated files
131+
.docusaurus
132+
133+
# Serverless directories
134+
.serverless/
135+
136+
# FuseBox cache
137+
.fusebox/
138+
139+
# DynamoDB Local files
140+
.dynamodb/
141+
142+
# TernJS port file
143+
.tern-port
144+
145+
# Visual Studio Code
146+
.vscode
147+
148+
# Stores VSCode versions used for testing VSCode extensions
149+
.vscode-test
150+
151+
# macOS-specific files
152+
.DS_Store

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Степан Самутичев
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Samutichev.github.io
2+
Samutichev's Website

assets/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading
1.55 MB
Binary file not shown.
1000 KB
Binary file not shown.

assets/icons/arrow-back-up.svg

Lines changed: 5 additions & 0 deletions
Loading

assets/icons/arrow-forward-up.svg

Lines changed: 5 additions & 0 deletions
Loading

assets/icons/chevron-left.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/icons/chevron-right.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/icons/color-picker.svg

Lines changed: 5 additions & 0 deletions
Loading

assets/icons/door-exit.svg

Lines changed: 7 additions & 0 deletions
Loading

assets/icons/dot.svg

Lines changed: 12 additions & 0 deletions
Loading

assets/icons/download.svg

Lines changed: 6 additions & 0 deletions
Loading

assets/icons/eraser.svg

Lines changed: 5 additions & 0 deletions
Loading

assets/icons/file-download.svg

Lines changed: 7 additions & 0 deletions
Loading

assets/icons/line.svg

Lines changed: 6 additions & 0 deletions
Loading

assets/icons/link.svg

Lines changed: 6 additions & 0 deletions
Loading

assets/icons/none.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/icons/palette.svg

Lines changed: 7 additions & 0 deletions
Loading

assets/icons/pencil.svg

Lines changed: 5 additions & 0 deletions
Loading

assets/icons/photo-down.svg

Lines changed: 9 additions & 0 deletions
Loading

assets/icons/photo.svg

Lines changed: 7 additions & 0 deletions
Loading

assets/icons/point.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/icons/pointer.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/icons/sq.svg

Lines changed: 6 additions & 0 deletions
Loading

assets/icons/trash-x.svg

Lines changed: 7 additions & 0 deletions
Loading

assets/patterns/pattern_dot.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/patterns/pattern_line.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/patterns/pattern_none.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)