.loading {
position: relative;
transition: padding-right .3s ease-out;
background-color: #CCC;
padding-right: 40px;
}
.loading:after {
content: "";
position: absolute;
This file contains hidden or 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
// ignore_for_file: prefer_const_constructors | |
// lib/configs | |
import 'package:flutter/material.dart'; | |
final Map<String, WidgetBuilder> routes = { | |
// LayoutScreen.routeName: (context) => LayoutScreen(), | |
}; |
This file contains hidden or 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
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
This file contains hidden or 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":"serber","settings":"{\"settings\":\"{\\n \\\"editor.fontFamily\\\": \\\"'Cascadia Code'\\\",\\n \\\"editor.lineHeight\\\": 25,\\n \\\"editor.letterSpacing\\\": 0.5,\\n \\\"files.trimTrailingWhitespace\\\": true,\\n \\\"editor.fontWeight\\\": \\\"normal\\\",\\n \\\"prettier.eslintIntegration\\\": true,\\n \\\"editor.fontLigatures\\\": true,\\n \\\"editor.cursorStyle\\\": \\\"line\\\",\\n \\\"editor.cursorWidth\\\": 5,\\n \\\"editor.cursorBlinking\\\": \\\"solid\\\",\\n \\\"editor.renderWhitespace\\\": \\\"all\\\",\\n \\\"liveshare.audio.startCallOnShare\\\": true,\\n \\\"[python]\\\": {\\n \\\"editor.formatOnType\\\": true\\n },\\n \\\"workbench.colorTheme\\\": \\\"GitHub Light\\\",\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"editor.fontSize\\\": 16,\\n \\\"workbench.startupEditor\\\": \\\"none\\\",\\n \\\"javascript.updateImportsOnFileMove.enabled\\\": \\\"always\\\",\\n \\\"security.workspace.trust.untrustedFi |
This file contains hidden or 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>download</groupId> | |
<artifactId>download</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<properties> | |
<spring-osgi-version>1.2.1</spring-osgi-version> | |
<spring-version>3.1.0.RELEASE</spring-version> |
This file contains hidden or 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
https://jason.pureconcepts.net/2015/10/install-apache-php-mysql-mac-os-x-el-capitan/ | |
https://jason.pureconcepts.net/2012/10/install-apache-php-mysql-mac-os-x/ | |
https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-osx-10-11-el-capitan/ | |
http://www.alphansotech.com/blogs/setup-apache-mysql-php-phpmyadmin-mac-osx/ | |
https://mallinson.ca/osx-web-development/ | |
https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-osx-10-11-el-capitan/ | |
##Apache httpd file location | |
/etc/apache2 |
This file contains hidden or 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
# author -> geeksceo | |
def ipv6_verificator(str): | |
if (':' not in str) or (':'*3 in str) or (len(str.split(':')) < 8 and str.count('::') != 1) : | |
return "That's not IPv6 address !" | |
for i in str.split(':'): | |
if i != '': | |
try: | |
int(i, 16) |