Skip to content

Instantly share code, notes, and snippets.

View parmonov98's full-sized avatar
🎯
web -> front-end

Murod parmonov98

🎯
web -> front-end
View GitHub Profile

YBKY Algoritmlar Yo'lanishi uchun Topshiriq

  1. Ushbu linkdan foydalanib Prampda ro'yahatdan o'ting pramp.com/invt/B6BKWrPny4cww0LpnnPl
  2. Agar sizda allaqachon akkount bo'lsa, qayta ro'yhatdan o'ting - to'liq ism-familiyangizdan foydalanib.
  3. 20-iyunga qadar Data Structures and Algorithms qismida 5ta suhbatdan o'ting.
  4. Practice with friends turidagi intervyu natijalari qabul qilinmaydi.
  5. GitHubda private repozitoriya yarating
  6. GitHub repozitoriyaning settings qismidan ybky42 foydalanuvchisini Collaborator sifatida qo'shing.
  7. Prampdan olgan Feedbacklarni screenshot qilib, yozgan kodngiz bilang birga commit qiling.
  8. 20-iyunga qadar Pull Request yaratib, ybky42 foydalanuvchisini Reviewer sifatida qo'shing.

YBKY saralash bosqichi topshirig'i

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.

Tizimning funksional talablari:

  • Xonalar haqida ma'lumot saqlash va taqdim qila olish;
  • Xonani ko'rsatilgan vaqt oralig'i uchun band qila olish;
@dougpagani
dougpagani / puppeteer-with-persistent-chromium.js
Created April 11, 2021 04:23
This has quite a few pieces of debugging instrumentation/dead-code, but it has some convenient magic to it.
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
@adityardiansyah
adityardiansyah / Summernote for Laravel Livewire
Created July 23, 2020 06:39
Setting Summernote for Laravel Livewire
// 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
@mokhosh
mokhosh / laravel-deployment-vps.md
Last active December 29, 2023 20:20
Deploy Laravel to VPS (LEMP, Git, Mail, Redis, SSL, etc.)

A BETTER ALTERNATIVE

Use laravel-sheploy instead. It's more capabale and much eaiser to use.

Sign in and create git user

  • ssh root@IP
  • adduser git
  • usermod -aG sudo git

Set SSH keys

on local machine

@bradtraversy
bradtraversy / node_nginx_ssl.md
Last active September 9, 2024 23:03
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign up for Digital Ocean

If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a

2. Create a droplet and log in via ssh

I will be using the root user, but would suggest creating a new user

@darhonbek
darhonbek / resume-dark-mamataliev.md
Last active August 13, 2024 11:24
Resume - Dark Mamataliev

Darkhonbek Mamataliev

Senior iOS Engineer at TikTok · ex Uber

GitHub | LinkedIn | Email

Building pixel perfect apps for 1 billion people. Areas: social network, delivery, finance, logistics.

EXPERIENCE

**TikTok, October, 2023 – Present

@newbornfrontender
newbornfrontender / map.js
Last active January 7, 2023 06:35
yandex map custom cluster and placemark
import $ from 'jquery';
// $(document).ready(() => {
// // Создание кластеризатора с произвольным HTML-макетом иконки кластера
// class CustomCluster {
// // Зададаем макет метки кластера
// createCluster() {
// return ymaps.templateLayoutFactory.createClass(
// '<div class="ymap-cluster-icon">{{ properties.geoObjects.length }}</div>',
// );
@bradtraversy
bradtraversy / docker-help.md
Last active September 14, 2024 18:01
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

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]