[GSoC 2023] Re: Regarding contribution to Commons Numbers Project under GSoC 2023

2023-02-02 Thread Alex Herbert
Hi Manav,

Thanks for your interest in Apache Commons. At present we do not know
if there will be projects with Apache Commons for the GSoC 2023
season. If we do have any projects then we will post them with
appropriate labels on our issue tracking system so they can be easily
found, see for example [1] for the 2022 project in Numbers. The label
will be the same across all Apache projects so it will allow you to
search more than just Commons projects.

In the meantime there are many open tickets in the issue tracking
system for Apache projects. Please take a look and if you find
anything of interest then contact the appropriate project if you wish
to contribute.

Regards,

Alex

[1] 
https://issues.apache.org/jira/browse/NUMBERS-188?jql=project%20%3D%20NUMBERS%20AND%20labels%20%3D%20gsoc2022

On Thu, 2 Feb 2023 at 12:08, Manav P Gondalia  wrote:
>
> Respected Sir/Ma’am,
>
>
>
> My name is Manav P Gondalia, and I am writing to express my interest in 
> participating in Google Summer of Code and contributing to the project 
> "Common Numbers" under Apache Software Foundation. I have been following 
> Apache Software Foundation’s development for several months now and I am 
> impressed with the impact it has made on the open-source community as well as 
> how much it is loved by the developer community.
>
>
>
> I am currently a pre-final year undergraduate student in Computer Science and 
> Engineering (CSE) pursuing my BTech from the Indian Institute of 
> Technology(IIT), Patna and I have a strong background in C++, Data Structures 
> and Algorithms and Competitive Programming and Mathematics. I had secured an 
> All India Rank of 2535 in the prestigious JEE-Advanced examination in 2020. I 
> have a keen interest for Mathematics and Programmin from a very young age.
>
>
>
> I request you to provide me with some starting guides/resources to begin with 
> contributing to this project.
>
>
>
> I am confident that my skills and passion will allow me to make a meaningful 
> contributions.
>
>
>
> Following are the links to my CP and GitHub profiles:
>
> https://codeforces.com/profile/NineFathoms
> https://www.codechef.com/users/ninefathoms
>
> https://atcoder.jp/users/NineFathoms
>
> https://www.hackerrank.com/gondaliamanav
>
> https://github.com/manavgondalia
>
>
> Thank you for your time and consideration.
>
>
>
> Regards,
>
> __
> Manav P Gondalia
> 3rd Year B.Tech. | Department of Computer Science and Engineering(CSE)
> Indian Institute of Technology(IIT), Patna

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Re: [GEOMETRY] Quickhull Implementation

2023-02-02 Thread Andreas Goss
Hello,

thank you very much! I am looking forward to your review comments since
this is my first time trying to contribute to an open source project. I
also noticed a few things with my code, that should be corrected. Some
comments don’t make sense and there shouldn’t be any need for ordering the
edges like i do right now in my current implementation. Also I think the
code should then be refactored to fit better the desired API design. Also a
discussion should be held if face merging is necessary.

Greetings
Andreas

Matt Juntunen  schrieb am Mi. 1. Feb. 2023 um
06:20:

> Hello!
>
> Andreas, thank you for your contribution! It's good to see some work going
> into commons-geometry since I've had to step away recently. Gilles is right
> in that we didn't include the hull module in the 1.0 release because I felt
> like it still needed work. What I'd like to do is remove that module
> completely and pull the convex hull generation directly into the euclidean
> module and hide the implementation algorithm details (as discussed in
> GEOMETRY-144). I've replied to your comment on that Jira issue and I hope
> to take a detailed look at your code over this weekend, if not before. If
> you're interested in seeing the API I was aiming for when working on this,
> my unfinished code is languishing on Github [1].
>
> Regards,
> Matt J
>
> [1]
>
> https://github.com/darkma773r/commons-geometry/blob/quickhull/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/ConvexHull3D.java
>
>
>
>
> On Mon, Jan 30, 2023 at 2:38 AM Andreas Goss 
> wrote:
>
> > Thanks for the quick reply. I need to create an Jira account first for
> > that. I requested an account by writing to priv...@commons.apache.org
> >
> > Kind Regards
> > Andreas
> >
> > Gilles Sadowski  schrieb am Mo. 30. Jan. 2023 um
> > 00:11:
> >
> > > Hello.
> > >
> > > Le dim. 29 janv. 2023 à 19:25, Andreas Goss
> > >  a écrit :
> > > >
> > > > Hello,
> > > >
> > > > I want to contribute a solution for the open Jira task GEOMETRY-110 (
> > > >
> > >
> >
> https://issues.apache.org/jira/projects/GEOMETRY/issues/GEOMETRY-110?filter=allopenissues
> > > ).
> > > > I tried my best to organize the code according to guidelines and at
> > least
> > > > the maven build was succesful. I created a pull-request for the
> github
> > > > clone. If someone could give me a code review and point out areas to
> > > > improve the code or errors i would be very thankful.
> > >
> > > Thank you for tackling this issue.
> > > It was part of a broader discussion about the API around the hull
> > > functionality.
> > > IIRC, the "commons-geometry-hull" module was not included in the first
> > > release of "Commons Geometry" because Matt Juntunen was convinced
> > > that a few enhancements were necessary.  Hopefully, he'll chime in
> order
> > to
> > > make this recollection more precise.
> > >
> > > A general question is whether we want to expose (make "public") classes
> > > that implement the algorithm(s), such as "QuickHull3D".  For example,
> we
> > > could perhaps have (untested and required comments missing...):
> > > ---CUT---
> > > public interface ConvexHull3D extends ConvexHull {
> > >
> > > public enum Generate {
> > > QUICK_HULL((c, p) -> new QuickHull3D(p).generate(c));
> > >
> > > private final BiFunction,
> > > DoubleEquivalence, ConvexHull3D> generator;
> > >
> > > private HullGenerator3D(BiFunction,
> > > DoubleEquivalence, ConvexHull3D> generator) {
> > > this.generator = generator;
> > > }
> > >
> > > public ConvexHull3D from(Collection points,
> > > DoubleEquivalence equivalence) {
> > > return generator.apply(points, equivalence));
> > > }
> > > }
> > >
> > > public Collection getFacets();
> > > }
> > >
> > > private class QuickHull3D {
> > > private final DoubleEquivalence precision;
> > >
> > > QuickHull3D(DoubleEquivalence precision) {
> > > this.precision = precision;
> > > }
> > >
> > > ConvexHull3D generate(Collection points) {
> > > // ...
> > > return new SimpleConvexHull3D(...);
> > > }
> > > }
> > >
> > > private class SimpleConvexHull3D implements ConvexHull3D {
> > > private final List vertices;
> > > private final ConvexVolume region;
> > > private Collection facets;
> > >
> > > SimpleConvexHull3D(...) {
> > > // ...
> > > }
> > >
> > > // ...
> > > }
> > > ---CUT---
> > >
> > > For other concrete (basic) remarks about the code, we can certainly
> > > continue the conversation in comments on the JIRA report.
> > >
> > > Best regards,
> > > Gilles
> > >
> > > -
> > > To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
> > > For additional commands, e-mail: dev-h...@commons.apache.org
> > >
> > >
> >
>


[ANNOUCEMENT] Apache Commons CSV 1.10.0

2023-02-02 Thread Gary Gregory
The Apache Commons team has released Apache Commons CSV 1.10.0.

The Apache Commons CSV library provides a simple interface for reading
and writing CSV files of various types.

Commons CSV requires at least Java 8. This is a feature and bug fix release.

Historical list of changes:
https://commons.apache.org/proper/commons-csv/changes-report.html

For complete information on Apache Commons CSV, including instructions
on how to submit bug reports, patches, or suggestions for improvement,
see the Apache Commons CSV website:

https://commons.apache.org/proper/commons-csv/

Download page: https://commons.apache.org/proper/commons-csv/download_csv.cgi

Have fun!
Gary Gregory
- Apache Commons CSV team

-
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org



Regarding contribution to Commons Numbers Project under GSoC 2023

2023-02-02 Thread Manav P Gondalia
Respected Sir/Ma’am,



My name is Manav P Gondalia, and I am writing to express my interest in 
participating in Google Summer of Code and contributing to the project "Common 
Numbers" under Apache Software Foundation. I have been following Apache 
Software Foundation’s development for several months now and I am impressed 
with the impact it has made on the open-source community as well as how much it 
is loved by the developer community.



I am currently a pre-final year undergraduate student in Computer Science and 
Engineering (CSE) pursuing my BTech from the Indian Institute of 
Technology(IIT), Patna and I have a strong background in C++, Data Structures 
and Algorithms and Competitive Programming and Mathematics. I had secured an 
All India Rank of 2535 in the prestigious JEE-Advanced examination in 2020. I 
have a keen interest for Mathematics and Programmin from a very young age.



I request you to provide me with some starting guides/resources to begin with 
contributing to this project.



I am confident that my skills and passion will allow me to make a meaningful 
contributions.



Following are the links to my CP and GitHub profiles:

https://codeforces.com/profile/NineFathoms
https://www.codechef.com/users/ninefathoms

https://atcoder.jp/users/NineFathoms

https://www.hackerrank.com/gondaliamanav

https://github.com/manavgondalia


Thank you for your time and consideration.



Regards,

__
Manav P Gondalia
3rd Year B.Tech. | Department of Computer Science and Engineering(CSE)
Indian Institute of Technology(IIT), Patna