404 error page in pure css3. character inspired from Arturo MB's Cry Baby ( dribbble )
A Pen by Vineeth.TR on CodePen.
404 error page in pure css3. character inspired from Arturo MB's Cry Baby ( dribbble )
A Pen by Vineeth.TR on CodePen.
| <?php | |
| function passgen2($nbChar){ | |
| return substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ0123456789'),1, $nbChar); } | |
| echo passgen2(9); | |
| // Affiche un password comme : M9ytp5Pbcn | |
| ?> |
| <?php | |
| function passgen2($nbChar){ | |
| return substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ0123456789'),1, $nbChar); | |
| } | |
| function generate_code_ticket($ticket_number=1){ | |
| $ticket_disponible = array(); | |
| while($ticket_number > 0){ | |
| $ticket_code = passgen2(9); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="[add your bin description]"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="[add your bin description]"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> |
| <div id="google_translate_element"></div> | |
| <script type="text/javascript"> | |
| function googleTranslateElementInit() { | |
| new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element'); | |
| } | |
| </script> | |
| <script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>My Select2 Example</title> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css" rel="stylesheet"/> | |
| <script src="https://code.jquery.com/jquery-2.2.4.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script> | |
| </head> |
| #include <iostream> | |
| using namespace std; | |
| class Rectangle { | |
| private: | |
| double longueur; | |
| double largeur; | |
| double perimetre; |
| <?php | |
| /** | |
| * Plugin Name: Filter WooCommerce Orders by Payment Method | |
| * Plugin URI: http://skyverge.com/ | |
| * Description: Filters WooCommerce orders by the payment method used :) | |
| * Author: SkyVerge | |
| * Author URI: http://www.skyverge.com/ | |
| * Version: 1.0.0 | |
| * Text Domain: wc-filter-orders-by-payment | |
| * |
| <html> | |
| <head> | |
| <title>HERE & Leaflet</title> | |
| <link rel="stylesheet" href="https://unpkg.com/leaflet@1.4.0/dist/leaflet.css" /> | |
| <script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js"></script> | |
| <style> | |
| body, html { border: 0; padding: 0; margin: 0; } | |
| #map { width: 100vw; height: 100vh; } | |
| </style> | |
| </head> |