I hereby claim:
- I am morontt on github.
- I am morontt (https://keybase.io/morontt) on keybase.
- I have a public key whose fingerprint is AC0F 0FF4 8A74 B8BB A4F9 62E8 0C0C AD0E BCE7 9440
To claim this, I am signing this object:
FROM node:6-wheezy | |
RUN npm install -g gulp-cli && npm install -g @angular/cli | |
RUN mkdir /ng-app | |
VOLUME ["/ng-app"] | |
WORKDIR "/ng-app" | |
EXPOSE 4200 |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import ConfigParser | |
from Crypto.Hash import SHA | |
from Crypto.PublicKey import RSA | |
from Crypto.Signature import PKCS1_v1_5 | |
from base64 import b64encode | |
config = ConfigParser.ConfigParser() |
<?php | |
ini_set( 'display_errors', 1 ); | |
error_reporting( E_ALL ); | |
$from = "[email protected]"; | |
$to = "[email protected]"; | |
$subject = "PHP Mail Test script"; | |
$message = "This is a test to check the PHP Mail functionality"; | |
$headers = "From:" . $from; |
I hereby claim:
To claim this, I am signing this object:
<?php | |
namespace SheimarkBundle\Entity\Repository; | |
use Doctrine\ORM\EntityRepository; | |
use Symfony\Component\DependencyInjection\ContainerInterface; | |
class SalesTaxCodeRepository extends EntityRepository | |
{ | |
/** |
<?php | |
$test = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the | |
industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and | |
scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into | |
electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of | |
Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus | |
PageMaker including versions of Lorem Ipsum."; | |
echo 'MD5: ' . md5($test) . PHP_EOL; |
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
/* | |
* Три фермера продавали куриц на местном рынке. У одного было 10 куриц, у | |
* второго - 16, у третьего - 26. Чтобы не конкурировать между собой, они | |
* договорились продавать куриц по одной цене. К обеду они решили, что продажи | |
* идут не так уж хорошо, поэтому они все одинаково понизили цену. К концу дня | |
* они продали всех куриц. Оказалось, что каждый из фермеров за этот день | |
* выручил 35 долларов. Какова была цена за курицу до обеда и после обеда? | |
* | |
* gcc -Wall chicken.c -o chicken -lm | |
*/ |