Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<?php | |
declare(strict_types=1); | |
namespace App; | |
struct User { | |
string $identifier; | |
} |
[ | |
{ | |
"name": "Sąd Apelacyjny w Białymstoku", | |
"zrskId": 2010, | |
"departments": [ | |
{ | |
"name": "I Wydział Cywilny", | |
"zrskId": 50067267, | |
"number": "I", | |
"repertories": [ |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Net.Http; | |
using System.Net.Http.Json; | |
using System.Text.Encodings.Web; | |
using System.Text.Json; | |
using System.Text.Json.Serialization; | |
using System.Text.Unicode; |
<? | |
// | |
// AUTO KEYWORD-BASED FOLLOWER CURATION BOT (by @levelsio) | |
// | |
// File: twitterFollowerCuratorBot.php | |
// | |
// Created: May 2021 | |
// License: MIT | |
// |
:root { | |
--violation-color: red; /* used for clear issues */ | |
--warning-color: orange; /* used for potential issues we should look into */ | |
} | |
/* IMAGES */ | |
/* | |
* Lazy-Loaded Images Check | |
* ==== |
<?php | |
namespace App\Controller; | |
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\Routing\Annotation\Route; | |
class HomepageController extends AbstractController | |
{ |
stages: | |
- build | |
- deploy | |
before_script: | |
- | | |
# docker variables for name and tag of new image | |
export DOCKER_TAG="${CI_COMMIT_SHA:0:8}" | |
export DOCKER_REPO="$CI_REGISTRY_IMAGE" | |
export DOCKER_IMAGE="${DOCKER_REPO}:${DOCKER_TAG}" |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
#!/bin/sh | |
IFACE=$1 | |
ACTION=$2 | |
ntfy () { | |
sudo -u cengiz \ | |
DISPLAY=:0 \ | |
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus \ | |
notify-send "$1" "$2" |
# Let 'em know that we're Still Alive | |
# http://pastebin.com/f72f8f72d (no longer valid) | |
#!/bin/bash | |
echo -n "This " | |
beep -f 784 -l 200 | |
echo -n "was " | |
beep -f 740 -l 200 | |
echo -n "a " | |
beep -f 659 -l 200 |