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 (AAC+Metadata) | |
| http://radio-metadata.fr:8000/fip.m3u | |
| #EXTINF:0,Radio France - FIP Reggae (AAC+Metadata) | |
| http://radio-metadata.fr:8000/fipreggae.m3u | |
| #EXTINF:0,Radio France - FIP World (AAC+Metadata) | |
| http://radio-metadata.fr:8000/fipmonde.m3u | |
| #EXTINF:0,Radio France - FIP Nouveautés (AAC+Metadata) | |
| http://radio-metadata.fr:8000/fipnouveaute.m3u | |
| #EXTINF:0,Radio France - FIP Electro (AAC+Metadata) |
| # original: https://askubuntu.com/questions/25071/how-to-run-a-script-when-a-specific-flash-drive-is-mounted | |
| # you can find your device unit with: sudo systemctl list-units -t mount | |
| # put this into /etc/systemd/system/your.service | |
| [Unit] | |
| Description=SharedMountTrigger | |
| Requires=mnt-shared.mount | |
| After=mnt-shared.mount | |
| [Service] |
| #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 |
| # Serrano, Boguna, Vespigani backbone extractor | |
| # from http://www.pnas.org/content/106/16/6483.abstract | |
| # Thanks to Michael Conover and Qian Zhang at Indiana with help on earlier versions | |
| # Thanks to Clay Davis for pointing out an error | |
| import networkx as nx | |
| import numpy as np | |
| def extract_backbone(g, weight='weight', alpha=.05): | |
| backbone_graph = nx.Graph() |
| #!/usr/bin/env python | |
| """strip outputs from an IPython Notebook | |
| Opens a notebook, strips its output, and writes the outputless version to the original file. | |
| Useful mainly as a git filter or pre-commit hook for users who don't want to track output in VCS. | |
| This does mostly the same thing as the `Clear All Output` command in the notebook UI. | |
| LICENSE: Public Domain |
rsync (Everyone seems to like -z, but it is much slower for me)
The goal of this example is to show how an existing C codebase for numerical computing (here c_code.c) can be wrapped in Cython to be exposed in Python.
The meat of the example is that the data is allocated in C, but exposed in Python without a copy using the PyArray_SimpleNewFromData numpy
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |