In this document i'll gather thoughts, use cases, design ideas about refactoring (and hardly simplifying) the VLC playlist code, as well as adding a new separate subsystem for handling media discovery, browsing and searching features.
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
$> python -V | |
Python 3.10.14 | |
$> lsb_release -a | |
No LSB modules are available. | |
Distributor ID: Ubuntu | |
Description: Ubuntu 22.04.5 LTS | |
Release: 22.04 | |
Codename: jammy |
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
#!/bin/bash | |
# Place this file in /lib/systemd/system-sleep/screen | |
# It's a hack needed when resuming from a suspend triggered by the lid close. | |
# When you re-open the lib, the system resumes but the screen stays black and | |
# is reported as disconnected. This fixes it | |
case $1 in | |
post) | |
if [ -f /sys/class/drm/card0-eDP-1/status ]; then | |
# echo off > /sys/class/drm/card0-eDP-1/status |
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
/*! | |
* jQuery JavaScript Library v1.12.4 | |
* http://jquery.com/ | |
* | |
* Includes Sizzle.js | |
* http://sizzlejs.com/ | |
* | |
* Copyright jQuery Foundation and other contributors | |
* Released under the MIT license | |
* http://jquery.org/license |
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
{ | |
"next": null, | |
"data": [ | |
{ | |
"created_at": 1574165197, | |
"config": { | |
"minute": null, | |
"policy": "local", | |
"month": null, | |
"redis_timeout": 2000, |
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
#! /usr/bin/env ruby | |
# frozen_string_literal: true | |
require 'ruby-jmeter' | |
def api(path) | |
'http://api.dev.foodle.fr/api/v1' + path | |
end | |
CAT = %w(express vegetables exotics classics basic_meals).freeze |