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 datetime | |
import pandas as pd | |
import csv | |
import os | |
class CashFlow(object): | |
def __init__(self, name='cashflow'): | |
self.name = name |
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
Task | Start | Finish | |
---|---|---|---|
test | 2022-06-23 | 2022-07-30 | |
test | 2022-08-23 | 2022-09-30 |
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
// forms.go | |
package main | |
import ( | |
"html/template" | |
"net/http" | |
) | |
type ContactDetails struct { | |
Email string |
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
pip install -U mycli | |
$ mycli --help | |
Usage: mycli [OPTIONS] [DATABASE] | |
A MySQL terminal client with auto-completion and syntax highlighting. | |
Examples: | |
- mycli my_database | |
- mycli -u my_user -h my_host.com my_database |
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
description | period | type | amount | |
---|---|---|---|---|
rent | monthly | expense | 5400 | |
food | weekly | expense | 900 | |
heating | monthly | expense | 1000 | |
salary | monthly | income | 32000 |
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
sed -i '/```/,/```/d' example.md |
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
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── | |
─██████████████─██████████████─████████████████───████████████████───████████──████████───────────██████████████─██████──██████─██████████████─ | |
─██░░░░░░░░░░██─██░░░░░░░░░░██─██░░░░░░░░░░░░██───██░░░░░░░░░░░░██───██░░░░██──██░░░░██───────────██░░░░░░░░░░██─██░░██──██░░██─██░░░░░░░░░░██─ | |
─██░░██████████─██░░██████░░██─██░░████████░░██───██░░████████░░██───████░░██──██░░████───────────██████░░██████─██░░██──██░░██─██░░██████████─ | |
─██░░██─────────██░░██──██░░██─██░░██────██░░██───██░░██────██░░██─────██░░░░██░░░░██─────────────────██░░██─────██░░██──██░░██─██░░██───────── | |
─██░░██████████─██░░██──██░░██─██░░████████░░██───██░░████████░░██─────████░░░░░░████─────────────────██░░██─────██░░██████░░██─██░░██████████─ | |
─██░░░░░░░░░░██─██░░██──██░░██─██░░░░░░░░░░░░██───██░░░░░░░░░░░░██───────████░░████───────────────────██░░██─────██░░░░░░░░░░██─██░░░░░░░░░░██─ | |
─██████████░░██ |
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
/* dot -Tx11 quick.dot */ | |
digraph G { | |
graph [fontname = "Handlee"]; | |
node [fontname = "Handlee"]; | |
edge [fontname = "Handlee"]; | |
label = "New User Scenario"; | |
labelloc = "t"; | |
bgcolor=transparent; | |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Master Password Generator </title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css"> | |
</body> | |
</head> | |
<body> | |
<nav> | |
<div class="nav-wrapper teal lighten-2"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>To do list</title> | |
</head> | |
<body> | |
<h1>To do list</h1> | |
</body> |
NewerOlder