Skip to content

Instantly share code, notes, and snippets.

View samarkandiy's full-sized avatar
🎯
Focusing

Avaz Bokiev samarkandiy

🎯
Focusing
View GitHub Profile
<div class="py-12 bg-white">
<div class="max-w-screen-xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<p class="text-base leading-6 text-indigo-600 font-semibold tracking-wide uppercase">Transactions</p>
<h3 class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl sm:leading-10">
A better way to send money
</h3>
<p class="mt-4 max-w-2xl text-xl leading-7 text-gray-500 lg:mx-auto">
Lorem ipsum dolor sit amet consect adipisicing elit. Possimus magnam voluptatum cupiditate veritatis in accusamus quisquam.
</p>
! version = 2.0
+ hello
- hello, what is your name?
+ hi
- hi, what is your name?
+ my name is *
- nice to meet you <star>
! version = 2.0
+ hello
- hello, what is your name?
+ hi
- hi, what is your name?
+ my name is *
- nice to meet you <star>
@samarkandiy
samarkandiy / index.html
Created February 5, 2019 17:21
StupendousPlasticMap created by samarkandiy - https://repl.it/@samarkandiy/StupendousPlasticMap
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
@samarkandiy
samarkandiy / change-class-on-scroll.html
Created November 22, 2018 18:23 — forked from ohiosveryown/change-class-on-scroll.html
Vanilla JS – change/add class based on scroll position.
// https://codepen.io/cmykw/pen/gemxJm
// layout
<nav/>
// style
<style>
body { min-height: 200vh; }
nav {
<style>
ul.language-icons {
margin: 0;
padding: 0;
position: absolute;
right: 0;
top: 15px;
}
ul.language-icons li {
@samarkandiy
samarkandiy / grid.css
Last active August 29, 2015 14:09
Simple CSS grid
.row {
margin: 1% 0;
overflow: auto;
}
.col {
float: left;
box-sizing: border-box;
-o-box-sizing: border-box;
-moz-box-sizing: border-box;
{"users":[
{
"firstName":"Ray",
"lastName":"Villalobos",
"joined": {
"month":"January",
"day":12,
"year":2012
}
},
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../chart-js/chart-js.html">
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.html">
<polymer-element name="my-element">
<template>
#1. SYSTEM
$ uname –a => Display linux system information
$ uname –r => Display kernel release information (refer uname command in detail)
$ cat /etc/redhat_release => Show which version of redhat installed
$ uptime => Show how long system running + load (learn uptime command)
$ hostname => Show system host name
$ hostname -i => Display the IP address of the host (all options hostname)
$ last reboot => Show system reboot history (more examples last command)
$ date => Show the current date and time (options of date command)