Skip to content

Instantly share code, notes, and snippets.

@leMaur
leMaur / KeyedSession.php
Created July 18, 2023 09:32 — forked from juampi92/KeyedSession.php
KeyedSession
<?php
namespace App\Support;
use Illuminate\Session\Store;
use RuntimeException;
/**
* Helper class that transforms all sessions into a specific key.
*
<?php
function memoize($target) {
static $memo = new WeakMap;
return new class ($target, $memo) {
function __construct(
protected $target,
protected &$memo,
) {}
const passwordInput = document.getElementById('password');
passwordInput.addEventListener('keyup', function (event) {
if (event.getModifierState('CapsLock')) {
// CapsLock is open
}
});
<IfModule mod_headers.c>
<IfModule mod_rewrite.c>
# Turn on the rewrite engine (this is necessary in order for
# the `RewriteRule` directives to work).
#
# https://httpd.apache.org/docs/current/mod/core.html#options
RewriteEngine On
@props(['key' => null])
@if((bool) $key)
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{ $key }}"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
@endif
<?php
namespace {{ factoryNamespace }};
use Illuminate\Database\Eloquent\Factories\Factory;
use {{ namespacedModel }};
/**
* @method {{ model }}|\Illuminate\Support\Collection<{{ model }}> create($attributes = [], ?Model $parent = null)
* @method \Illuminate\Support\Collection<{{ model }}> createMany(iterable $records)
function toggleable(id) {
return {
id: id,
show: false,
bodyNeedsOverflowHidden: false,
originalOverflow: '',
id() {
return id || `toggleable-${Math.random().toString(36).substr(2, 10)}`
},
@leMaur
leMaur / tailwind.responsive-font.js
Last active March 8, 2021 17:52
Responsive font-size for Tailwindcss
const plugin = require('tailwindcss/plugin')
module.exports = plugin(function ({ addBase, theme }) {
addBase({
':root': {
'--rf-min-fs': theme('responsive-font.min-fs'),
'--rf-max-fs': theme('responsive-font.max-fs'),
'--rf-min-vw': theme('responsive-font.min-vw'),
'--rf-max-vw': theme('responsive-font.max-vw'),
'--rf-min-fs-rem': 'var(--rf-min-fs) * 1rem',
export default class RestJson {
constructor(endpoint, options = {}) {
if (!window.fetch) {
console.error("Sorry you cannot use RestJson Class, your browser doesn't support Fetch API.");
console.error("Please try with another browser or update it to a new version.");
}
const defaultOptions = {
headers: {'Content-Type': 'application/json'}
};
@leMaur
leMaur / google-fonts.blade.php
Last active August 15, 2020 09:33
resources/views/components/google-fonts.blade.php
@props(['src'])
<!--
- 1. Preemptively warm up the fonts’ origin.
-
- 2. Initiate a high-priority, asynchronous fetch for the CSS file. Works in
- most modern browsers.
-
- 3. Initiate a low-priority, asynchronous fetch that gets applied to the page
- only after it’s arrived. Works in all browsers with JavaScript enabled.