Skip to content

Instantly share code, notes, and snippets.

View Shipu's full-sized avatar
🎯
Focusing

Shipu Ahamed Shipu

🎯
Focusing
View GitHub Profile
@Shipu
Shipu / mac-startup.sh
Last active July 12, 2018 21:17
Mac Startup
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
brew tap homebrew/services
brew install bash-completion
@Shipu
Shipu / config.sh
Created July 16, 2018 18:23 — forked from itsmelion/config.sh
Mac OSX SUPER-Configuration
#!/bin/sh
# xcode command line - Select: "Get xcode" and go get a coffee (preferably far from your desk :)
xcode-select --install
# homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# will ask to install the command line tools for macOS if the previous step was not executed
brew tap caskroom/cask
brew tap caskroom/versions
@Shipu
Shipu / .env
Created November 13, 2018 09:49
accounting env
APP_NAME=Akaunting
APP_ENV=production
APP_LOCALE=en-GB
APP_INSTALLED=true
APP_KEY=base64:wuPocbFwZTuWQoiVFTzyMU7ZNe8CTq0CY6pf3G8nIQI=
APP_DEBUG=false
APP_LOG_LEVEL=debug
APP_URL=http://akaunting.lrvl
DB_CONNECTION=mysql
@Shipu
Shipu / docker-compose.yml
Created March 30, 2019 13:11
Docker Lamp
version: "3"
services:
webserver:
build:
context: ./bin/webserver
container_name: '5.6.x-webserver'
restart: 'always'
ports:
- "8080:80"
@Shipu
Shipu / full-setup-18
Created April 21, 2019 03:26 — forked from TuserSheikh/full-setup-18
startup for ubuntu
#!/usr/bin/env bash
if [[ -z `grep "net.ipv6.conf.all.disable_ipv6 = 1" /etc/sysctl.conf` ]]; then
echo "net.ipv6.conf.all.disable_ipv6 = 1" | sudo tee -a /etc/sysctl.conf
echo "net.ipv6.conf.default.disable_ipv6 = 1" | sudo tee -a /etc/sysctl.conf
echo "net.ipv6.conf.lo.disable_ipv6 = 1" | sudo tee -a /etc/sysctl.conf
fi
sudo sysctl -p
{
"id": 56145,
"sub_total": "2671.00",
"coupon_discount": "0.00",
"delivery_charge": "50.00",
"total": "2721.00",
"status": 10,
"payment_status": 3,
"paid_amount": "2721.00",
"invoice_email": null,
@Shipu
Shipu / .env7-1
Last active October 27, 2019 06:19
Laradock Configuration
###########################################################
###################### General Setup ######################
###########################################################
### Paths #################################################
# Point to the path of your applications code on your host
APP_CODE_PATH_HOST=../7.1/
# Point to where the `APP_CODE_PATH_HOST` should be in the container
@Shipu
Shipu / string-eval.php
Created December 25, 2019 12:01
String with function
<?php
function day($value) {
return date('d', strtotime($value));
}
function equal($one, $second) {
return $one == $second;
}
@Shipu
Shipu / countries.json
Last active September 22, 2020 18:37
Countries currency details
[
{"id":1,"name":"Afghanistan","country_code":"AF","dial_code":"+93","currency_name":"Afghanafgani","currency_code":"AFN","currency_symbol":"؋","created_at":"2020-04-1017:37:33","updated_at":"2020-04-1017:37:48"},
{"id":2,"name":"AlandIslands","country_code":"AX","dial_code":"+358","currency_name":"","currency_code":"","currency_symbol":"","created_at":"2020-04-1017:37:33","updated_at":"2020-04-1017:37:48"},
{"id":3,"name":"Albania","country_code":"AL","dial_code":"+355","currency_name":"Albanianlek","currency_code":"ALL","currency_symbol":"L","created_at":"2020-04-1017:37:33","updated_at":"2020-04-1017:37:48"},
{"id":4,"name":"Algeria","country_code":"DZ","dial_code":"+213","currency_name":"Algerian dinar","currency_code":"DZD","currency_symbol":"د.ج","created_at":"2020-04-1017:37:33","updated_at":"2020-04-1017:37:48"},
{"id":5,"name":"American Samoa","country_code":"AS","dial_code":"+1684","currency_name":"","currency_code":"","currency_symbol":"","created_at":"2020-04-1017:37:33","updat