Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

 
  • #n
  • #no
  • #node
RSS: #nodejs

#nodejs

  • #nodejs-
  • #nodejs_scalability_faulttolerance_clevermarks
  • #nodejs_architecture_applicationserver_javascript_server_clevermarks
0 | 25 | 50 | 75 | 100
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 27/04/2018

    Start to Finish: Deploying a #react App on DigitalOcean
    ▻https://hackernoon.com/start-to-finish-deploying-a-react-app-on-digitalocean-bcfae9e6d01b?sourc

    https://cdn-images-1.medium.com/max/353/1*qcdP4bKoFZf-mM8vmF6T7Q.png

    While deploying an app recently, I experienced many frustrations with the various nuances that accompany deployment, most of which were made even more difficult by the lack of centralized information about it online. Of course, this is a result of the many ways that deployment can be done (meaning that this guide is only one way to do things).This guide is designed to be a start to finish guide for someone creating a React single page application using DigitalOcean, with every important detail. We’ll serve it with #nginx as a reverse proxy (and explain why you want to do this), PM2 as a process manager, and Serve to actually handle the serving of the app. Most of the concepts here with regards to setting up your DigitalOcean server are transferrable to the #aws EC2 platform once you have (...)

    #nodejs #javascript

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 15/04/2018

    Read #arduino Serial Monitor Using #nodejs
    ▻https://hackernoon.com/arduino-serial-data-796c4f7d27ce?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/1024/1*_rCAOtdJqRoqKVXUDtS5dQ.jpeg

    This is a short tutorial article on how to read the serial port values from arduino to in NodeJS.MotivationSo, there was a project I was working on where I had to fetch the data from serial monitor in my node console and then using web sockets display the data in a web based application. But, I was having a hard time figuring out how to fetch the data, I explored and found serialport npm module, but the output it gave was in form of buffer, not the exact word I wanted. After spending some time, I was able to figure out how to do it. Hence, I am sharing this so that it can help anyone who is trying to do the same.How does arduino and other peripherals communicate with Laptop?In most of the cases, the answer is “Serial Communication”. With serial communication, the data can be sent bit by (...)

    #hardware #javascript #programming

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 9/04/2018

    Using #redis with Node JS
    ▻https://hackernoon.com/using-redis-with-node-js-8d87a48c5dd7?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/604/0*ia_gKRqbfM5xyYDJ.jpg

    What is RedisRedis is an in-memory data structure store which can be used as a #database, a cache and a message broker. Redis supports different data structures such as strings, lists, sets, hashes, bitmaps and etc. . Simply Redis uses you RAM to store data which is very fast, however if you reboot your server the values are gone, unless you enable Redis persistence. Good news by default Redis enables persistence mechanism for you (you can disable or configure persistence according to your needs.)Install Redis (Linux)Refer: ▻https://redis.io/downloadDownload, extract and compile Redis with:$ wget ▻http://download.redis.io/releases/redis-4.0.9.tar.gz$ tar xzf redis-4.0.9.tar.gz$ cd redis-4.0.9$ makeThe binaries that are now compiled are available in the src directory. Run Redis with:$ (...)

    #nodejs #redis-with-node-js #javascript

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 5/04/2018

    Need SuperFast High performance Database #graphql Node.js Service ?
    ▻https://hackernoon.com/need-superfast-high-performance-database-graphql-node-js-service-3ada84f

    You have project requires fast database query and storage documents, #redis is highly recommendation. I made and continue working to complete it for my own project and also share it free for you. See video how to use Redis Database and GraphQL for Backend Api Service.Video how it works:▻https://medium.com/media/42a376aafb4eda9c253a34a6442f8520/hrefGithub: ▻https://github.com/tabvn/graphql-redisNeed SuperFast High performance Database GraphQL Node.js Service ? was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.

    #nodejs

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 2/04/2018

    Using Core Node JS Modules in #react Native Apps
    ▻https://hackernoon.com/using-core-node-js-modules-in-react-native-apps-64acd4d07140?source=rss-

    https://cdn-images-1.medium.com/max/734/1*MoWUxM7ocVD0ten_gk7Iag.png

    Here’s a problem you might run into while using React Native: Let’s say you want to use the crypto module to create some hashes. It might seem natural to do something like this:▻https://medium.com/media/68d54b356fea87b72ea19a1aa7b00233/hrefBut this doesn’t work, because crypto is a core Node JS module, which means it’s probably C++ code bundled with the Node JS binary, not #javascript. The React Native packager can’t package it[1] along with your app’s Javascript bundle, so you get a runtime error: Unable to resolve module ’crypto’.This makes core modules like crypto, stream etc. and the thousands of npm modules that depend on them unusable from React Native. Fortunately, there’s a solution to this problem, but it takes some work.SolutionIf you’re familiar the module bundler Browserify, (...)

    #nodejs #mobile-app-development #react-native

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 27/03/2018

    Setting up RESTful API Server for #hyperledger Fabric With #nodejs SDK
    ▻https://hackernoon.com/setting-up-restful-api-server-for-hyperledger-fabric-with-nodejs-sdk-a46

    https://cdn-images-1.medium.com/max/1024/1*V9KZS6iwrwlhfhsfSba8Ig.png

    Learn how to setup a NodeJS server for your #blockchain network to allow multiple users to interact with the chain easily.In our previous article, we learnt about writing your first simple Hyperledger Fabric Chaincode in Go and how to set up your development environment for Hyperledger Fabric. This article focuses on how to build a NodeJS Server with ExpressJS for your Hyperledger Fabric Network.PRE REQUISITESBefore I jump in any further into this article, I will assume that you’re familiar with setting up the network with multiple organisations and also assume that there is a network already running on your machine. (If not please follow our previous articles in completing them.)It’s also great if you have prior experience in the following,JavaScript OOP conceptsJavascript PromiseServer (...)

    #dlt #hyperledger-fabric

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 20/03/2018

    Patterns — Generic Repository with #typescript and Node.js
    ▻https://hackernoon.com/generic-repository-with-typescript-and-node-js-731c10a1b98e?source=rss--

    https://cdn-images-1.medium.com/max/911/1*dffdGxirQfDyHJjWM3p47Q.png

    Patterns — Generic Repository with Typescript and Node.jsBecome a master of CodesIf you work with Node.js/Javascript and you have many replicated codes for different data models or create CRUDs (Create, Read, Update and Delete) at all times, then this post is for you!Generic Repository PatternWorking with #javascript applications, we have some problems to share similar code between the application, and in many times we create the same code for different applications. That pattern gives to you a power to write an abstraction of data, when we have one abstract class (or many classes) and reuse the implementations independent of your Data Model, passing only your types to someone classes.Talking about the Repository pattern, it is a representation where you can keep all operations of your (...)

    #design-patterns #generic-repository #nodejs

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 18/07/2017

    Scaling Node.js Applications
    ▻https://medium.freecodecamp.org/scaling-node-js-applications-8492bd8afadc

    “Scalability in Node.js is not an afterthought. It’s something that’s baked into the core of the runtime. Node is named Node to emphasize the idea that a Node application should comprise multiple small distributed nodes that communicate with each other.”

    #NodeJS_scalability_faultTolerance_clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @fil
    Fil @fil 2/05/2017
    3
    @james
    @kent1
    @lluc
    3

    How to communicate between #Python and #NodeJs ?
    ▻http://sohamkamani.com/blog/2015/08/21/python-nodejs-comm

    Fil @fil
    Écrire un commentaire
  • @cy_altern
    cy_altern @cy_altern CC BY-SA 31/03/2017

    Mailtrain-org/mailtrain: Self hosted newsletter app
    ▻https://github.com/Mailtrain-org/mailtrain

    Mailtrain is a self hosted newsletter application built on Node.js (v5+) and MySQL (v5.5+ or MariaDB).

    Le site officiel: ▻https://mailtrain.org

    #newsletter #nodejs #open-source #mailtrain

    cy_altern @cy_altern CC BY-SA
    Écrire un commentaire
  • @nicod_
    nicod_ @nicod_ 16/02/2017
    2
    @b_b
    @cy_altern
    2

    Node.js – Bonnes pratiques pour la programmation #JavaScript applicative, universelle et modulaire
    ►https://oncletom.io/node.js

    Bienvenue sur la version Web et gratuite de l’ouvrage #Node.js à paraître aux éditions Eyrolles.

    J’ai choisi d’explorer une approche collaborative pour la rédaction de l’ouvrage. L’épreuve que vous consultez est automatiquement actualisée à chaque commit publié sur le dépôt GitHub du projet.

    #nodejs #livre #collaboratif

    nicod_ @nicod_
    Écrire un commentaire
  • @baroug
    baroug @baroug 2/06/2016
    2
    @fil
    @cyrille37
    2

    Introducing #HyperDev - Joel on Software
    ▻http://joelonsoftware.com/items/2016/05/30.html

    Now you’re starting to get the idea of HyperDev. It’s just a SUPER FAST way to get running code up on the internet without dealing with any administrative headaches that are not related to your #code.

    baroug @baroug
    • @fil
      Fil @fil 2/06/2016

      #développement #web #javascript #nodejs

      ▻https://hyperdev.com

      Fil @fil
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 22/09/2015
    1
    @nicod_
    1

    Node.js – Bonnes pratiques pour la programmation JavaScript applicative, universelle et modulaire
    ►https://oncletom.io/node.js

    Tags : #NodeJS #livre #opensource #clevermarks

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @robin
    robin @robin CC BY 8/09/2015

    sebpiq/node-web-audio-api
    ▻https://github.com/sebpiq/node-web-audio-api

    Node.js implementation of Web audio API

    • #API
    robin @robin CC BY
    • @0gust1
      0gust1 @0gust1 CC BY-NC 9/09/2015

      #music #mao #javascript #nodeJS

      0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 7/09/2015

    glenpike/npm-g_nosudo
    ▻https://github.com/glenpike/npm-g_nosudo

    A shell script which will fix the problem where you want to stop using sudo for #npm -g on #ubuntu.

    #nodejs

    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @alda
    Alda @alda CC BY-ND 15/06/2015

    creationix/nvm
    ▻https://github.com/creationix/nvm

    Un script shell qui configure des variables d’environnement pour pouvoir utiliser plusieurs versions de #nodejs dans un seul profil utilisateur.

    Ou pour pouvoir installer et utiliser NodeJS et ses modules sans avoir besoin de root ni des droits d’écriture dans /usr/local(Permalink)

    #informatique

    Alda @alda CC BY-ND
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 1/06/2015
    2
    @fil
    @severo
    2

    Node.js Scraping Libraries

    ▻http://blog.webkid.io/nodejs-scraping-libraries

    In this post I will show you how to use different libraries so you can get a rough idea of how to work with them. These are only very simple examples. Please check out the docs to get to know more.

    ça pourra m’intéresser... j’en ai marre de scraper à la main ou presque ^^.

    #nodeJS #scraping #javascript #web #webdev

    0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 10/02/2015
    3
    @james
    @02myseenthis01
    3

    #IOJS, and #NodeJs foundation —

    La fin prochaine du « spork » ?

    Joyent, Inc., the container infrastructure software company and corporate steward of the Node.js open source project, today announced that it will move to establish a formal open governance model for Node.js with the creation of an independent foundation. Joyent will join forces with IBM, PayPal, Microsoft Corp, Fidelity and The Linux Foundation to establish the Node.js Foundation, which will be committed to the continued growth and evolution of Node.js, while maintaining a collaborative environment to benefit all users.

    ▻http://www.marketwired.com/press-release/joyent-moves-to-establish-nodejs-foundation-1990402.htm

    Notons la présence de #Microsoft (et l’absence de #Mozilla, faisait-on remarquer sur twitter) et de la #Linux_Foundation.

    Plus d’infos vis à vis d’IOJS :

    ▻https://medium.com/@iojs/io-js-and-a-node-js-foundation-4e14699fb7be

    #javascript

    Voir aussi : ▻http://seenthis.net/messages/330084

    • #IBM
    • #Microsoft Corp
    • #PayPal
    0gust1 @0gust1 CC BY-NC
    • @0gust1
      0gust1 @0gust1 CC BY-NC 10/02/2015

      ▻https://www.joyent.com/blog/introducing-the-nodejs-foundation

      This morning we – along with several prominent members of the Node.js community – announced our intent to form the Node.js Foundation, an independent foundation that will oversee the production and development of the Node.js project.

      Visiblement, il y a #SAP maintenant :

      So far, IBM, Microsoft, PayPal, Fidelity and SAP have joined us as founding members, and we’ll continue to add others over the coming months.

      0gust1 @0gust1 CC BY-NC
    • @0gust1
      0gust1 @0gust1 CC BY-NC 10/02/2015

      J’ai un sentiment assez mitigé après avoir lu le post de blog de Joyent : ils ne parlent même pas de IOJS, même indirectement.

      Sinon, il y a ça qui tournait hier sur Twitter...

      ▻https://www.youtube.com/watch?v=1IOukA10QeQ

      0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 12/01/2015

    Le première release de io.js, c’est... demain.

    ▻https://iojs.org

    A spork of Node.js with an open governance model

    ▻https://github.com/iojs/io.js

    #nodeJS #javascript #ioJS

    0gust1 @0gust1 CC BY-NC
    • @0gust1
      0gust1 @0gust1 CC BY-NC 12/01/2015

      « Spork » : ▻http://fr.wikipedia.org/wiki/Cuill%C3%A8re-fourchette

      Je pensais que c’était une blague, mais non :

      Le mot « spork » est parfois utilisé en informatique, dans le domaine du logiciel libre à sources ouvertes pour désigner le regroupement de différents embranchements d’un même logiciel, par opposition au mot « fork » (fourche ou fourchette) qui désigne la séparation du logiciel en différentes versions géré par des développeurs ou groupes de développeurs distincts.

      0gust1 @0gust1 CC BY-NC
    • @0gust1
      0gust1 @0gust1 CC BY-NC 12/01/2015

      La communauté node en a eu assez du modèle de gouvernance opaque et long de Joyent (la boite derrière node au départ).

      Il y a eu plusieurs tentatives (NodeForward notamment) de divers contributeurs importants de faire avancer le sujet, mais qui n’ont pas été satisfaisantes.

      Du coup, un fork a été créé et annoncé il y a quelques mois. Les personnes derrière le projet sont des contributeurs catégorie « poids lourd ».

      Ils n’excluent pas de rejoindre le projet principal, une fois que les lignes auront bougé (si elles bougent).

      A priori, pour les utilisateurs, ça va pas changer grand chose au niveau de l’écosystème.

      Pour les articles, il y en a plein :) , par exemple

      ▻http://blog.izs.me/post/104685388058/io-js

      ▻http://readwrite.com/2014/12/10/node-js-io-js-developers-faq

      0gust1 @0gust1 CC BY-NC
    • @0gust1
      0gust1 @0gust1 CC BY-NC 13/01/2015

      Je suis assez confiant de mon coté (mais je suis loin d’avoir la science infuse et, grand dieux, je ne suis pas expert nodejs) :

      – J’ai tendance à voir le « fork » comme une façon de rendre visibles les problématiques de la communauté, d’engager la discussion avec Joyent de façon plus équilibrée.

      – node est une toute petite partie de l’écosystème de nodeJS : le « moteur », le « kernel ». Lui même est principalement un assemblage de briques (majoritairement C++) : V8, le moteur JS de chrome et surtout libuv. V8 et libuv ne sont pas dans le giron de Joyent. libuv est utilisée chez Rust, Julia, python, Lua, etc...

      Au cours de l’histoire du projet, les contributeurs ont dépensé bcp d’énergie pour « sortir de la librairie standard » pas mal de fonctionnalités pour les mettre en « userspace » (en modules)). La force de nodeJS est surtout son écosystème de modules (et la philosophie « unixienne » du projet).

      Quelques liens :

      Architecture de nodeJs :

      https://raw.githubusercontent.com/0gust1/USTL2014/master/img/node-libuv.jpg

      Liste de langages et outils utilisant libuv :
      ▻https://github.com/libuv/libuv/wiki/Projects-that-use-libuv

      0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 29/11/2014
    2
    @biggrizzly
    @fil
    2

    ►https://github.com/petkaantonov/bluebird

    Bluebird is a full featured promise library with unmatched performance.

    Une librairie de « promises », pour nodeJS et les navigateurs, qu’on m’a recommandé pour sa performance. Auparavant j’utilisais « Q » –l’implémentation de référence en node – qui semble beaucoup moins performante.

    #nodejs #promise #javascript

    0gust1 @0gust1 CC BY-NC
    • @fil
      Fil @fil 29/11/2014

      ah tiens ça existe aussi pour #PHP
      ▻http://sabre.io/event/promise

      Fil @fil
    Écrire un commentaire
  • @nhoizey
    Nicolas Hoizey @nhoizey CC BY-NC-SA 25/09/2014

    Tutoriel #AngularJS, #NodeJS (expressJS) et #MongoDB
    ▻http://www.webisn.byethost5.com/AngularJs

    Tags : AngularJS NodeJS #expressJS MongoDB

    Nicolas Hoizey @nhoizey CC BY-NC-SA
    Écrire un commentaire
  • @b_b
    b_b @b_b PUBLIC DOMAIN 9/09/2014
    2
    @fil
    @freakonometrics
    2

    GIS without GIS Servers
    ▻http://www.spatiallyadjusted.com/2014/09/08/gis-without-gis-servers

    My bandmate, Sheldon McGee, and I presented at AGIC 2014 on how to serve up vector data in Google Maps without using some crazy GIS Server type software. Just a little node.js and some #PostGIS is all one needs.

    ▻http://tooshel.github.io/agic2014/#

    ▻https://github.com/tooshel/node-gis-server

    #mapserver #nodejs #geojson

    • #Google
    b_b @b_b PUBLIC DOMAIN
    Écrire un commentaire
  • @0gust1
    0gust1 @0gust1 CC BY-NC 4/07/2014
    4
    @fil
    @neurolit
    @liotier
    4

    Un important contributeur de #nodeJS, TJ Holowaychuk, lui dit « au revoir ».

    Farewell Node.js
    Leaving node.js land

    I’ve been fighting with Node.js long enough in production now that I don’t enjoy working with it anymore unfortunately, so at least for now this my formal farewell! And more importantly I need maintainers

    ▻https://medium.com/code-adventures/farewell-node-js-4ba9e7f3e52b

    Ce qui est rigolo, c’est que c’est un personnage quasi mythique : personne ne l’a vu, son style de code change souvent, etc.

    #javascript #go

    0gust1 @0gust1 CC BY-NC
    • @fil
      Fil @fil 4/07/2014

      don’t get stuck in your own bubble! See what else is out there, you just might enjoy programming again.

      Fil @fil
    • @0gust1
      0gust1 @0gust1 CC BY-NC 9/07/2014

      Une « réponse » de Dustin Diaz.

      Why I’m staying with Node

      ▻https://medium.com/@ded/why-im-staying-with-node-e6fd3be62e34

      But I bet on JavaScript a long time ago, and alas, like English — it’s everywhere.

      The problems that T.J. points out with Node.js are very similar to the problems we have in English, metaphorically speaking of course. Error handling is natively error prone, callbacks are harder than regular synchronous transactions, errors, errors, errors. We make grammar mistakes all the time in English, but for the most part, we all understand each other, and have known solutions to fix those mistakes.

      As far as measuring concurrency and speed between Go and Node, it would the equivalent of comparing whether a for loop performs better going backwards or forward. These kind of microbenchmarks don’t appeal to me. When choosing a programming language or framework or library, always consider the ROI for your product and how effective you’ll be between your users, your team, and yourself.

      0gust1 @0gust1 CC BY-NC
    Écrire un commentaire
  • @renyonparis
    Ybbet @renyonparis 4/07/2014
    1
    1

    Raneto - An #OpenSource #Knowledgebase for #Nodejs
    ▻http://www.webappers.com/2014/07/04/raneto-open-source-knowledgebase-nodejs

    Ybbet @renyonparis
    Écrire un commentaire
  • @robin
    robin @robin CC BY 5/06/2014
    12
    @nhoizey
    @ben
    @grommeleur
    @monolecte
    @pihair
    @7h36
    @fil
    @thibnton
    @silvae
    @goom
    @pihair
    @pihair
    12

    HipHop
    ►http://gethiphop.net

    HipHop is an application for Windows, Mac and Linux that lets you listen instantly to more than 45 million songs (way more than iTunes that has only 26 million). It requires no sign up, displays no ads and is 100% safe.

    • #YouTube
    robin @robin CC BY
    • @ben
      Ben @ben CC BY-NC 5/06/2014

      Ce serait donc le #popcorn musical

      Ben @ben CC BY-NC
    • @0gust1
      0gust1 @0gust1 CC BY-NC 5/06/2014

      On me souffle que c’est fait avec #node-webkit... (comme popcorn au début).

      #nodejs #javascript

      0gust1 @0gust1 CC BY-NC
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 8/06/2014

      Je ne trouve pas d’explication de comment ça marche juridiquement/économiquement.

      Car pour avoir le droit légal de diffuser toutes ces musiques, même en streaming, il faut bien des accords (financiers) avec les éditeurs et artistes, non ? Donc c’est quoi l’astuce là ?

      RastaPopoulos @rastapopoulos CC BY-NC
    • @simplicissimus
      Simplicissimus @simplicissimus 8/06/2014

      Chez Korben

      HipHop - Un clone de PopCorn Time mais pour la musique « Korben
      ▻http://korben.info/hiphop-clone-popcorn-time-musique.html

      Oui, HipHop propose 45 millions de chansons en allant choper le son des vidéos YouTube. Il choisit celles qui sont de la meilleure qualité possible et vous propose tout cela sans pub et sans inscription.
      (…)
      Reste à savoir maintenant combien de temps ce service va durer. Google pourrait lui fermer le robinet et surtout les ayants droit pourraient mettre leurs avocats sur le coup histoire de tuer dans l’oeuf cette appli. L’avenir nous le dira.

      Simplicissimus @simplicissimus
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 8/06/2014

      Ok ok, là c’est pas par Torrent, c’est en pompant le son de Youtube. Ouais, ça risque de pas durer longtemps…

      RastaPopoulos @rastapopoulos CC BY-NC
    • @thibnton
      tbn @thibnton PUBLIC DOMAIN 9/06/2014

      En attendant, ça marche du tonnerre : )

      tbn @thibnton PUBLIC DOMAIN
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 9/06/2014

      Pour Popcorn, j’ai testé le PPA pour Ubuntu qui existe toujours, et ça marche vraiment très bien aussi, y compris avec sous-titres fr.

      Mais par contre, faut pas essayer de chercher autre chose qu’un film anglo-saxon…

      RastaPopoulos @rastapopoulos CC BY-NC
    • @ben
      Ben @ben CC BY-NC 12/06/2014

      #dead

      ►http://gethiphop.net

      HipHop started as a technical challenge between friends. The recent success wasn’t expected, and we took the entire project down this morning.

      We are all users of paid music services and we do believe in artists getting paid for their creations.

      If you do like music, there is a lot of amazing services out there: Deezer, Spotify, Rdio, ...

      Ben @ben CC BY-NC
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 12/06/2014

      Haha, ça a tenu moins longtemps que Popcorn.

      RastaPopoulos @rastapopoulos CC BY-NC
    • @alexcorp
      alexcorp @alexcorp CC BY-NC 29/06/2014

      Pour le moment ça fonctionne toujours très bien quand même, conservez précieusement le binaire (et les sources) :)

      alexcorp @alexcorp CC BY-NC
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 29/06/2014

      Héhé oui c’est ce que j’ai fait aussi. :)

      RastaPopoulos @rastapopoulos CC BY-NC
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 23/07/2014

      Je ne sais pas chez vous, mais là j’ai l’impression que la lecture ne se lance plus. Du genre Youtube a bloqué tout streaming demandé par ce client. (Popcorn basé sur torrent, lui fonctionne toujours bien. :-)

      RastaPopoulos @rastapopoulos CC BY-NC
    • @rastapopoulos
      RastaPopoulos @rastapopoulos CC BY-NC 16/09/2014

      Même principe sous un autre nom :
      ▻http://www.omgubuntu.co.uk/2014/07/atraci-is-a-cross-platform-desktop-youtube-music-player

      RastaPopoulos @rastapopoulos CC BY-NC
    • @alexcorp
      alexcorp @alexcorp CC BY-NC 16/09/2014

      Parfait :) Effectivement HipHop ne fonctionnait plus.

      alexcorp @alexcorp CC BY-NC
    • @nicolasm
      Nicolas🌱 @nicolasm CC BY-SA 16/09/2014

      ça marche bieng !

      Nicolas🌱 @nicolasm CC BY-SA
    Écrire un commentaire
0 | 25 | 50 | 75 | 100

Thèmes liés

  • #javascript
  • #web-development
  • technology: api
  • programminglanguage: javascript
  • #aws
  • #serverless
  • #react
  • #software-development
  • #programming
  • #npm
  • #nodejs
  • company: github
  • industryterm: software
  • #kubernetes
  • #open-source
  • technology: java
  • technology: api
  • #docker
  • #aws-lambda
  • operatingsystem: linux
  • #node.js
  • #ubuntu
  • #redis
  • #code
  • #api
  • technology: html
  • #nginx
  • technology: linux
  • company: google
  • #typescript
  • programminglanguage: javascript
  • company: mongodb
  • #blockchain
  • technology: ssl
  • #livre
  • #web
  • #nodejs
  • #react-native
  • #nodejs
  • industryterm: web development