Re: requests 2.0.0 release

2020-10-29 Thread Alireza SN via Digitalmars-d-announce
On Thursday, 29 October 2020 at 06:42:54 UTC, ikod wrote: Hi, requests 2.0.0 released with single change - support for vibe-d moved to separate subpackage. ... best regards, Igor This is great! Thank you.

Re: [Release] Authomata: a two-factor authentication gui app for Gnu/Linux

2020-10-05 Thread Alireza SN via Digitalmars-d-announce
On Monday, 5 October 2020 at 17:25:04 UTC, aberba wrote: Nice. Will you publish it on flathub or snap store eventually? Thanks. I will build packages for Arch Linux and Ubuntu (Maybe AppImage too) but i'm not sure about snap or flathub since i haven't used them before.

[Release] Authomata: a two-factor authentication gui app for Gnu/Linux

2020-10-04 Thread Alireza SN via Digitalmars-d-announce
This weekend i had some free time and wrote this GtkD app for two-factor authentication (yes i know there are alternatives but it's a cool little project). It still lacks a lot of functionality like edit/delete/import/export but the config file (~/.config/Authomata/config.json) is a json

Re: Command line calculator in D

2020-05-09 Thread Alireza SN via Digitalmars-d-announce
On Saturday, 9 May 2020 at 13:17:39 UTC, Guillaume Piolat wrote: Could you add "exp" ? :) I added it 

Re: Command line calculator in D

2020-05-09 Thread Alireza SN via Digitalmars-d-announce
On Saturday, 9 May 2020 at 10:38:08 UTC, Joel wrote: Can you add something like 'string result = evaluateFromString("(1+2)/2");'? You can do that now :) auto p = new Prser(); string result = p.evaluateFromString("(1+2)/2");

Command line calculator in D

2020-05-06 Thread Alireza SN via Digitalmars-d-announce
I was learning about an algorithm called 'Pratt Parser' and decided to write a cli calculator with it. Here is the link if you want to check it out: https://github.com/TheWeirdDev/Calcool Feel free to point out any mistakes i have made.

Snake game

2019-07-24 Thread Alireza SN via Digitalmars-d-announce
Hi, I'm new to D. Thought it would be fun to write a simple snake game for start. I hope it's not irrelevant to post it here. https://github.com/TheWeirdDev/SnakeD