This file contains 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
<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> |
This file contains 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
! version = 2.0 | |
+ hello | |
- hello, what is your name? | |
+ hi | |
- hi, what is your name? | |
+ my name is * | |
- nice to meet you <star> |
This file contains 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
! version = 2.0 | |
+ hello | |
- hello, what is your name? | |
+ hi | |
- hi, what is your name? | |
+ my name is * | |
- nice to meet you <star> |
This file contains 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
<!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> |
This file contains 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
// https://codepen.io/cmykw/pen/gemxJm | |
// layout | |
<nav/> | |
// style | |
<style> | |
body { min-height: 200vh; } | |
nav { |
This file contains 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
<style> | |
ul.language-icons { | |
margin: 0; | |
padding: 0; | |
position: absolute; | |
right: 0; | |
top: 15px; | |
} | |
ul.language-icons li { |
This file contains 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
.row { | |
margin: 1% 0; | |
overflow: auto; | |
} | |
.col { | |
float: left; | |
box-sizing: border-box; | |
-o-box-sizing: border-box; | |
-moz-box-sizing: border-box; |
This file contains 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
{"users":[ | |
{ | |
"firstName":"Ray", | |
"lastName":"Villalobos", | |
"joined": { | |
"month":"January", | |
"day":12, | |
"year":2012 | |
} | |
}, |
This file contains 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
<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> |
This file contains 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
#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) |
NewerOlder