Skip to content

Instantly share code, notes, and snippets.

View Loosie94's full-sized avatar
👋

René Loosie94

👋
View GitHub Profile
@Loosie94
Loosie94 / index.html
Created June 29, 2023 13:25
Alpine.js isMobile function
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alpine.js isMobile function</title>
</head>
<body x-data="globalData()">
<script>
function globalData() {
return {
@Loosie94
Loosie94 / docker-compose.yml
Created December 4, 2019 22:29
Demo for WordPress docker image with custom domains
version: '3.3'
services:
db:
image: mysql:5.7
restart: unless-stopped
volumes:
- db_data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: p4ssw0rd!
networks: