Skip to content

Instantly share code, notes, and snippets.

View leechy's full-sized avatar

Andrey Lechev leechy

View GitHub Profile
@leechy
leechy / main.dart
Created July 5, 2019 19:53
Assignment 1: Time to Practice: Flutter Basics
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutterass1/textcontrol.dart';
import 'package:flutterass1/wisdom.dart';
void main() => runApp(AssignmentApp());
class AssignmentApp extends StatefulWidget {
@override
State<StatefulWidget> createState() {
@leechy
leechy / donations.eml
Created September 27, 2017 11:52
Письмо, которое отправляется дарителям
{date}
Dear {fullname},
A warm thank you for your donation of <b>{amount}</b> to <b>Aznavour Foundation!</b>
As you know, apart from huge cultural legacy, Charles Aznavour has dedicated his efforts towards making a difference in the lives of other people. Among his charitable activities, he provided aid to the victims of the 1988 earthquake in Armenia and continues his humanitarian projects through the Aznavour Foundation founded with his son Nicolas Aznavour in 2017.
Your contribution will help the Foundation to achieve its goals of implementing projects in the areas of social welfare, education, culture and international integration.
@leechy
leechy / dabblet.css
Created April 13, 2016 11:34
Negative border-radius border
/**
* Negative border-radius border
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@leechy
leechy / dabblet.css
Created February 11, 2015 14:52
3d transform for Tiny Fort
/**
* 3d transform for Tiny Fort
*/
.tech-canvas {
position: relative;
width: 500px;
height: 500px;
perspective: 800px;
box-shadow: 0 0 5px #000 inset;
@leechy
leechy / dabblet.css
Created January 27, 2015 15:39
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@leechy
leechy / dabblet.css
Created October 8, 2014 09:02
L2 Classic Preorder Page Layout
/**
* L2 Classic Preorder Page Layout
*/
html, body {
height: 100%;
margin: 0;
}
.layout {
@leechy
leechy / dabblet.css
Last active August 29, 2015 14:07
L2 Classic Preorder Page Layout
/**
* L2 Classic Preorder Page Layout
*/
html, body {
height: 100%;
margin: 0;
}
.layout {
@leechy
leechy / dabblet.css
Last active August 29, 2015 14:06
Inline-block/overflow hidden vertical alignment
/**
* Inline-block/overflow hidden vertical alignment
*/
div {
width: 20%;
margin: auto;
border: 1px solid cyan;
text-align: center;
}
@leechy
leechy / dabblet.css
Created September 4, 2014 08:55
Vertical alignment
/**
* Vertical alignment
*/
html,
body {
height: 100%;
margin: 0;
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
}
@leechy
leechy / dabblet.css
Created April 24, 2014 17:11
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
html,
body {
height: 100%;
margin: 0;
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
}