dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

bhcli.gohtml (3251B)


      1 {{ define "title" }}dkf - bhcli{{ end }}
      2 
      3 {{ define "content" }}
      4 
      5 <div class="container">
      6     <div>
      7 
      8         <h3>Chat CLI client for "Black Hat Chat"</h3>
      9         <div class="mb-3"><time datetime="2021-09-01 00:00">Sep 01, 2021</time></div>
     10 
     11         <p class="mt-5 mb-4">
     12             This chat client works with both
     13             <a href="http://blkh4ylofapg42tj6ht565klld5i42dhjtysvsnnswte4xt4uvnfj5qd.onion" rel="noopener noreferrer" target="_blank">Black Hat Chat</a> and
     14             <a href="http://danschat356lctri3zavzh6fbxg2a7lo6z3etgkctzzpspewu7zdsaqd.onion" rel="noopener noreferrer" target="_blank">Daniel's Chat</a>
     15             <br />
     16 
     17             Among other productivity features, it also gives you "sound" notifications when someone "tag" you or "pm" you.<br/>
     18             It also use a lot less CPU than tor browser does on these websites.<br />
     19 
     20             This application is written in <a href="https://www.rust-lang.org/" rel="noopener noreferrer" target="_blank">Rust</a> and is open source on
     21             <a href="http://git.dkforestseeaaq2dqz2uflmlsybvnq2irzn4ygyvu53oazyorednviid.onion/n0tr1v/bhcli" rel="noopener noreferrer" target="_blank">this git server</a>
     22             <br />
     23         </p>
     24 
     25         <p>
     26             <a href="/bhcli/downloads">Download pre-build official application</a>
     27         </p>
     28 
     29         <p class="mt-5 mb-4">
     30             To login, you can either use environment variables, application flags, or stdin user input.<br />
     31             The captcha (if you need to enter it) will be displayed within the terminal.<br />
     32             The `-m` flag force the application to ask for captcha.<br />
     33         </p>
     34         <img src="/public/img/bhcli/login.gif" alt="" />
     35         <p class="mt-5 mb-4">
     36             To quickly tag someone, you can select a message then type `t`<br />
     37             This will enter the "edit mode" with `@username ` already typed.
     38         </p>
     39         <img src="/public/img/bhcli/tagging.gif" alt="" />
     40         <p class="mt-5 mb-4">
     41             To quickly PM someone, you can select a message then type `p`<br />
     42             This will enter the "edit mode" with `/pm username ` already typed.<br />
     43             The prefix stays there after sending a message.
     44         </p>
     45         <img src="/public/img/bhcli/pm.gif" alt="" />
     46         <p class="mt-5 mb-4">
     47             To delete the last message, you can type `/dl`<br />
     48             If you want to delete more messages, `/dl5` will delete the last 5 messages.
     49         </p>
     50         <img src="/public/img/bhcli/dlx.gif" alt="" />
     51         <p class="mt-5 mb-4">
     52             To quickly kick someone, you can select a message then type `ctrl+k`<br />
     53             This will enter the "edit mode" with `/kick username ` already typed.
     54         </p>
     55         <img src="/public/img/bhcli/kick.gif" alt="" />
     56         <p class="mt-5 mb-4">
     57             If you wish to copy a message in clipboard, you can select a message and type `y`
     58         </p>
     59         <img src="/public/img/bhcli/copy_clipboard.gif" alt="" />
     60 
     61         <p class="mt-5 mb-4">
     62             <strong>Bonus:</strong>
     63             This application also work on "Daniel's chat" if you use the `--dan` flag.
     64         </p>
     65 
     66         <div style="height: 100px;"></div>
     67     </div>
     68 </div>
     69 
     70 {{ end }}