Skip to main content

Le Cnam Liban

cnamliban.cofares.net association de soutient au Cnam Liban, Université d'ambition laïque et populaire (mais pas populiste) référence de rigueur et d'exellence, pour tous les Libanais. Ceci est le blog de la communauté.  

Comments

  1. Khống mấy khó khăn khi bạn có nhu cầu làm trắng da và cùng chúng tôi tìm hiểu làm trắng da toàn thân bằng phương pháp tự nhiên
    Cùng tìm hiểu vềbí quyết làm trắng da toàn thân tại nhà
    Bạn không có thời gian đi đến các trung tâm làm đẹp thì hôm nay chúng tôi chia sẻ bạn cáchtự làm trắng da toàn thân tại nhà đơn giản
    Bạn có thể thực hiện làm trắng dưỡng da toàn thân một cách đơn giản tại nhà với chia sẻ chúng tôi về cách làmtrắng da toàn thân đơn giản tại nhà
    Kem chống nắng có công dụng bảo vệ da trước ánh nắng mặt trời nhưng cần biếtcách sử dụng kem chống nắng hiệu quả
    dầu dừa nguyên liệu tự nhiên được sử dụng rộng rãi hiện hay được nhiều người biết đến cùng tìm hiêu công dụnglàm đẹp bằng dầu dừa
    Cùng tìm hiểubí quyết làm trắng da toàn thân
    Hiện nay việc làm trắng da không còn quá phức tạp bạn có thẻ thực hiện tại nhà đơn giản cùng tìm hiểucách làm trắng da toàn thân hiệu quả

    ReplyDelete

Post a Comment

Pascal Fares and Open Source Lebanese Movement >

Popular posts from this blog

Go Google Go! A Language on Full Throttle

InfoWorld (12/18/13) Serdar Yegulalp   Go, Google's C-like language, recently was ranked at the top of TechEmpower's eighth round of Web framework benchmarks. Go proved to be the strongest in the JSON serialization test, achieving the best peak performance and the lowest latency scores. The high performance with JSON serialization indicates that Go is being performance-tuned for the same set of workloads most directly associated with frameworks such as Node.js. Node.js' lowest performance was at 14.3 percent of Go's speed, while the best was at 69.1 percent. Node.js has the advantage of a broad software development culture--not just through its package repository, but also because there are many more JavaScript programmers than there are Go programmers. Another newcomer in the benchmarks is Facebook's HipHop PHP VM (HHVM), an open source project that compiles PHP into C++ instead of interpreting it. HHVM was designed to replace Facebook's existing PHP-execution...

How to create RESTful API usig Node for processing HTTP requests.

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine . Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm , is the largest ecosystem of open source libraries. Follow : Create RestFul API node.js and mysql : http://www.9lessons.info/2017/02/create-restful-api-nodejs-mysql.html

clone a single branch from git repo

git clone -b <branch> --branch <branch> --single-branch git://github/repository.git --[no-]single-branch Clone only the history leading to the tip of a single branch, either specified by the  --branch  option or the primary branch remote's  HEAD  points at. When creating a shallow clone with the  --depth option, this is the default, unless  --no-single-branch  is given to fetch the histories near the tips of all branches. Further fetches into the resulting repository will only update the remote-tracking branch for the branch this option was used for the initial cloning. If the HEAD at the remote did not point at any branch when  --single-branch  clone was made, no remote-tracking branch is created.