Some notes and references while exploring the GitHub CLI extension for the GitHub Copilot CLI.
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
{ | |
"purpose" : "улучшить и систематизировать знания" | |
} | |
{ | |
"purpose" : "углубить знания по js/node + backend" | |
} | |
{ | |
"purpose" : "решил посмотреть сферу web sw development" | |
} | |
{ |
Ссылки на голландском легко переводятся на английский через Google Translate (встроен в Chrome)
👉 Я работаю или являюсь предпринимателем в другой стране, приехал в NL, что с налогами?
До момента регистрации по месту жительства в Управе (Geemente) вы не являетесь налоговым резидентом Нидерландов, и не должны ничего за доход в другой стране.
Со дня регистрации вы являетесь налоговым резидентом Нидерландов и должны здесь платить налоги на мировой доход, полученный с этого дня, а также указывать его в налоговой декларации.
Такой доход классифицируется как "Box 1", он облагается налогом (чуть меньше 50%).
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
+b.courses-about.courses-mix | |
+course-nav-header | |
p. | |
В этом курсе мы с вами шаг за шагом пройдем от знакомства с основными идеями до использования самых новых инструментов и инфраструктуры React, | |
на практике будем развивать одностраничное приложение. | |
Начнем с построения простых компонентов, научимся их тестировать, поговорим про системы сборки и особенности работы с современным синтаксисом. | |
p. | |
Постепенно мы разберем особенности построения SPA с использованием React, будем использовать сторонние компоненты и библиотеки для создания бизнес-логики. |
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
--[[ | |
Copyright 2020 wizard | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
GNU General Public License for more details. |
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
table.colortable { | |
& td { | |
text-align:center; | |
&.c { text-transform:uppercase } | |
&:first-child, &:first-child + td { border:1px solid black } | |
} | |
& th { | |
text-align:center; | |
background:blue; | |
color:white; |
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
module.exports = class HtmlCodeRunner { | |
async run({ code, waitForResult, timeout }) { | |
const { port1, port2 } = new MessageChannel(); | |
// .querySelector('#previewWorkerManagerFrame') | |
this.elem.contentWindow.postMessage( | |
{ | |
command, | |
sandbox, | |
waitForResult, | |
timeout, |
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
/* | |
.domtree .node rect { | |
cursor: pointer; | |
fill: #fff; | |
} | |
.domtree .node text { | |
fill: #333333; | |
font: 12px "Helvetica Nue", sans-serif; | |
pointer-events: none; |
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
+b.courses-about.courses-mix | |
+course-nav-header | |
p Vue.js - прагматичный JavaScript фреймворк, использующийся как для постепенной миграции проектов, так и для разработки современных SPA приложений. | |
p Курс посвящён разработке на Vue.js от использования его как небольшой библиотеки до создания современного SPA приложения. | |
p С первого занятия мы будем разрабатывать проект, на примере которого постепенно изучим возможности Vue, основные библиотеки его экосистемы и их применение для решения практических задач. | |
p |
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
<!doctype html> | |
<body> | |
<link rel="stylesheet" href="../../styles/common.css"> | |
<link rel="stylesheet" href="style.css"> | |
<script type="module"> | |
import salesData from './salesData.js'; | |
import ColumnChart from './index.js'; | |
let chart = new ColumnChart({ | |
url: '/api/dashboard/orders', |
NewerOlder