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
APP_ENV=local | |
APP_DEBUG=true | |
APP_KEY=base64:hyHUpukUUigKeEsxpGeTW4UZ+Lg+WAWxcc4/BjlgNtE= | |
APP_URL=http://localhost | |
DB_CONNECTION=pgsql | |
DB_HOST=hostname | |
DB_PORT=5432 | |
DB_DATABASE=Your database name | |
DB_USERNAME=Your database username |
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
APP_ENV=local | |
APP_DEBUG=true | |
APP_KEY=base64:SLcf0aj5F8rt/mEcalo0dQzp31z6/aGvz0AawIkwvs4= | |
DB_CONNECTION=sqlite |
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
import 'package:flutter/material.dart'; | |
import 'dart:async'; | |
import 'package:http/http.dart' as http; | |
import 'dart:convert'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { |
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
.column { | |
color: black; | |
text-shadow: 0 0 2px rgba(0,0,0,.3); | |
font-family: sans-serif; | |
box-shadow: | |
inset 0 0 2px 0 rgba(255,255,255,.4), | |
inset 0 0 3px 0 rgba(0,0,0,.4), | |
inset 0 0 3px 5px rgba(0,0,0,.05), | |
2px 2px 4px 0 rgba(0,0,0,.25); |
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
{ | |
AF: 'Afghanistan', | |
AL: 'Albania', | |
DZ: 'Algeria', | |
AS: 'American Samoa', | |
AD: 'Andorra', | |
AO: 'Angola', | |
AI: 'Anguilla', | |
AQ: 'Antarctica', | |
AG: 'Antigua and Barbuda', |
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
var bm = editor.BlockManager; | |
var blocks = bm.getAll(); | |
bm.render(blocks.filter( | |
block => { | |
let blockName = block.attributes.label; | |
return blockName.toLowerCase().includes(text); | |
})); |
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
jQuery(document).ready(function() { | |
if (/Android|webOS|iPhone|iPad|Mac|Macintosh|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) { | |
function setActive() { | |
setTimeout(function() { | |
var hash = window.location.hash.substr(1); | |
if (hash) { |
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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
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
version: "3.3" | |
services: | |
db: | |
container_name: 'wordpress-database' | |
image: 'mysql:5.7' | |
volumes: | |
- './database/mysql:/var/lib/mysql' | |
ports: | |
- 18766:3306 | |
environment: |
OlderNewer