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
package main | |
import "fmt" | |
func main() { | |
fmt.Println("Hello, World!") | |
} |
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
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "WebSite", | |
"url": "https://roelofjanelsinga.com/", | |
"potentialAction": { | |
"@type": "SearchAction", | |
"target": "https://roelofjanelsinga.com/articles?q={search_term_string}", | |
"query-input": "required name=search_term_string" | |
} |
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
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "Organization", | |
"url": "https://www.roelofjanelsinga.com", | |
"logo": "https://www.roelofjanelsinga.com/images/logo/logo_avatar.jpg" | |
"name": "Roelof Jan Elsinga" | |
} | |
</script> |
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
<script type="application/ld+json"> | |
{ | |
"@context": "https:\/\/schema.org", | |
"@type": "FAQPage", | |
"mainEntity": [ | |
{ | |
"@type": "Question", | |
"name": "How often do I water the Calathea Ornata?", | |
"acceptedAnswer": { | |
"@type": "Answer", |
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
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "BreadcrumbList", | |
"itemListElement": [{ | |
"@type": "ListItem", | |
"position": 1, | |
"name": "Plant care for Beginners", | |
"item": "https://plantcareforbeginners.com" | |
}, |
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
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "NewsArticle", | |
"mainEntityOfPage": { | |
"@type": "WebPage", | |
"@id": "https://google.com/article" | |
}, | |
"dateModified": "2020-04-23T11:23:52+02:00", | |
"datePublished": "2020-04-22T09:33:32+02:00", |
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
version: 2 | |
jobs: | |
Test-PHP: | |
machine: | |
image: ubuntu-1604:201903-01 | |
working_directory: ~/my-project | |
steps: | |
- checkout | |
- restore_cache: | |
keys: |
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
FROM debian:9.7-slim | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends apt-transport-https lsb-release \ | |
ca-certificates wget build-essential \ | |
&& wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \ | |
&& sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' \ | |
&& apt-get update \ |
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
version: "2.3" | |
services: | |
mysql: | |
image: mysql:5.7 | |
tmpfs: /var/lib/mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: root_password | |
MYSQL_DATABASE: testing_database | |
MYSQL_USER: testing_user |
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
{ | |
"require": { | |
"ageras/laravel-onesky": "dev-master#77e2de4a78bf2172df4129045c40350582aeabdb" | |
}, | |
"repositories":[ | |
{ | |
"type": "vcs", | |
"url": "https://github.com/roelofjan-elsinga/laravel-onesky" | |
} | |
] |