Skip to content

Instantly share code, notes, and snippets.

View dariubs's full-sized avatar
🐕
I love Scorched rice

Dariush Abbasi dariubs

🐕
I love Scorched rice
View GitHub Profile
@dariubs
dariubs / answer-1.r
Last active September 17, 2021 05:56
# Load dataset
load("HW1_data.rData")
View(BTC.charts)
# normalize date
BTC.charts$date <- as.Date(BTC.charts$date, format= "%Y-%m-%d")
DASH.charts$date <- as.Date(DASH.charts$date, format= "%Y-%m-%d")
ETH.charts$date <- as.Date(ETH.charts$date, format= "%Y-%m-%d")
LTC.charts$date <- as.Date(LTC.charts$date, format= "%Y-%m-%d")
@dariubs
dariubs / rabbitmq.md
Created February 9, 2021 15:46
RabbitMQ

RabbitMQ by example

Install with docker

docker run -d --name  myrabbit --hostname rabbit --restart always -p 15672:15672 rabbitmq:3-management
@dariubs
dariubs / mysql.md
Last active January 4, 2020 12:23
MySQL

create user

CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';

grant privilages to user

GRANT ALL PRIVILEGES ON *.* TO 'user'@'localhost';
media="none" onload="if(media!='all')media='all'"
@dariubs
dariubs / BookatreatLandingPorposal.md
Last active October 2, 2018 18:02 — forked from mohsenk/BookatreatLandingPorposal.md
change enum to array of items

Landing Page Porposal

Features

  • Ability to select diffrent templates
  • Ability to fill and change template variables ( like images and texts)
  • Ability to enable or disable any section or part of template
  • We can define templates that use handlebars syntax and save it to db or file system
  • Every template contains a config.json file and contains template configuration
  • A Template is consis of components and every component has props
@dariubs
dariubs / laravel-nginx-ubuntu-18.04.md
Last active May 22, 2019 14:00
Install and use laravel with ubuntu 18.04 step by step

Install and use laravel with nginx in ubuntu 18.04

Install PHP

You need to install PHP 7.1.3 or greater FPM version.

sudo apt install php7.2-fpm php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-gd php7.2-xml php7.2-cli php7.2-zip

Install nginx

@dariubs
dariubs / influxdb.md
Last active December 10, 2020 08:31
influxdb cheatsheet
@dariubs
dariubs / postgres.md
Created June 9, 2017 09:35
Postgres cheatsheet

List all tables of db:

\dt
@dariubs
dariubs / hello.rb
Created October 16, 2016 11:04
Hello sinatra
require 'sinatra'
get '/' do
"سلام دنیا"
end
get '/noobi' do
"سلام نوبی"
end
@dariubs
dariubs / ibot-first.rb
Created October 15, 2016 23:41
ibot gem simple example
require 'ibot'
bot = IBot.new('mybot')
bot.add_group 'greeting'
bot.add_group 'goodby'
bot.add_pattern 'greeting', /hi/i
bot.add_pattern 'greeting', /hello/i