Ревью кода - Уник, хакатон, 10/2024.md
https://confluence.web-bee.ru/pages/viewpage.action?pageId=212771326
Код: https://github.com/Rideuz/Hack_Webbi
Преза: https://drive.google.com/open?id=1LK2OwlqdxQUi2xbUUMiKcoQFcGHVRhnM
Ревью кода - Уник, хакатон, 10/2024.md
https://confluence.web-bee.ru/pages/viewpage.action?pageId=212771326
Код: https://github.com/Rideuz/Hack_Webbi
Преза: https://drive.google.com/open?id=1LK2OwlqdxQUi2xbUUMiKcoQFcGHVRhnM
Script ReplicateUI (download site page) for Tampermonkey
(https://chromewebstore.google.com/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo)
Just install tampermonkey.js
to your Tampermonkey
Press shortcut to download page (Ctrl
+ Alt
+ S
)
Модули взяты из https://gist.github.com/anvaka/8e8fa57c7ee1350e3491
Предварительно выставляем в .npmrc
# заменяем MY_REGISTRY_URL и MY_REGISTRY_NPM
registry=https://MY_REGISTRY_URL/app/repo-ci-npm/api/repository/MY_REGISTRY_NPM/
// Быстрое создание учёток через freeipa | |
// Скрипт исполняется в браузере, после авторизации в freeipa | |
// const users = [ | |
// { | |
// first_name: 'Данёк', | |
// last_name: 'Якубович', | |
// email: '[email protected]', // указываем email человека (можно пропустить, тогда будет без email) | |
// // пароль - генерируем отсюда https://www.random.org/passwords/?num=5&len=12&format=html&rnd=new | |
// password: 'MR132kKk9123123az5gnm', |
Confluence Server only. It will not work with Confluence Cloud
Supports all modern browsers.
When you are editing page content in confluence it continuously saves data to server. But if you lost internet connection (for a long time) in the middle of the path and then closed your browser - you will lose all unsaved data.
Info: https://confluence.web-bee.ru/pages/viewpage.action?pageId=78485730
You should install [email protected]+ https://git-scm.com/downloads
# web-bee
npx https://gist.github.com/crutch12/7940accc898d055d3813e08dba78fdf0 "bitbucket.web-bee.ru" "web-bee" "Firstname Lastname" "[email protected]"
# github
{ | |
"value": 1, | |
"children": [ | |
{ | |
"value": 2, | |
"children": [ | |
{ | |
"value": 5 | |
}, | |
{ |
Help - About Smartgit - Information - Setting Path (click) - Go to latest (eg. 21.2) - Copy/Paste .yml files from this gist - Done
import React from 'react'; | |
import { defineAbilitiesFor } from '~/lib/ability'; | |
export const AbilityContext = React.createContext(defineAbilitiesFor(null)); |
const execSync = require('child_process').execSync; | |
const fs = require('fs'); | |
const webpack = require('webpack'); | |
const marked = require('marked'); | |
module.exports = (env, argv) => { | |
return { | |
plugins: [ | |
// @NOTE: Generate CHANGELOG.md (from git log + current CHANGELOG.md), put it in bundle | |
env.NODE_ENV === 'production' && { |