Main URL: fip.fr
Wikipedia: en.wikipedia.org/wiki/FIP_(radio_station)
Mobile apps: Android / iOS
Direct streams for your listening pleasure
Main URL: fip.fr
Wikipedia: en.wikipedia.org/wiki/FIP_(radio_station)
Mobile apps: Android / iOS
Direct streams for your listening pleasure
#EXTM3U | |
#EXTINF:0,Radio France - FIP | |
https://stream.radiofrance.fr/fip/fip_hifi.m3u8 | |
#EXTINF:0,Radio France - FIP Reggae | |
https://stream.radiofrance.fr/fipreggae/fipreggae_hifi.m3u8 | |
#EXTINF:0,Radio France - FIP World | |
https://stream.radiofrance.fr/fipworld/fipworld_hifi.m3u8 | |
#EXTINF:0,Radio France - FIP Nouveautés | |
https://stream.radiofrance.fr/fipnouveautes/fipnouveautes_hifi.m3u8 | |
#EXTINF:0,Radio France - FIP Electro |
<?php | |
/** | |
* Plugin Name: WordPress Export to JSON | |
* Plugin URI: https://jsnelders.com/ | |
* Description: Export all WordPress posts, pages, comments, tags, commments and users to a JSON file. | |
* Author: Jason Snelders | |
* Author URI: http://jsnelders.com | |
* Version: 2020-01-30.1 | |
**/ |
#!/bin/bash | |
set -e; | |
# Set up a single-node Kubernetes system on Debian 10 (Buster). | |
# Use Flannel as the network fabric. Install the Kubernetes | |
# dashboard. | |
# disable swap | |
swapoff -a; |
http { | |
... | |
# redirect map in http block - remove fbclid argument from the end | |
map $request_uri $redirect_fbclid { | |
"~^(.*?)([?&]fbclid=[a-zA-Z0-9_-]+)$" $1; | |
} | |
... |
function pjl_skh_feed($qv) { | |
if (isset($qv['feed']) && !isset($qv['post_type'])) | |
$qv['post_type'] = array('post', 'cpt_nr1', 'cpt_nr2'); | |
return $qv; | |
} | |
add_filter('request', 'pjl_skh_feed'); |
0815.ru | |
0815.ru0clickemail.com | |
0815.ry | |
0815.su | |
0845.ru | |
0clickemail.com | |
0-mail.com | |
0wnd.net | |
0wnd.org | |
10mail.com |
Reference: Sequelize docs on association
Let’s say we have two models: Films
and Festivals
We know that a film can be shown at many film festivals and that, conversely, a festival can show many films. This is what is known as a many-to-many relationship.
Knowing this, we can set up our associations:
#EXTM3U | |
#EXTINF:0,France Culture - direct | |
http://direct.franceculture.fr/live/franceculture-midfi.mp3 | |
#EXTINF:0,France Inter | |
http://icecast.radiofrance.fr/franceinter-hifi.aac?id=radiofrance | |
#EXTINF:0,France Musique | |
http://direct.francemusique.fr/live/francemusique-midfi.mp3 | |
#EXTINF:0,France Info | |
https://stream.radiofrance.fr/franceinfo/franceinfo_hifi.m3u8 | |
#EXTINF:0,France Culture - alternative link |
Pattern below allows for a bash script to be called via, say, cron and check to see if it is already running.
Useful for things like rsync
tasks.
PIDFILE=/var/run/myscriptname.pid
if [ -f $PIDFILE ]
then
PID=$(cat $PIDFILE)