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" ?> | |
| <rss version="2.0"> | |
| <channel> | |
| <title>NRJ Web Radio List</title> | |
| <link>http://www.nrj.fr</link> | |
| <item> | |
| <title>NRJ</title> | |
| <enclosure url="http://mp3.live.tv-radio.com/nrj/all/nrj_113225.mp3" type="audio/mpeg" /> | |
| <image>http://media.nrj.fr/webradio_logo/120x120/2011/02/nrj_player58384.png</image> | |
| <guid>http://play.nrj.fr/nrj/nrj.html</guid> |
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
| //Creation de la fenetre | |
| var $window = $.w.window.main({ | |
| title: 'Test', | |
| resizable: false, | |
| icon: 'status/error' | |
| }); | |
| //Definition de son contenu | |
| var $windowContent = $window.window('content'); | |
| $windowContent.html('<p>Hello World !</p>'); |
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
| { | |
| "name": "Seenthis", | |
| "description": "Du short-blogging sans limite de caractères. De la recommandation de liens. Des automatismes pour rédiger facilement vos messages. Des forums sous chaque billet. De la veille d’actualité. Une thématisation avancée.", | |
| "launch_path": "/", | |
| "icons": { | |
| "128": "/img/icon-128.png" | |
| }, | |
| "developer": { | |
| "name": "Seenthis", | |
| "url": "http://seenthis.net" |
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
| # Gitlab install instructions: https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md | |
| # Cross-compiling on Rpi: https://raspberrypi.stackexchange.com/questions/1/how-do-i-build-a-gcc-4-7-toolchain-for-cross-compiling | |
| apt-get update -y | |
| apt-get upgrade -y | |
| apt-get install -y sudo | |
| apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate | |
| apt-get install -y git-core |
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 | |
| git log --format='%aN <%aE>' | awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' | sort -rn | cut -d\ -f2- |
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
| # Maintainer: Shanto <[email protected]> | |
| # Contributor: Athurg <[email protected]> | |
| # Contributor: TDY <[email protected]> | |
| pkgname=shutter | |
| pkgver=0.91 | |
| pkgrel=1 | |
| pkgdesc="A featureful screenshot tool (formerly gscrot)" | |
| arch=('i686' 'x86_64') | |
| url="http://shutter-project.org/" |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>iOS-style geolocation animated marker in CSS3</title> | |
| <style> | |
| @-webkit-keyframes map-blip { | |
| 0% { | |
| opacity: 0.35; | |
| -webkit-transform: scale(0.3); |
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"?> | |
| <!DOCTYPE TS> | |
| <TS version="2.1"> | |
| <context> | |
| <name>main</name> | |
| <message> | |
| <location filename="../main.qml" line="25"/> | |
| <source>&File</source> | |
| <translation type="unfinished"></translation> | |
| </message> |
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
| var ytdl = require('ytdl-core'); | |
| var fs = require('fs'); | |
| var ffmpeg = require('fluent-ffmpeg'); | |
| var lame = require('lame'); | |
| var Speaker = require('speaker'); | |
| var dl = ytdl('http://www.youtube.com/watch?v=A02s8omM_hI', { | |
| filter: function(format) { return format.container === 'mp4'; } | |
| }); | |
| var converter = ffmpeg(dl).format('mp3').pipe(new lame.Decoder()) |
OlderNewer