Re: dub is not able to install any package

2018-08-13 Thread Adil via Digitalmars-d
On Monday, 13 August 2018 at 13:28:02 UTC, Joakim wrote: On Monday, 13 August 2018 at 13:02:43 UTC, Adil wrote: dub build Package gelfd not found in registry at https://code.dlang.org/ (fallback ["registry at http://code.dlang.org/;, "registry at https://code-mirror.dlang.io/;, "registry at

dub is not able to install any package

2018-08-13 Thread Adil via Digitalmars-d
dub is unable to fetch any dependency from code.dlang.org Here's the dub.json file { "name" : "screener-d", "description" : "Screener Daemon", "sourcePaths": ["source/screener"], "dflags": ["-J."], "arch":"x86_64", "configurations" :

DUB describe error in Eclipse

2017-12-23 Thread Adil via Digitalmars-d-learn
Eclipse: Version: Neon.3 Release (4.6.3) Platform: Ubuntu 16.04 I have a running version of dub and dmd that works from the command line. But does not work from Eclipse (DDT). When i CTRL+Click on a function or module it should take me to the source, instead if gives the following error:

Re: London senior DevOps job and two London [D-ish] developer roles

2017-10-22 Thread Adil via Digitalmars-d-announce
On Friday, 20 October 2017 at 10:53:10 UTC, Laeeth Isharc wrote: On Friday, 20 October 2017 at 09:11:17 UTC, Arjan wrote: On Thursday, 19 October 2017 at 20:01:20 UTC, Laeeth Isharc wrote: Hi. Symmetry Investments is looking to hire ... Please feel free to drop me a line if you're interested

Re: How do i convert this Makefile to dub

2016-08-08 Thread Adil via Digitalmars-d-learn
On Monday, 8 August 2016 at 18:45:35 UTC, drug007 wrote: On 08.08.2016 21:35, Adil wrote: On Monday, 8 August 2016 at 18:29:54 UTC, Adil wrote: [...] One minor addition. I use the Makefile in our CI tool, that inserts auto-increment numbers in place of git hashes. Numbers are a familiar.

Re: How do i convert this Makefile to dub

2016-08-08 Thread Adil via Digitalmars-d-learn
On Monday, 8 August 2016 at 18:29:54 UTC, Adil wrote: I have a Makefile setup that I use to return the latest git tag/commit from within my program. The setup is as below: VERSIONED_LIB = myversion.d && rm -f myversion.d VERSION_STRING ?= $(shell git rev-parse --short HEAD) makeVersion:

How do i convert this Makefile to dub

2016-08-08 Thread Adil via Digitalmars-d-learn
I have a Makefile setup that I use to return the latest git tag/commit from within my program. The setup is as below: VERSIONED_LIB = myversion.d && rm -f myversion.d VERSION_STRING ?= $(shell git rev-parse --short HEAD) makeVersion: echo "module compileConfig; public string

Announcing TinyRedis v2.1.0

2016-06-11 Thread Adil via Digitalmars-d-announce
It's been a while since i announced a TinyRedis release. So here goes. TinyRedis is a fast and simple Redis(http://redis.io) driver for D. It has no dependencies and makes working with Redis trivial. This release brings TinyRedis up-to-date with dmd 2.071. Noteworthy improvements are : -

[OT] A Rust tool for Cross-compilation

2016-05-15 Thread Adil via Digitalmars-d
Found this on Reddit. http://blog.rust-lang.org/2016/05/13/rustup.html Do you think it's possible to have this in D? It's worth reading the article even if we don't plan to build one of our own.

traits getMember gives a deprecation warning

2016-04-26 Thread Adil via Digitalmars-d-learn
I'm using DMD 2.071 and am getting this new deprecation error: source/screener/lib/syntax/semantics.d(42): Deprecation: screener.lib.virtualmachine.functions.object is not visible from module semantics source/screener/lib/syntax/semantics.d(42): Deprecation:

gelfd v1.3.0 - A native library to generate logs in the Graylog Extended Log Format (GELF).

2016-04-12 Thread Adil via Digitalmars-d-announce
GELF (https://www.graylog.org/resources/gelf/) is an "open standard" logging format based on JSON. It is primarily used to pipe messages to Graylog (graylog.org), an open source log management and analysis platform. This small release contains a rewrite of the way chunking was done. It is

Re: Graylog Extended Log Format (GELF) for D

2016-04-11 Thread Adil via Digitalmars-d-announce
On Saturday, 9 April 2016 at 20:06:01 UTC, angel wrote: But what about this ? https://forum.dlang.org/thread/eryphpbznrrovjvxj...@forum.dlang.org What about it?

Graylog Extended Log Format (GELF) for D

2016-04-09 Thread Adil via Digitalmars-d-announce
Announcing 'gelfd' - A small, native D library to generate logs in the Graylog Extended Log Format (GELF). GELF (https://www.graylog.org/resources/gelf/) is an "open standard" logging format based on JSON. It is primarily used to pipe messages to Graylog (graylog.org), an open source log

Re: Let's market D: tell us how you're using it

2016-04-03 Thread Adil via Digitalmars-d
On Sunday, 3 April 2016 at 09:12:05 UTC, Joakim wrote: I though Laeeth had a good suggestion on how to market D a couple months ago, as the current front-page pitch may be too general for some chunk of readers: "A set of 'channels' for different use cases might be helpful. Eg

Re: What is the memory usage of my app?

2015-04-18 Thread Adil via Digitalmars-d-learn
On Friday, 17 April 2015 at 14:50:29 UTC, Márcio Martins wrote: On Friday, 17 April 2015 at 14:49:19 UTC, Márcio Martins wrote: On Thursday, 16 April 2015 at 12:17:24 UTC, Adil wrote: I've written a simple socket-server app that securities (stock market shares) data and allows clients to query

Re: What is the memory usage of my app?

2015-04-17 Thread Adil via Digitalmars-d-learn
On Thursday, 16 April 2015 at 17:13:25 UTC, Laeeth Isharc wrote: Fwiw, I have been working on something similar. Others will have more experience on the GC, but perhaps you might find this interesting. For CSV files, what I found is that parsing is quite slow (and memory intensive). So

Re: What is the memory usage of my app?

2015-04-17 Thread Adil via Digitalmars-d-learn
On Thursday, 16 April 2015 at 20:33:17 UTC, Marc Schütz wrote: On Thursday, 16 April 2015 at 17:13:25 UTC, Laeeth Isharc wrote: For CSV files, what I found is that parsing is quite slow (and memory intensive). If your sure that CSV reading is the culprit, writing a custom parser could help.

What is the memory usage of my app?

2015-04-16 Thread Adil via Digitalmars-d-learn
I've written a simple socket-server app that securities (stock market shares) data and allows clients to query over them. The app starts by loading instrument information from a CSV file into some structs, then listens on a socket responding to queries. It doesn't mutate the data or allocate