Skip to content

Instantly share code, notes, and snippets.

View icqparty's full-sized avatar

Asoskov Alexander icqparty

  • Russia, city Ryazan
View GitHub Profile
kubectl taint nodes <name_hode> node-role.kubernetes.io/master-
kubectl taint nodes --all node-role.kubernetes.io/master-
@icqparty
icqparty / main.dart
Created January 28, 2020 10:26
learn
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
@icqparty
icqparty / server dist vue
Last active May 6, 2019 06:13
Серфинг фронетенда на go
func main() {
base_path := "../frontend/dist"
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
path := ""
if r.URL.Path == "/" {
path = base_path + "/index.html"
#!/bin/bash
apt-get update && apt-get install -y apt-transport-https
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
cat <<EOF >/etc/apt/sources.list.d/kubernetes.list
deb http://apt.kubernetes.io/ kubernetes-xenial main
EOF
apt-get update
apt-get install -y kubeadm
@icqparty
icqparty / page.js
Created December 4, 2017 10:29
simple page react
import React, { Component } from 'react';
class Page extends Component {
render() {
return (
<div >
page
</div>
);
}
@icqparty
icqparty / Generate Doctrine Entity.md
Last active February 28, 2016 17:42
Generate doctrine entity class in Zf2

icqparty@icqparty-K61IC ~ $ cd /vendore/bin/

  1. Create class Entities

icqparty@icqparty-K61IC ~ $ ./vendor/bin/doctrine-module orm:convert-mapping -f --from-database --namespace="Application\Entity\\" annotation \module//Application//src

  1. Create getters/setters for class Entities

icqparty@icqparty-K61IC ~ $ ./vendor/bin/doctrine-module orm:generate-entities --generate-annotations=true \module//Application//src

@icqparty
icqparty / README.md
Last active October 31, 2017 14:11 — forked from chadrien/README.md
Debug PHP in Docker with PHPStorm and Xdebug

Отладка PHP-приложение c Xdebug в Docker-контейнере через редактор Intellij/PHPStorm

  1. Создайте в локальной дирриктори вашего проекта файл сборки Dockerfile со следующим содержанием:
FROM php:5

RUN yes | pecl install xdebug \
    && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
&amp;&amp; echo "xdebug.remote_enable=on" &gt;&gt; /usr/local/etc/php/conf.d/xdebug.ini \
@icqparty
icqparty / api.md
Last active February 28, 2016 18:29
  1. Внесение Лида в СЛГ через АПИ приема Лидов

Для внесения Лида в СЛГ через АПИ приема Лидов, необходимо отправить POST-запрос на URL:

http://leadroi.ru/api/lead/add

В теле запроса должен содержаться JSON-массив параметров, сформированный по следующему шаблону:

{

"auth":{

@icqparty
icqparty / gource-visualization-git-commit
Last active August 25, 2019 13:10
Визуализация активности Git репозитория
1.Установка gource
#sudo apt-get update
#sudo apt-get install gource
2. Запуск и создане исходного файла
#gource -f --highlight-all-users --multi-sampling /home/icqparty/DRIVE/Server/work_projects/leadroi.ru/.git/ -o source.ppm
3.Конвертирование ppm в mp4
#ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i source.ppm -vcodec libx264 -preset ultrafast -pix_fmt yuv420p -crf 1 -threads 0 -bf 0 dist.mp4 && rm viz.ppm
@icqparty
icqparty / create-boot-disk-from-iso
Created August 5, 2015 15:49
Создание загрузочной флешки(диска)из под Linux
1.Создать раздел
2.посмотреть разделы
#df
3.Создание
#sudo dd if=file.iso of=/dev/sdb2