. |
Any character, except newline |
---|---|
\c |
Control Character |
\w |
Word |
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
package com.saber.customstickyheader; | |
import android.graphics.Color; | |
import android.support.annotation.NonNull; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.TextView; |
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 | |
function startsWith ($string, $startString) | |
{ | |
$len = strlen($startString); | |
return (substr($string, 0, $len) === $startString); | |
} | |
$url="https://www.youtube.com/"; |
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
#!/bin/bash | |
# This will install everything required to run a basic Postal installation. | |
# This should be run on a clean Ubuntu 16.04 server. | |
# | |
# Once the installation has completed you will be able to access the Postal web | |
# interface on port 443. It will have a self-signed certificate. | |
# | |
# * Change the MySQL & RabbitMQ passwords | |
# * Create your first admin user with 'postal make-user' |
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
x-logging: &x-logging | |
logging: | |
driver: 'json-file' | |
options: | |
max-file: '5' | |
max-size: '10m' | |
services: | |
appwrite: | |
image: appwrite/appwrite:1.6.0 |