Skip to content

Instantly share code, notes, and snippets.

View mohammad76's full-sized avatar
🏠
Working from home

Mohammad Abdi mohammad76

🏠
Working from home
View GitHub Profile
@mohammad76
mohammad76 / install-kuber.sh
Last active October 30, 2023 11:41
install kubernetes 1.25.9
#!/bin/bash
host_ip=$(hostname -i)
# Color
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
NC='\033[0m' # No Color
echo -e "${GREEN}disable systemd resolved ...${NC}"
@mohammad76
mohammad76 / install.sh
Last active October 3, 2023 17:27
install keystone
apt-add-repository cloud-archive:zed
apt update && apt upgrade
apt install apache2 python3-openstackclient libapache2-mod-wsgi-py3 memcached python3-pymysql
apt install keystone
# sudo -u keystone keystone-manage db_sync
# keystone-manage fernet_setup --keystone-user keystone --keystone-group keystone
This file has been truncated, but you can view the full file.
0-00.usa.cc
0-180.com
0-30-24.com
0-420.com
0-900.com
0-aa.com
0-attorney.com
0-mail.com
0-z.xyz
0.cl
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<style>
#map_agency .map_agency .province .agency_pno {
@mohammad76
mohammad76 / ApiCrudController.php
Last active January 13, 2020 21:01
Simple Laravel/Lumen Api CRUD Controller
<?php
namespace App\Http\Controllers;
use App\User;
use Illuminate\Http\Request;
class ApiCrudController extends Controller
{
@mohammad76
mohammad76 / CrudController.php
Last active January 13, 2020 20:52
Simple Laravel/Lumen CRUD Controller
<?php
namespace App\Http\Controllers;
use App\User;
use Illuminate\Http\Request;
class CrudController extends Controller
{
private $redirectRoute = 'users';