From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 714E87FCCB for ; Mon, 27 Apr 2015 15:19:51 +0200 (CEST) Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of leowzukw@vmail.me) identity=pra; client-ip=62.210.82.129; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="leowzukw@vmail.me"; x-sender="leowzukw@vmail.me"; x-conformance=sidf_compatible Received-SPF: Pass (mail3-smtp-sop.national.inria.fr: domain of leowzukw@vmail.me designates 62.210.82.129 as permitted sender) identity=mailfrom; client-ip=62.210.82.129; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="leowzukw@vmail.me"; x-sender="leowzukw@vmail.me"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: Fail (mail3-smtp-sop.national.inria.fr: domain of postmaster@mx1.vmail.me does not designate 62.210.82.129 as permitted sender) identity=helo; client-ip=62.210.82.129; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="leowzukw@vmail.me"; x-sender="postmaster@mx1.vmail.me"; x-conformance=sidf_compatible; x-record-type="v=spf1" X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0AiHAAkNz5V/4FS0j5cgwxTXIMaxHYBCYYBAYE0PBABAQEBAQEBgQpBAQIChAQdAQE2Ah4dEAIBAwsCCwMCAQIBSy2IFQmxYXCEYQEFjx8GiziEIgsGAXgHggYMLxKBM5FZhAKGOIEiPYxcg1aDUCOBRgyCJDwxAWQeAQcXgSIBAQE X-IPAS-Result: A0AiHAAkNz5V/4FS0j5cgwxTXIMaxHYBCYYBAYE0PBABAQEBAQEBgQpBAQIChAQdAQE2Ah4dEAIBAwsCCwMCAQIBSy2IFQmxYXCEYQEFjx8GiziEIgsGAXgHggYMLxKBM5FZhAKGOIEiPYxcg1aDUCOBRgyCJDwxAWQeAQcXgSIBAQE X-IronPort-AV: E=Sophos;i="5.11,657,1422918000"; d="scan'208,217";a="113675023" Received: from mx1.vmail.me ([62.210.82.129]) by mail3-smtp-sop.national.inria.fr with ESMTP/TLS/ADH-AES256-SHA; 27 Apr 2015 15:19:50 +0200 Message-ID: <553E3774.3000706@vmail.me> DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=vmail.me; s=mx1; t=1430140446; bh=CPt+HkK4RorVe5/WA3Myyv9MSdBVyBNfEt8nWw8bwmE=; h=Date:From:To:Subject; b=kxBkn+lIrAnTb5BIaO6mSzUDZ4QoDVCprdSyafQPPfWLS+pXlAi+KPaB/0KjrcHUy y3gwjPS49Ag5vpuBQnEjAOW7hE2+F8HQnwz6d/Qcdw+xmHe0MwHMXff2oirvWzPOrl NLfymYvMfwwAPeM2kewm2+9PSrdD5Yk6bYLWpiT0EdipcjFpBuTkp05mOy0xfJh39E rfvWUWvgDTi+2ADeUt8U6QAuFZMO1pchpAf8gaz4rKGxkkoSW5zDR8HyJ3wLV4yis+ LgpPKe+hszHjXxc53p1ncWzJ90gIkDR+u6mvaqGxFlznu0LR8awYDf5XZGdSSt1pdX xyMTU7lOO9E1A== Date: Mon, 27 Apr 2015 15:19:48 +0200 From: Leo Wzukw MIME-Version: 1.0 To: Caml List Content-Type: multipart/alternative; boundary="------------010806070209020300020304" Subject: [Caml-list] New software written in OCaml This is a multi-part message in MIME format. --------------010806070209020300020304 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hello list, I developed since about a year a tools named OcLaunch. It allow to spread launch of program across session, each time a terminal (or anything else) is called. For example, you may want to launch a client chat and several TODO list, and then verify update. If add all to your .bashrc, the output will be displayed every time it is sourced, i. e. each time you open a terminal. What a mess! With OcLaunch, these commands are launched one at time. So * You open your first terminal: the client chat is launched * You open the second one: a TODO list is displayed * ... and so on An other advantage is that your reminder are spread across your session, which remind you important task several times and may limit procrastination! Official website is http://oclaunch.tuxfamily.org/home.html. You can find a demo video if the purpose of OcLaunch is not clear and several resources. Email me if you need some help or to give feedback. Leo PS: People reading French may be interested by this page : http://linuxfr.org/news/oclaunch-launch-automagically --------------010806070209020300020304 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 7bit Hello list,

I developed since about a year a tools named OcLaunch. It allow to spread launch of program across session, each time a terminal (or anything else) is called.
For example, you may want to launch a client chat and several TODO list, and then verify update. If add all to your .bashrc, the output will be displayed every time it is sourced, i. e. each time you open a terminal. What a mess!
With OcLaunch, these commands are launched one at time. So
  • You open your first terminal: the client chat is launched
  • You open the second one: a TODO list is displayed
  • ... and so on

An other advantage is that your reminder are spread across your session, which remind you important task several times and may limit procrastination!

Official website is http://oclaunch.tuxfamily.org/home.html. You can find a demo video if the purpose of OcLaunch is not clear and several resources.

Email me if you need some help or to give feedback.

Leo

PS: People reading French may be interested by this page : http://linuxfr.org/news/oclaunch-launch-automagically --------------010806070209020300020304--