We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 2 in line 1.
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
Groupe;Radio;Fréquence;Département (numéro);Département (nom);Emetteur | |
666;666;99,1;14;Calvados;CAEN - HEROUVILLE-SAINT-CLAIR | |
100 %;100 %;98,5;11;Aude;LIMOUX | |
100 %;100 %;100,4;11;Aude;QUILLAN | |
100 %;100 %;101,4;34;Hérault;SAINT-PONS-DE-THOMIERES - RIOLS | |
100 %;100 POURCENT;91,6;09;Ariège;FOIX - PRAYOLS | |
100 %;100 POURCENT;98;11;Aude;CARCASSONNE - PALAJA | |
100 %;100 POURCENT;98,5;11;Aude;CASTELNAUDARY - VILLENEUVE-LA-COMPTAL | |
100 %;100 POURCENT;97;31;Haute-Garonne;SAINT-GAUDENS | |
100 %;100 POURCENT;106,9;32;Gers;AUCH |
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 php | |
<?php | |
// URL => https://www.githubarchive.org/ | |
// wget http://data.githubarchive.org/2015-01-{01..30}-{0..23}.json.gz | |
$dayMonth = [ | |
1 => 31, | |
2 => 30, | |
3 => 31, |
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
default: | |
extensions: | |
Behat\MinkExtension: | |
base_url: http://localhost:8000 | |
default_session: selenium2 | |
selenium2: | |
browser: chrome | |
wd_host: http://127.0.0.1:4444/wd/hub | |
capabilities: | |
chrome: |
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
<?xml version="1.0" encoding="utf-8"?> | |
<opml version="1.0"> | |
<head> | |
<dateCreated>Sun, 10 Sep 2017 11:23:55 +0200</dateCreated> | |
<title>Tiny Tiny RSS Feed Export</title> | |
</head> | |
<body> | |
<outline text="Actualité"> | |
<outline type="rss" text="Devmag" xmlUrl="http://devmag.fr/feed/" htmlUrl="http://devmag.fr"/> | |
<outline type="rss" text="RSS | Usbek & Rica" xmlUrl="https://usbeketrica.com/rss" htmlUrl="http://usbeketrica.com/"/> |
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
<?php | |
$docker = new Docker(); | |
$containerManager = $docker->getContainerManager(); | |
$containerConfig = new ContainerConfig(); | |
$containerConfig->setImage('sitespeedio/sitespeed.io'); | |
$containerConfig->setCmd(['https://www.website.com', '-b', 'firefox', '--speedIndex', '--video']); | |
$hostConfig = new HostConfig(); |
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 | |
set -e | |
TOKEN=$(curl -s -X POST \ | |
-H "Content-Type: application/json" \ | |
-d '{"username": "'"$DOCKER_USERNAME"'", "password": "'"$DOCKER_PASSWORD"'"}' \ | |
https://hub.docker.com/v2/users/login/ | jq -r .token) | |
CODE=$(jq -n --arg msg "$(<README.md)" \ |
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
// ==UserScript== | |
// @name miniflux filter categories | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://reader.miniflux.app/categories | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=miniflux.app | |
// @grant none | |
// ==/UserScript== |
OlderNewer