This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: "SSL Self-Sign: Generate RSA Key" | |
openssl_privatekey: path="/etc/nginx/ssl/{{ ssl_certificate_key }}" size=4096 | |
become: yes | |
become_user: root | |
notify: reload-nginx | |
tags: ssl | |
- name: "SSL Self-Sign: Generate Certificate Signing Request" | |
openssl_csr: | |
path: "/etc/nginx/ssl/ssl.csr" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> OpenStreenMap </title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet.css"> | |
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script> | |
<script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet.js'></script> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="country"> | |
<option value="" disabled selected>إختر</option> | |
<option value="أفغانستان">أفغانستان</option> | |
<option value="ألبانيا">ألبانيا</option> | |
<option value="الجزائر">الجزائر</option> | |
<option value="أندورا">أندورا</option> | |
<option value="أنغولا">أنغولا</option> | |
<option value="أنتيغوا وباربودا">أنتيغوا وباربودا</option> | |
<option value="الأرجنتين">الأرجنتين</option> | |
<option value="أرمينيا">أرمينيا</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Person { | |
/* Attributes */ | |
protected String name; | |
protected String email; | |
protected int age; | |
protected String adress; | |
protected String job; | |
protected boolean married; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Illuminate\Html; | |
use Illuminate\Routing\UrlGenerator; | |
use Illuminate\Session\Store as Session; | |
use Illuminate\Support\Traits\MacroableTrait; | |
class FormBuilder { | |
use MacroableTrait; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This is a simple Gulp SASS Watcher task, that support themes... yeah! | |
* Usage: gulp watch:scss --theme dark-theme OR gulp watch:scss -t my-flat-theme ('base' is the default theme name) | |
* But dark-theme config (assets source dir which is a glob string, and destination dir) must be set in the config variable | |
* It's basically just a simple way, to make changing assets directories more dynamic! | |
* Just change the theme's config variables, and update the theme name within the command, and you're all set! | |
* Very Important Note! : | |
* ** What to do with the theme's source assets (scss files and such) is totally up to you... just lettin' you know. | |
*/ |