Re: UI Library

2022-05-19 Thread Craig Dillabaugh via Digitalmars-d-learn
On Friday, 20 May 2022 at 02:37:48 UTC, harakim wrote: I need to write a piece of software to track and categorize some purchases. It's the kind of thing I could probably write in a couple of hours in C#/Java + html/css/javascript. However, something keeps drawing me to D and as this is a

Re: Google Summer of Code -- An Apology

2022-03-07 Thread Craig Dillabaugh via Digitalmars-d-announce
On Saturday, 5 March 2022 at 01:33:16 UTC, Mike Parker wrote: Several weeks ago, I received an email from Google informing me that the application period for the 2022 Summer of Code was approaching. I made a mental note, then went back to whatever I was in the middle of at the time without

Re: Release md v0.3.1

2021-05-08 Thread Craig Dillabaugh via Digitalmars-d-announce
On Friday, 7 May 2021 at 16:19:21 UTC, lempiji wrote: I have created a tool that executes the code blocks included in Markdown. http://github.com/lempiji/md ``` The syntax of dlang is not affected by indentation, and `import` can be written anywhere, so it was a very simple mechanism to

Re: Bug in std.json or my problem

2020-04-22 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 22 April 2020 at 18:35:49 UTC, CraigDillabaugh wrote: On Wednesday, 22 April 2020 at 18:23:48 UTC, Anonymouse wrote: On Wednesday, 22 April 2020 at 17:48:18 UTC, Craig Dillabaugh wrote: clip File an issue if you have the time, maybe it will get attention. Unreported bugs can

Bug in std.json or my problem

2020-04-22 Thread Craig Dillabaugh via Digitalmars-d-learn
So perhaps I am the only person in the world using std.json, but I was wondering if the following code should work. = import std.json; import std.conv; import std.stdio; struct Person { string name; float income;

Re: How the hell to split multiple delims?

2020-02-15 Thread Craig Dillabaugh via Digitalmars-d-learn
On Saturday, 15 February 2020 at 11:32:42 UTC, AlphaPurned wrote: I've tried 10 different ways with split and splitter, I've used all the stuff that people have said online but nothing works. I always get a template mismatch error. Why is something so easy to do so hard in D? auto toks =

Re: To learn D

2019-07-05 Thread Craig Dillabaugh via Digitalmars-d-learn
On Friday, 5 July 2019 at 12:00:15 UTC, Binarydepth wrote: I've considering learning full D. I remembered that D is not recommended as a first language, So I read time ago. So my question, is learning C and Python a good intro before learning D? TY Ali's book is targeted at beginners (see

Re: The D Programming Language has been accepted as a GSoC 2019 organization

2019-02-27 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 26 February 2019 at 22:34:45 UTC, Seb wrote: Hi all, I have some very exciting news to share. [...] Congratulations on being excepted this year. In addition to the 'free' work for the community this is also a great way to draw in new talent.

Re: a van Emde Boas tree

2019-02-05 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 5 February 2019 at 15:28:04 UTC, Alex wrote: Hi all, my van Emde Boas tree finally reached an announceable state, at version 0.12.0. clip All tickets are welcome of course and will be managed in my spare time. Link?

Re: auto: useful, annoying or bad practice?

2018-05-01 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 30 April 2018 at 21:11:07 UTC, Gerald wrote: I'll freely admit I haven't put a ton of thought into this post (never a good start), however I'm genuinely curious what people's feeling are with regards to the auto keyword. Speaking for myself, I dislike the auto keyword. Some of this

Re: GDB + ddemangle

2018-04-19 Thread Craig Dillabaugh via Digitalmars-d-announce
On Thursday, 19 April 2018 at 12:43:36 UTC, ANtlord wrote: Hello! I've written a piece of glue code that helps to debug D code using GDB. The code glues together GDB and ddmangle. Checkout the link https://github.com/ANtlord/gdb-ddemangle PRs are welcome! Nice work.

Re: GSOC 2018 - no slots for D

2018-02-13 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 13 February 2018 at 13:33:00 UTC, Andrei Alexandrescu wrote: On 02/12/2018 08:20 PM, Jakub Łabaj wrote: https://summerofcode.withgoogle.com/organizations/ Seems like we didn't make it this year :( Is there any feedback from Google when they don't accept an organisation? Do you

Re: Old but interesting link as to the low adoption reason for D

2018-02-12 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 12 February 2018 at 21:42:25 UTC, Bo wrote: https://www.reddit.com/r/ProgrammingLanguages/comments/4etdnc/free_pascal_is_very_super_mega_ultra_underrated/ Ignore the part about Pascal and read the Post by matthieum: [...] Here are some of the comments: [...] This is part of

Re: more OO way to do hex string to bytes conversion

2018-02-06 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 7 February 2018 at 03:25:05 UTC, rikki cattermole wrote: On 06/02/2018 8:46 PM, Craig Dillabaugh wrote: On Tuesday, 6 February 2018 at 18:46:54 UTC, H. S. Teoh wrote: [...] clip [...] clip [...] Wouldn't it be more accurate to say OO is not the correct tool for every job

Re: more OO way to do hex string to bytes conversion

2018-02-06 Thread Craig Dillabaugh via Digitalmars-d-learn
On Tuesday, 6 February 2018 at 18:46:54 UTC, H. S. Teoh wrote: On Tue, Feb 06, 2018 at 06:33:02PM +, Ralph Doncaster via Digitalmars-d-learn wrote: clip OO is outdated. D uses the range-based idiom with UFCS for chaining operations in a way that doesn't require you to write loops

Re: Best SQL library to use with local desktop app

2018-01-03 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 3 January 2018 at 21:12:54 UTC, wakhshti wrote: On Wednesday, 3 January 2018 at 16:38:27 UTC, Craig Dillabaugh wrote: On Wednesday, 3 January 2018 at 12:14:19 UTC, wakhshti wrote: clip this is main.d content: import std.stdio; import sqlite; void main(string[] args){

Re: Best SQL library to use with local desktop app

2018-01-03 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 3 January 2018 at 12:14:19 UTC, wakhshti wrote: what is best (SQLite?) @small @local @offline database library to use in D? and also what about a simple GUI library ? (once there was a library named DFL, but i never could get it to run). I've used sqlite3 library:

Re: GSoC 2018 - Your project ideas

2017-12-11 Thread Craig Dillabaugh via Digitalmars-d-announce
On Monday, 11 December 2017 at 09:14:29 UTC, Martin Tschierschke wrote: On Friday, 8 December 2017 at 06:43:22 UTC, Dmitry Olshansky wrote: On Thursday, 7 December 2017 at 22:26:08 UTC, Bastiaan Veelo wrote: On Tuesday, 5 December 2017 at 18:20:40 UTC, Seb wrote: I am looking forward to

Re: Object oriented programming and interfaces

2017-12-04 Thread Craig Dillabaugh via Digitalmars-d-learn
On Monday, 4 December 2017 at 20:43:27 UTC, Dirk wrote: Hi! I defined an interface: interface Medoid { float distance( Medoid other ); uint id() const @property; } and a class implementing that interface: class Item : Medoid { float distance( Item i ) {...} uint id() const

Re: [OT] Windows dying

2017-11-03 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 3 November 2017 at 18:26:54 UTC, Joakim wrote: On Friday, 3 November 2017 at 18:08:54 UTC, 12345swordy wrote: On Friday, 3 November 2017 at 17:25:26 UTC, Joakim wrote: Most programmers will one day be coding on mobile devices, though I admit I'm in a small, early-adopting minority

Re: Simple web server benchmark - vibe.d is slower than node.js and Go?

2017-11-03 Thread CRAIG DILLABAUGH via Digitalmars-d
On Friday, 3 November 2017 at 18:44:30 UTC, Arun Chandrasekaran wrote: On Monday, 30 October 2017 at 17:23:02 UTC, Daniel Kozak wrote: Maybe this one: clip vibedtest ~master: building configuration "dmd"... Linking... /usr/bin/ld: cannot find -levent /usr/bin/ld: cannot find

Re: OOP Design Pattern examples in D

2017-08-15 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
On Tuesday, 15 August 2017 at 10:38:44 UTC, thinwybk wrote: I created a project on GitHub (https://github.com/fkromer/d-design-patterns) which shall end up containing examples of all common OOP design patterns implemented in D. D beginners should be able to run the examples easily with rdmd.

Re: Help with an algorithm!

2017-06-15 Thread CRAIG DILLABAUGH via Digitalmars-d-learn
On Thursday, 15 June 2017 at 13:41:07 UTC, MGW wrote: On Thursday, 15 June 2017 at 13:16:24 UTC, CRAIG DILLABAUGH wrote: The purpose - search of changes in file system. Sorting is a slow operation as well as hashing. Creation of a tree, is equally in sorting. So far the best result:

Re: Help with an algorithm!

2017-06-15 Thread CRAIG DILLABAUGH via Digitalmars-d-learn
On Thursday, 15 June 2017 at 11:48:54 UTC, Ivan Kazmenko wrote: On Thursday, 15 June 2017 at 06:06:01 UTC, MGW wrote: There are two arrays of string [] mas1, mas2; Size of each about 5M lines. By the size they different, but lines in both match for 95%. It is necessary to find all lines in an

Re: Independent Study at my university using D

2017-03-06 Thread Craig Dillabaugh via Digitalmars-d-announce
On Friday, 3 March 2017 at 19:00:00 UTC, Jeremy DeHaan wrote: Something pretty exciting happened yesterday: I registered for an independent study to build a basic garbage collector in D at my university. This is exciting for me because I really enjoyed the work I did during the last GSoC, so

Re: Why don't you advertise more your language on Quora etc ?

2017-03-01 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 1 March 2017 at 08:12:05 UTC, Nick Sabalausky (Abscissa) wrote: On 02/28/2017 06:29 PM, Jared Jeffries wrote: What's quora? (It's really hard to always keep on top of all the latest tread sites/appz/whatever. It's all so fly-by-night.) Quora is a general Q forum and hang-out

Re: GSoC 2017 Application Rejected

2017-02-10 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
On Friday, 10 February 2017 at 19:37:20 UTC, bachmeier wrote: On Friday, 10 February 2017 at 19:00:54 UTC, CRAIG DILLABAUGH wrote: Hello D Community clip Regards Craig Thanks for your effort. If someone else doesn't like it, well, I guess I don't remember a big competition among

Re: GSoC 2017 Application Rejected

2017-02-10 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
On Friday, 10 February 2017 at 20:21:56 UTC, Joseph Rushton Wakeling wrote: Hi Craig, So sorry to hear that this happened. I know very well from working with you last year how much care and attention you put into GSoC, so I can imagine how you must feel right now. In the circumstances it

GSoC 2017 Application Rejected

2017-02-10 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
Hello D Community Just coming here to inform everyone that our D application for GSoC 2017 was sadly rejected. Unfortunately (for me) it is completely my fault, I failed to fill out one line on one of the three forms that comprised the application. Even more frustrating I went online on

GSoC Needs Mentors

2017-02-06 Thread Craig Dillabaugh via Digitalmars-d
Hi All I want to put out a call for mentors for the 2017 Google Summer of Code. I've heard back from a few of you but still only have about 3 mentors officially confirmed. Perhaps some of the past mentors are assuming that I know you are willing to do it again, but I don't like to put

Re: GSoC Project Idea's Part 2

2017-02-03 Thread CRAIG DILLABAUGH via Digitalmars-d
On Friday, 3 February 2017 at 04:14:58 UTC, rikki cattermole wrote: On 03/02/2017 5:12 PM, Craig Dillabaugh wrote: So the GSoC ideas page is now at least partially complete, you can find it here: https://wiki.dlang.org/GSOC_2017_Ideas In the previous thread some of you (Rikki, Adam) had

GSoC Project Idea's Part 2

2017-02-02 Thread Craig Dillabaugh via Digitalmars-d
So the GSoC ideas page is now at least partially complete, you can find it here: https://wiki.dlang.org/GSOC_2017_Ideas In the previous thread some of you (Rikki, Adam) had suggested some improvements to dub/the code.dlang.org website. Either of you interested in mentoring something around

Re: GSoC 2017 Ideas!

2017-01-24 Thread CRAIG DILLABAUGH via Digitalmars-d
I wanted to ask if anyone knows if there is a way to add links to PDF documents to the Wiki. I want to post some successful past proposals, but the Wiki only seems to want to let me upload a small number of formats, with PDF not being one of them.

Re: GSoC 2017 Ideas!

2017-01-21 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 15 January 2017 at 05:17:10 UTC, Adam D. Ruppe wrote: On Sunday, 15 January 2017 at 04:11:06 UTC, Craig Dillabaugh wrote: I've been trying to find something on this, but haven't yet, but I am not sure if website work would be considered appropriate. The website is still a program,

Re: GSoC 2017 Ideas!

2017-01-14 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 14 January 2017 at 16:20:06 UTC, Adam D. Ruppe wrote: On Saturday, 14 January 2017 at 16:12:43 UTC, Adam D. Ruppe wrote: but sorting by rating in search I'm sorry, that was a run on sentence. The big picture goal I'd like to see is that the package manager, or even a tutorial

Re: GSoC 2017 Ideas!

2017-01-14 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 14 January 2017 at 15:23:19 UTC, rikki cattermole wrote: On 15/01/2017 4:19 AM, Craig Dillabaugh wrote: So the ideas page is up for the 2017 GSoC. Its a bit light on content. Please feel free to use this forum thread to discuss any ideas you might have for appropriate projects.

GSoC 2017 Ideas!

2017-01-14 Thread Craig Dillabaugh via Digitalmars-d
So the ideas page is up for the 2017 GSoC. Its a bit light on content. Please feel free to use this forum thread to discuss any ideas you might have for appropriate projects. https://wiki.dlang.org/GSOC_2017_Ideas Cheers Craig

Re: GSoC 2016 Postmortem

2017-01-13 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
On Friday, 13 January 2017 at 13:12:19 UTC, Mike Parker wrote: Craig Dillabaugh is ramping up for Google Summer of Code 2017. He took some time out to give a report on GSoC 2016 and recommendations for how to improve the process this year. Blog:

Re: D Blog Stats

2017-01-06 Thread Craig Dillabaugh via Digitalmars-d-announce
On Friday, 6 January 2017 at 14:54:45 UTC, Mike Parker wrote: I've always enjoyed reading end-of-the year stats at other blogs. I thought it would be fun to do the same for the D Blog. If you've been curious about which posts visitors are viewing, or which links they're clicking, this post is

Google Summer of Code 2017

2016-12-26 Thread Craig Dillabaugh via Digitalmars-d-announce
I've now created the Google Summer of Code Idea's page for 2017. Its empty at the moment, awaiting all your wonderful ideas: https://wiki.dlang.org/GSOC_2017_Ideas You can edit the page directly, though I may edit any submitted ideas for the sake of consistency, grammar, etc. Also, feel

Please say hello to our third team member: Razvan Nitu

2016-10-21 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
Welcome Razvan.

Re: we push flatbuffers for dlang support, no one to help?

2016-09-23 Thread CRAIG DILLABAUGH via Digitalmars-d
On Friday, 23 September 2016 at 11:08:51 UTC, Brian wrote: the pull request: https://github.com/google/flatbuffers/pull/3856 We are putao's huntstudio! We help D language to develop some component support. but, not have yours support??? Long before they have been submitted, but they have not

Re: consequences of removing semicolons in D like in Python

2016-09-17 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 17 September 2016 at 13:18:24 UTC, eugene wrote: On Saturday, 17 September 2016 at 13:11:50 UTC, Nick Sabalausky wrote: On 09/16/2016 07:00 PM, eugene wrote: Hello everyone, what if to remove semicolons at the end of each line of code in D like in Python? Is it worth it? Not

Re: Why D is not popular enough?

2016-08-30 Thread CRAIG DILLABAUGH via Digitalmars-d
On Tuesday, 30 August 2016 at 14:19:02 UTC, Adam D. Ruppe wrote: On Tuesday, 30 August 2016 at 14:11:56 UTC, Andrei Alexandrescu wrote: Sadly if this doesn't float your boat you're unlikely to enjoy most of what D has to offer. -- Andrei This might be the most wrong statement you have ever

Re: The D Language Foundation is now a tax exempt non-profit organization

2016-08-29 Thread Craig Dillabaugh via Digitalmars-d-announce
On Monday, 29 August 2016 at 17:03:34 UTC, Andrei Alexandrescu wrote: We're happy to report that the D Language Foundation is now a public charity operating under US Internal Revenue Code Section 501(c)(3). The decision is retroactive to September 23, 2015. This has wide-ranging implications,

Re: [OT] Create more debt == earn more

2016-08-02 Thread CRAIG DILLABAUGH via Digitalmars-d
On Tuesday, 2 August 2016 at 08:07:38 UTC, Basile B. wrote: I was thinking about the value of what we do in the life, daily, the jobs, etc I've endend with this conclusion: The more you're able to create debt, the more you'll earn. example, CIO: hudge pay, because your 1000 salaries will

Re: Check of point inside/outside polygon

2016-07-27 Thread CRAIG DILLABAUGH via Digitalmars-d-learn
On Wednesday, 27 July 2016 at 14:56:13 UTC, Suliman wrote: On Wednesday, 27 July 2016 at 12:47:14 UTC, chmike wrote: On Wednesday, 27 July 2016 at 09:39:18 UTC, Suliman wrote: clip Sorry, its my issue I am thinging about polygons, but for me would be enought points. The problem is next. I

Re: Check of point inside/outside polygon

2016-07-27 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 27 July 2016 at 09:39:18 UTC, Suliman wrote: On Wednesday, 27 July 2016 at 08:40:15 UTC, chmike wrote: The algorithm is to draw a horizontal (or vertical) half line starting at your point and count the number of polygon edges crossed by the line. If that number is even, the point

Re: Atila Neves: "C IS NOT MAGICALLY FAST, PART 2"

2016-07-19 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 19 July 2016 at 03:03:38 UTC, deadalnix wrote: On Tuesday, 19 July 2016 at 02:54:37 UTC, Saurabh Das wrote: Posted on Atila's blog yesterday: https://atilanevesoncode.wordpress.com/2016/07/18/c-is-not-magically-fast-part-2/ Where is the part one ?

Re: AA with dynamic array value

2016-07-05 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 6 July 2016 at 02:33:02 UTC, ketmar wrote: On Wednesday, 6 July 2016 at 02:19:47 UTC, Craig Dillabaugh wrote: [...] this is true for any dynamic array, including AAs. until something is added to array, it actually a `null` pointer. i.e. arrays (and AAs) generally consisting of

Re: AA with dynamic array value

2016-07-05 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 6 July 2016 at 02:03:54 UTC, Adam D. Ruppe wrote: On Wednesday, 6 July 2016 at 01:58:31 UTC, Craig Dillabaugh wrote: *(keyvalue) ~ value; // This line fails. That should prolly be ~= instead of ~. Ahh, I was so close. Thank you that seems to do the trick. However,

AA with dynamic array value

2016-07-05 Thread Craig Dillabaugh via Digitalmars-d-learn
How can I create (and update) and associative array where the key is a string, and the value is a dynamic array of integers? For example: void insertValue( int[][string]aa, string key, int value ) { int[]* keyvalue; keyvalue = ( key in aa ); if ( keyvalue !is null ) {

GSoC Summer of Code Update

2016-06-24 Thread Craig Dillabaugh via Digitalmars-d-announce
Just wanted to congratulate our 4 Google Summer of Code students who have now officially all passed their mid-term evaluations. So congrats to Lodovico, Wojciech, Jeremy, and Sebastian for making it this far, and thanks to the mentors Robert, Ilya, Adam and Russel for keeping them on the

Re: Release DUB 1.0.0

2016-06-20 Thread Craig Dillabaugh via Digitalmars-d-announce
On Monday, 20 June 2016 at 15:52:46 UTC, Sönke Ludwig wrote: I'm pleased to announce the release of the first stable version of the DUB package manager. Stable in this case means that the API, the command line interface and the package recipe format will only receive fully backwards compatible

Re: Introducing mach.d, the github repo where I put whatever modules I happen to write

2016-05-25 Thread Craig Dillabaugh via Digitalmars-d-announce
On Wednesday, 25 May 2016 at 20:31:34 UTC, pineapple wrote: clip My focus currently is on developing mach.sdl, a wrapper for SDL2 and OpenGL, since ultimately I'd like to use D primarily for game development. I hope the library proves useful! Hey, have you looked at: http://dgame-dev.de/

Re: Researcher question – what's the point of semicolons and curly braces?

2016-05-03 Thread CRAIG DILLABAUGH via Digitalmars-d
On Tuesday, 3 May 2016 at 04:24:37 UTC, Adam D. Ruppe wrote: On Tuesday, 3 May 2016 at 03:48:09 UTC, Joe Duarte wrote: Would it be difficult to compile the clean version? You realize your bias is showing very strongly in the wording of this question, right? I don't agree the naked version is

Re: Google Summer of Code

2016-04-25 Thread CRAIG DILLABAUGH via Digitalmars-d-announce
On Saturday, 23 April 2016 at 11:18:05 UTC, Joseph Rushton Wakeling wrote: On Friday, 22 April 2016 at 22:43:43 UTC, CraigDillabaugh wrote: Sebastian Wilzbach Science for D - a non-uniform RNG For obvious reasons, I'm particularly interested in this one. Do I take it right that

Re: DConf 2016 offical presentation template

2016-04-21 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 22 April 2016 at 01:53:02 UTC, Adam D. Ruppe wrote: On Friday, 22 April 2016 at 00:35:21 UTC, Mithun Hunsur wrote: supporting the presentation rather than _being_ the presentation). Powerpoints have a bad habit of damaging presentations rather than supporting them... I hate

Re: The day before DConf 2016

2016-04-08 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 7 April 2016 at 18:13:16 UTC, Mike Parker wrote: I'm flying in to Berlin late on May 2nd. I'll be staying at the Hotel Ibis, slated to be the "unofficial hangout place" according to the DConf site. I'm curious who else will be in the area on the 3rd. I'm usually an explorer when I

Re: Issue with 2.071: Regression or valid error?

2016-04-06 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 6 April 2016 at 19:01:58 UTC, Craig Dillabaugh wrote: On Wednesday, 6 April 2016 at 15:10:45 UTC, Andre wrote: clip Not so up to date on D's OOP stuff, but don't you want create() to be protected, not private. You can typically access a private method through a base class,

Re: Issue with 2.071: Regression or valid error?

2016-04-06 Thread Craig Dillabaugh via Digitalmars-d-learn
On Wednesday, 6 April 2016 at 15:10:45 UTC, Andre wrote: Hi, With 2.071 following coding does not compile anymore and somehow I feel it should compile. The issue is with line "cat.create();". Cat is a sub type of Animal. Animal "owns" method create and I want to call the method create

Re: debugger blues

2016-03-25 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 25 March 2016 at 08:14:15 UTC, Iain Buclaw wrote: clip * a pony Of all points above, this is one that can actually be arranged. No joke! I've got a Border Collie I could throw in to the mix too if that would be helpful.

Re: GSoC 2016

2016-03-21 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 21 March 2016 at 21:12:30 UTC, Jacob Carlborg wrote: On 2016-03-21 14:54, Craig Dillabaugh wrote: Jacob Carlborg ... if you are reading this would you be able to lend a hand in advising on the proposals? I believe these projects a mostly related to C => D conversion tools. Maybe

Re: GSoC 2016

2016-03-21 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 20 March 2016 at 15:03:16 UTC, Russel Winder wrote: Due to unforseen circumstances, I am well behind dealing wit GSoC email, an I doubt I will beable to get on top of it till Thursday. There are at least five peopl I should be having conversations with but I fear it is unlikely to

Re: GSOC 16 - Flatbuffer support or Protocol Buffer Support for D Language.

2016-03-19 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 19 March 2016 at 07:51:34 UTC, Joakim wrote: On Saturday, 19 March 2016 at 06:18:06 UTC, Rajat Kumar wrote: Hello. I am Rajat Kumar, a junior year university student from India. I have working experiences in languages like C,C++ and Python. I am really really interested in

Re: Potential GSoC project - GC improvements

2016-03-18 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 15 March 2016 at 01:34:07 UTC, Jeremy DeHaan wrote: I haven't had power for a couple of days, but it looks like the discussion has gone along pretty ok. After reading everything, I think I'm inclined to agree with Adam and the main focus of my proposal will be a precise GC (or as

Re: Pitching D to academia

2016-03-09 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 9 March 2016 at 16:12:08 UTC, Michael wrote: On Sunday, 6 March 2016 at 08:40:17 UTC, Ola Fosheim Grøstad wrote: On Sunday, 6 March 2016 at 07:38:01 UTC, Ali Çehreli wrote: Motivated by Dmitry's "Pitching D to a gang of Gophers" thread, how about pitching it to a gang of

Re: std.xml2 (collecting features)

2016-03-07 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 6 March 2016 at 11:46:00 UTC, Robert burner Schadek wrote: On Saturday, 5 March 2016 at 15:20:12 UTC, Craig Dillabaugh wrote: Robert, we have had some student interest in GSOC for XML. Would you be interested in mentoring a student to work with you on this. Craig Of course

Re: std.xml2 (collecting features)

2016-03-05 Thread Craig Dillabaugh via Digitalmars-d
On Sunday, 3 May 2015 at 17:39:48 UTC, Robert burner Schadek wrote: std.xml has been considered not up to specs nearly 3 years now. Time to build a successor. I currently plan the following featues for it: - SAX and DOM parser - in-situ / slicing parsing when possible (forward range?) -

Re: I guess this is good GSOC 2016 news?

2016-03-04 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 29 February 2016 at 21:33:47 UTC, Wyatt wrote: On Monday, 29 February 2016 at 21:22:44 UTC, Jonas Drewsen wrote: https://summerofcode.withgoogle.com/organizations/?sp-category=languages Yes, that IS great news! Though it doesn't seem to say how many slots were given? Craig, any

Re: GSoC Next Steps

2016-03-03 Thread Craig Dillabaugh via Digitalmars-d
Haven't yet found email addresses for a few mentors (if you are available this year): Iain Buclaw Jacob Ovrum Also, there is still time to sign up if you are a potential mentor. For those of you interested in mentoring, the following is a good (and short) read on how students should be

Re: GSoC Next Steps

2016-03-02 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 2 March 2016 at 17:27:47 UTC, Alex Herrmann wrote: On Wednesday, 2 March 2016 at 00:29:27 UTC, CraigDillabaugh wrote: Craig I just had time to see the results today, congratulations on the approval into GSOC! Very exciting time as a student who enjoys programming in D.

Re: GSoC 2016 - D Foundation was accepted!

2016-03-01 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 1 March 2016 at 05:13:44 UTC, Jeremy DeHaan wrote: On Tuesday, 1 March 2016 at 03:21:14 UTC, mate wrote: On Tuesday, 1 March 2016 at 01:55:09 UTC, Jeremy DeHaan wrote: Hello everyone! I didn't see mention of this yet, but earlier today Google released their list of accepted

Re: Pseudo-random numbers in [0, n), covering all numbers in n steps?

2016-02-26 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 26 February 2016 at 15:21:08 UTC, Nicholas Wilson wrote: On Friday, 26 February 2016 at 15:17:16 UTC, Craig Dillabaugh wrote: On Friday, 26 February 2016 at 15:15:11 UTC, Nicholas Wilson wrote: On Friday, 26 February 2016 at 14:59:43 UTC, Andrei Alexandrescu wrote: On 02/25/2016

Re: Pseudo-random numbers in [0, n), covering all numbers in n steps?

2016-02-26 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 26 February 2016 at 15:15:11 UTC, Nicholas Wilson wrote: On Friday, 26 February 2016 at 14:59:43 UTC, Andrei Alexandrescu wrote: On 02/25/2016 06:46 PM, Nicholas Wilson wrote: The technical name for the property of distribution you describe is k-Dimensional Equidistribution (in

Re: std.xml2 (collecting features)

2016-02-24 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 23 February 2016 at 12:46:38 UTC, Dmitry wrote: On Tuesday, 23 February 2016 at 11:22:23 UTC, Joakim wrote: Then write a good XML extraction-only library and dub it. I see no reason to include this in Phobos You won't be able to sleep if it will be in Phobos? I use XML and I don't

Re: Google Summer of Code 2016 Only A Few Hours Left

2016-02-19 Thread Craig Dillabaugh via Digitalmars-d-announce
On Friday, 19 February 2016 at 21:10:45 UTC, Dave wrote: On Friday, 19 February 2016 at 17:03:57 UTC, Craig Dillabaugh wrote: [...] D is a fantastic efficient and fast replacement of Python which even has great plotting and other analysis features as ggplotd! To gain traction in numerical

Re: Google Summer of Code 2016 Only A Few Hours Left

2016-02-19 Thread Craig Dillabaugh via Digitalmars-d-announce
On Friday, 19 February 2016 at 20:08:43 UTC, Alex Herrmann wrote: On Friday, 19 February 2016 at 17:03:57 UTC, Craig Dillabaugh wrote: The GSOC deadline is Feb 19th 19:00 UTC (or 2 PM Wawa time) so any last ideas for the Idea's page are welcome. Our application is completed, but changes can

Re: std.xml2 (collecting features)

2016-02-18 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 18 February 2016 at 10:18:18 UTC, Robert burner Schadek wrote: On Thursday, 18 February 2016 at 04:34:13 UTC, Alex Vincent wrote: I'm looking for a status update. DUB doesn't seem to have many options posted. I was thinking about starting a SAXParser implementation. I'm

Re: GSoC Deadline Friday

2016-02-17 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 16 February 2016 at 15:26:11 UTC, Andrei Alexandrescu wrote: On 2/16/16 8:46 AM, Craig Dillabaugh wrote: The Google Summer of Code deadline is this Friday. I would like confirmation from the following individuals if they can mentor GSOC this summer. Iain Buclaw Bruno Medeiros

Re: GSoC Deadline Friday

2016-02-16 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 16 February 2016 at 15:39:15 UTC, Adam D. Ruppe wrote: On Tuesday, 16 February 2016 at 13:46:16 UTC, Craig Dillabaugh wrote: And as backup mentors Adam D. Ruppe My time has been extremely limited lately... if it is anything more than answering some quick emails/irc chats every

Re: GSoC Deadline Friday

2016-02-16 Thread Craig Dillabaugh via Digitalmars-d-announce
On Tuesday, 16 February 2016 at 15:26:11 UTC, Andrei Alexandrescu wrote: On 2/16/16 8:46 AM, Craig Dillabaugh wrote: [...] You may want to scrape the email addresses of these folks and send them email directly. -- Andrei Good idea, I will try and hunt some of them down.

Re: Google Summer of Code 2016

2016-02-16 Thread Craig Dillabaugh via Digitalmars-d
On Tuesday, 16 February 2016 at 11:20:13 UTC, Johannes Pfau wrote: Am Tue, 16 Feb 2016 00:28:29 + schrieb Craig Dillabaugh : clip I'd suggest posting this to D.announce, people often don't read these old threads. Done! Thanks for the suggestion.

GSoC Deadline Friday

2016-02-16 Thread Craig Dillabaugh via Digitalmars-d-announce
The Google Summer of Code deadline is this Friday. I would like confirmation from the following individuals if they can mentor GSOC this summer. Iain Buclaw Bruno Medeiros Martin Nowak (and as backup Admin) Jacob Ovrum And as backup mentors Adam D. Ruppe Dmitry Olshansky I know for some

Re: Google Summer of Code 2016

2016-02-15 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 10 February 2016 at 03:28:55 UTC, Craig Dillabaugh wrote: clip I would like confirmation from the following individuals if they can mentor GSOC this summer. Iain Buclaw Bruno Medeiros Martin Nowak (and as backup Admin) Jacob Ovrum And as backup mentors Adam D. Ruppe Dmitry

Re: Can I get more opinions on increasing the logo size on the site please

2016-02-10 Thread Craig Dillabaugh via Digitalmars-d
On Wednesday, 10 February 2016 at 21:44:54 UTC, anonymous wrote: On 10.02.2016 22:37, CraigDillabaugh wrote: I know I can take the logo from the website and blow it up, but it is pretty small and enlarging it so much will result in a pretty awful looking image. It's an SVG file, so

Re: Google Summer of Code 2016

2016-02-09 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 18 January 2016 at 16:16:01 UTC, Craig Dillabaugh wrote: On Thursday, 31 December 2015 at 23:58:32 UTC, Craig Dillabaugh wrote: The deadline for the Google Summer of Code, 2016 is February 19th. Which means we have about a month and a half to put something together. For the time

Re: Google Summer of Code 2016

2016-02-06 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 20:46:59 UTC, Tavi wrote: On Friday, 15 January 2016 at 16:06:00 UTC, Craig Dillabaugh wrote: On Friday, 15 January 2016 at 15:11:39 UTC, Tavi wrote: On Thursday, 14 January 2016 at 18:56:21 UTC, Craig Dillabaugh wrote: Deadline is getting closer, any new project

Re: Proposal: Database Engine for D

2016-02-06 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 31 December 2015 at 17:14:55 UTC, Piotrek wrote: The goal of this post is to measure the craziness of an idea to embed a database engine into the D language ;) I think about a database engine which would meet my three main requirements: - integrated with D (ranges) - ACID

Re: Proposal: Database Engine for D

2016-02-06 Thread Craig Dillabaugh via Digitalmars-d
On Saturday, 6 February 2016 at 13:33:34 UTC, Craig Dillabaugh wrote: clip I've scanned this thread, but haven't seen if any 'decisions' have been more, or if it is just more of the usual have been more => have been made

Re: Google Summer of Code 2016

2016-02-03 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 28 January 2016 at 13:57:06 UTC, Rikki Cattermole wrote: On 29/01/16 2:53 AM, Craig Dillabaugh wrote: [...] I have a c phase 1-3 implemented in D. I would be willing to give up the source if I keep the rights (but code can be open just not an open source license). Could be used

Re: Google Summer of Code 2016

2016-02-02 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 03:33:23 UTC, Andrei Alexandrescu wrote: On 01/14/2016 01:56 PM, Craig Dillabaugh wrote: Deadline is getting closer, any new project ideas are welcome. Starting to get some contact from students now. A few quick ideas: * Bringing a parser generator library into

Re: Google Summer of Code 2016

2016-01-28 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 28 January 2016 at 15:20:12 UTC, Dicebot wrote: On Thursday, 28 January 2016 at 13:53:30 UTC, Craig Dillabaugh wrote: Would there be any interest in a project to automate binding generation from C files (or perhaps even a full conversion tool)? This could be done either as a new

Re: Google Summer of Code 2016

2016-01-28 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 28 January 2016 at 22:26:44 UTC, Russel Winder wrote: On Thu, 2016-01-28 at 22:01 +0100, Jacob Carlborg via Digitalmars-d wrote: On 2016-01-28 14:53, Craig Dillabaugh wrote: > Jacob, are you sure you don't want to Mentor?  It seems like > you > are > involved in all the

Re: Google Summer of Code 2016

2016-01-28 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 31 December 2015 at 23:58:32 UTC, Craig Dillabaugh wrote: The deadline for the Google Summer of Code, 2016 is February 19th. Which means we have about a month and a half to put something together. For the time being I've recycled last years projects (with one dropped so far):

Re: Pre-alpha D language online tour

2016-01-25 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 25 January 2016 at 18:17:09 UTC, André wrote: Hi, Inspired by the Go online language tour (https://tour.golang.org/) and the great experience it gave me learning the language I started a similar project for D some weeks ago. It's currently in a very pre-alpha state but I wanted

Re: Pre-alpha D language online tour

2016-01-25 Thread Craig Dillabaugh via Digitalmars-d
On Monday, 25 January 2016 at 18:17:09 UTC, André wrote: Hi, Inspired by the Go online language tour (https://tour.golang.org/) and the great experience it gave me learning the language I started a similar project for D some weeks ago. It's currently in a very pre-alpha state but I wanted

Re: Google Summer of Code 2016

2016-01-18 Thread Craig Dillabaugh via Digitalmars-d
On Thursday, 31 December 2015 at 23:58:32 UTC, Craig Dillabaugh wrote: The deadline for the Google Summer of Code, 2016 is February 19th. Which means we have about a month and a half to put something together. For the time being I've recycled last years projects (with one dropped so far):

Re: Google Summer of Code 2016

2016-01-15 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 10:02:14 UTC, Marc Schütz wrote: On Friday, 15 January 2016 at 03:33:23 UTC, Andrei Alexandrescu wrote: A few quick ideas: * Bringing a parser generator library into phobos, either based on pegged or independent * SQL parser, binder, validator * Anything

Re: Google Summer of Code 2016

2016-01-15 Thread Craig Dillabaugh via Digitalmars-d
On Friday, 15 January 2016 at 13:43:07 UTC, Andrei Alexandrescu wrote: On 01/15/2016 08:11 AM, Marc Schütz wrote: On Friday, 15 January 2016 at 12:36:32 UTC, Andrei Alexandrescu wrote: On 1/15/16 6:58 AM, Craig Dillabaugh wrote: On Friday, 15 January 2016 at 10:02:14 UTC, Marc Schütz wrote:

  1   2   3   >