- Ushbu linkdan foydalanib Prampda ro'yahatdan o'ting pramp.com/invt/B6BKWrPny4cww0LpnnPl
- Agar sizda allaqachon akkount bo'lsa, qayta ro'yhatdan o'ting - to'liq ism-familiyangizdan foydalanib.
- 20-iyunga qadar
Data Structures and Algorithmsqismida 5ta suhbatdan o'ting. Practice with friendsturidagi intervyu natijalari qabul qilinmaydi.- GitHubda
privaterepozitoriya yarating - GitHub repozitoriyaning
settingsqismidanybky42foydalanuvchisiniCollaboratorsifatida qo'shing. - Prampdan olgan
Feedbacklarniscreenshotqilib, yozgan kodngiz bilang birgacommitqiling. - 20-iyunga qadar
Pull Requestyaratib,ybky42foydalanuvchisiniReviewersifatida qo'shing.
Impactt co-working markazi rezidentlariga majlis xonalarni oldindan oson band qilish uchun tizim yaratmoqchi va bunda sizning yordamingiz kerak.
Backend yo'nalishiga topshirganlar tizim uchun REST API tuzishi kerak bo'ladi. Frontend yo'nalishi qatnashchilaridan esa ushbu tizim uchun foydalanuvchi interfeysini yasash kutiladi.
- Xonalar haqida ma'lumot saqlash va taqdim qila olish;
- Xonani ko'rsatilgan vaqt oralig'i uchun band qila olish;
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
| const WSE_FILE = './.wsaddress' | |
| const fs = require('fs') | |
| // https://stackoverflow.com/questions/12871740/how-to-detach-a-spawned-child-process-in-a-node-js-script | |
| // https://github.com/puppeteer/puppeteer/issues/4061 | |
| const LAUNCH_CONFIG = { | |
| headless: false, | |
| // handleSIGHUP: false, | |
| // handleSIGINT: false, | |
| // handleSIGTERM: false, | |
| // args: dontBackgroundArgs |
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
| // HTML | |
| <div class="col-md-12"> | |
| <div class="form-group" wire:ignore> | |
| <label for="desciption">Deskripsi</label> | |
| <textarea type="text" input="description" id="summernote" class="form-control summernote">{{ $description }}</textarea> | |
| </div> | |
| </div> | |
| // JAVASCRIPT |
Use laravel-sheploy instead. It's more capabale and much eaiser to use.
ssh root@IPadduser gitusermod -aG sudo git
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
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 $ from 'jquery'; | |
| // $(document).ready(() => { | |
| // // Создание кластеризатора с произвольным HTML-макетом иконки кластера | |
| // class CustomCluster { | |
| // // Зададаем макет метки кластера | |
| // createCluster() { | |
| // return ymaps.templateLayoutFactory.createClass( | |
| // '<div class="ymap-cluster-icon">{{ properties.geoObjects.length }}</div>', | |
| // ); |
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" | |
| class Form extends React.Component { | |
| state = { | |
| cats: [{name:"", age:""}], | |
| owner: "", | |
| description: "" | |
| } | |
| handleChange = (e) => { | |
| if (["name", "age"].includes(e.target.className) ) { | |
| let cats = [...this.state.cats] |
NewerOlder