Skip to content

Instantly share code, notes, and snippets.

View silavsale's full-sized avatar
😇
_yo

Sergiy Rudenko silavsale

😇
_yo
  • Canada
  • 03:20 (UTC -04:00)
View GitHub Profile
[
{
id: 'TP-1',
from: 'Jane Smith',
subject: 'Waiting for Customer',
description: 'Test Add Issue Again to make sure I did not break it.',
date: '23-07-07',
status: 'Open',
},
{
docker logs 4c56a4d589e7
> container@1.0.0 start
> webpack serve --config config/webpack.dev.js
<i> [webpack-dev-server] Project is running at:
<i> [webpack-dev-server] Loopback: http://localhost:8080/
<i> [webpack-dev-server] On Your Network (IPv4): http://172.17.0.3:8080/
<i> [webpack-dev-server] Content not from webpack is served from '/app/public' directory
<i> [webpack-dev-server] 404s will fallback to '/index.html'
const data1 = 'Jordan Smith';
const data2 = [].filter.call(data1, function(elem, index) {
return index > 6;
});
// Що ми отримаємо в data2?
import { useState, useEffect, useRef } from 'react';
// import { HideUntilLoaded } from 'react-animation';
import PropTypes from 'prop-types';
import Spinner from '../spinner/Spinner';
import ErrorMessage from '../errorMessage/ErrorMessage';
import MarvelServices from '../services/MarvelServices';
import './charlist.scss';
@silavsale
silavsale / .powerlevelrc
Created October 15, 2020 03:14 — forked from cviebrock/.powerlevelrc
PowerLevel9K configuration
# General
POWERLEVEL9K_MODE='nerdfont-complete'
POWERLEVEL9K_COLOR_SCHEME='dark'
# Prompts
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir virtualenv vcs)
else
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(root_indicator dir virtualenv vcs)
fi
{
// SETTINGS
"workbench.settings.editor": "json",
// EDITOR
"editor.fontSize": 17,
"editor.fontLigatures": true,
// "editor.fontFamily": "Fira Code",
"editor.copyWithSyntaxHighlighting": false,
"editor.multiCursorModifier": "alt",
{
// SETTINGS
"workbench.settings.editor": "json",
// EDITOR
"editor.formatOnSave": true,
// "prettier.eslintIntegration": true,
"editor.fontSize": 17,
"editor.fontLigatures": true,
// "editor.fontFamily": "Fira Code",
"editor.copyWithSyntaxHighlighting": false,
<html>
<head>
<title>JavaScript</title>
<link rel="stylesheet" href="myCSS.css" />
<script src="http://code.jquery.com/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id="page">
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Events - Event Delegation</title>
<link rel="stylesheet" href="./event.css">
</head>
<body>
var reverse = function(x) {
let i;
let y = '';
let numLen = x.toString().length;
let firstNum = x.toString().slice(0, 1);
if (firstNum === '-'){
y = '-';
x = x.toString().slice(1, numLen);
}
for(i = numLen; i > 0 ; i--){