Re: Vibrant 2.0, major update

2017-10-14 Thread Guillaume Piolat via Digitalmars-d-announce
On Monday, 13 February 2017 at 22:57:18 UTC, Ali Çehreli wrote: All interesting stuff! Look how much interest the self-important idiom received, which the original author had thought to be a trivial matter: https://www.reddit.com/r/programming/comments/5tt33y/a_new_import_idiom_for_d/ A

Re: Vibrant 2.0, major update

2017-10-14 Thread Guillaume Piolat via Digitalmars-d-announce
On Monday, 13 February 2017 at 22:57:18 UTC, Ali Çehreli wrote: All interesting stuff! Look how much interest the self-important idiom received, which the original author had thought to be a trivial matter: https://www.reddit.com/r/programming/comments/5tt33y/a_new_import_idiom_for_d/ A

Very tiny script for testing D projects with Pijul version control system.

2017-10-14 Thread Suliman via Digitalmars-d-announce
GIT IMHO very heavy for tiny projects. And I decided to try http://pijul.com/ I am developing on Windows, but I need to test code on Linux. So I did very simple tool-chain: Developing on Windows. Making package with command: `pijul dist -d latest` Syncing code to Linux VPS/VirtualBox instance

Re: Very tiny script for testing D projects with Pijul version control system.

2017-10-14 Thread Suliman via Digitalmars-d-announce
Here is Windows .bat file that complete uploading project to server with SSH: upload.bat: @echo off for %%a in ("%cd%") do set folder=%%~na winscp.com /command "open sftp://root:PassW0rd@127.0.0.1:; "put latest.tar.gz /code/%folder%/" "exit" Local folder name should be same with remote