Saturday, June 2, 2018

Digest for comp.programming.threads@googlegroups.com - 10 updates in 10 topics

Sky89 <Sky89@sky68.com>: Jun 01 09:18PM -0400

Hello..
 
 
Why Choose C# over Java?
 
I have not talked about C# compared to Java, here it is:
 
"C# is simply changing and evolving faster than Java. Java has the
disadvantage of coming first and carries the inherent problems of being
a pioneer. C# came second and is much more agile at adapting to the
current needs of developers.
 
Because Java is inferior to C# and other programming languages, Izenda's
business intelligence platform is not available for Java. For more
information on how you can use our tools to boost your company's
success, contact us today!"
 
 
Read more here:
 
https://www.izenda.com/blog/why-choose-c-over-java/
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 08:24PM -0400

Hello..
 
 
Oracle to stop providing a free Java (JDK) with Long Term Support (LTS)
 
Read more here:
 
https://react-etc.net/entry/oracle-to-stop-providing-a-free-java-jdk-with-long-term-support-lts
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 07:48PM -0400

Hello....
 
 
About the reality of islamism..
 
 
Islamism like the one of ISIS or Al Qaida say that the majority
of the populations in the muslim countries are muslims, but i think that
they are not correct to say so, because look for example at the results
of the 2016 elections of Morocco where the islamists has won:
 
The participation rate was only 43%, illustrating the disinterest of
many Moroccans, especially young people, for ballot boxes.
 
An Islamist group, Justice and Charity (Forbidden but Tolerated), which
called for a boycott, said the rate was "inflated" and said it did not
exceed 26%.
 
and the PJD has won only 125 deputies.. so i think since there
is a disinterest of the majority of Moroccans, especially young people,
for ballot boxes, and since the islamists has only won a fraction of
the participation rate that is 43%, so i think that
Morocco can "not" be called a muslim country, since i think the majority
are not muslim in Morocco and this is the same for many muslim countries.
 
Read more here:
 
https://translate.google.com/translate?hl=en&sl=auto&tl=en&u=https%3A%2F%2Fwww.la-croix.com%2FMonde%2FMaroc-islamistes-remportent-legislatives-2016-10-08-1300794816
 
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 05:54PM -0400

Hello..
 
 
Read again, i correct a typo:
 
About C++ and Delphi and ADA
 
As you know i have been programming with Delphi and with C++(i have
implemented many of my scalable algorithms in them) and
i am looking also at ADA and Rust, and what i have discovered
is that C++ is more weakly typed even with the SafeInt library that
i have presented to you here:
 
https://github.com/dcleblanc/SafeInt
 
For example you can still assign a type of char to an int type
in C++ and C and C++ and C allow also to assign two structs with some
different types in each one of them that can be assigned ! and this is
not allowed in Delphi and ADA for reliability reasons , because two
structs means two different "types" for Delphi and ADA, Delphi and ADA
don't even allow to assign two types of records(that means structs in
C++) that have the same elements with the same types ! but C++ and C
allow it.. so this is why i will stop from using C++ because C++ is less
reliable than ADA or Delphi in this strict-type safety, you can even use
"variants" that are implemented smartly in Delphi to enhance strict-type
safety(and thus reliability) in Delphi as i have showed you like the
following:
 
--
 
program test;
 
uses VARIANTS,SYSUTILS;
 
var f:double;
a:integer;
 
 
 
FUNCTION ASSIGN(a,B:VARIANT):VARIANT;
 
begin
 
IF VARTYPE(A)=VARTYPE(B) THEN
BEGIN
A:=B;
RESULT:=A;
END
ELSE RAISE EXCEPTION.CREATE('ASSIGNEMENT NOT OK');
 
 
end;
 
begin
 
a:=2;
 
f:=a;
 
A:=ASSIGN(F,A);
 
 
end.
--
 
 
Here is the Vartype function:
 
http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/Variants_VarType.html
 
 
 
 
So i will stop coding in C++ and i will continu to code in Delphi
and i will also code in Java and Rust.
 
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 05:45PM -0400

Hello...
 
 
About C++ and Delphi and ADA
 
As you know i have been programming with Delphi and with C++(i have
implemented many of my scalable algorithms in them) and
i am looking also at ADA and Rust, and what i have discovered
is that C++ is more weakly typed even with the SafeInt library that
i have presented to you here:
 
https://github.com/dcleblanc/SafeInt
 
For example you can still assign a type of char to an int type
in C++ and C and C++ and C allow also to assign two structs with some
different types in each one of them that can be assigned ! and this is
not allowed in Delphi and ADA for reliability reasons , because two
structs means two different "types" for Delphi and ADA, Delphi and ADA
doesn't even allow to assign two types of records(that means structs in
C++) that have the same elements with the same types ! but C++ and C
allow it.. so this is why i will stop from using C++ because C++ is less
reliable than ADA or Delphi in this strict-type safety, you can even use
"variants" that are implemented smartly in Delphi to enhance strict-type
safety(and thus reliability) in Delphi as i have showed you like the
following:
 
--
 
program test;
 
uses VARIANTS,SYSUTILS;
 
var f:double;
a:integer;
 
 
 
FUNCTION ASSIGN(a,B:VARIANT):VARIANT;
 
begin
 
IF VARTYPE(A)=VARTYPE(B) THEN
BEGIN
A:=B;
RESULT:=A;
END
ELSE RAISE EXCEPTION.CREATE('ASSIGNEMENT NOT OK');
 
 
end;
 
begin
 
a:=2;
 
f:=a;
 
A:=ASSIGN(F,A);
 
 
end.
--
 
 
Here is the Vartype function:
 
http://docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/HelpUpdate2/EN/html/delphivclwin32/Variants_VarType.html
 
 
 
 
So i will stop coding in C++ and i will continu to code in Delphi
and i will also code in Java and Rust.
 
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 04:37PM -0400

Hello..
 
 
As you know i am a white arab living in Quebec Canada that has
invented many scalable algorithms and implemented them in
Delphi and FreePascal(in Delphi mode) and C++.. i am
coding in Delphi and C++, and Java is easy for me..
 
Delphi is also great..
 
Look at this following video:
 
Here is other arabs that are coding in Delphi Tokyo
 
Delphi 10.2 Tokyo
 
https://www.youtube.com/watch?v=H2SOd_zIeJw
 
 
 
Thank you,
Amine Moulay Ramdane.,
Sky89 <Sky89@sky68.com>: Jun 01 04:25PM -0400

Hello..
 
 
I am also a Delphi programmer and i have invented many scalable
algorithms and implemented them in Delphi and FreePascal..
 
Please look at the following video about Delphi:
 
Jim McKeeth's "Why I Love Delphi"
 
https://www.youtube.com/watch?v=FlocRgANzaI
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 03:12PM -0400

Hello..
 
 
Why Rust is the future of robotics
 
It is extremely difficult to write safe code. C and C++ use of memory is
unsafe and prone to human error. Many bugs are due to buffer overflow,
data corruption, or read/write in unallocated memory. Not only these are
very hard to detect and debug but many attacks and virus take advantage
of it. The more complex your project become, the harder it is to
maintain it. Said in another way: embedded programmers fear adding extra
functionalities because it could break everything!
 
Rust combines the advantages of low level languages such as C and
C++ — mainly running really blazing fast with a really small
footprint — but with a lot more guarantees that usually come from higher
level languages. It prevents segmentation faults, guarantees thread
safety. And where Rust particularly shines is that it enables all these
safety and abstraction with no additional cost at runtime. Their motto is:
 
Rust: fast, reliable, productive — pick three
 
 
Read more here:
 
https://medium.com/pollenrobotics/why-rust-is-the-future-of-robotics-81d7fb68fe37
 
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 03:04PM -0400

Hello...
 
 
Memory Safety in Rust: A Case Study with C
 
Read more here:
 
http://willcrichton.net/notes/rust-memory-safety/
 
 
Thank you,
Amine Moulay Ramdane.
Sky89 <Sky89@sky68.com>: Jun 01 02:42PM -0400

Hello..
 
 
C++ vs. Ada: Which language is more strongly typed?
 
"The conclusion is that Ada is more strongly typed than C++, but how
much more strongly typed remaines an open question. Both languages
require effort from the developer to make full use of the typing
functionality that is available."
 
Read more here:
 
http://shape-of-code.coding-guidelines.com/2014/04/17/c-vs-ada-which-language-is-more-strongly-typed/
 
 
Thank you,
Amine Moulay Ramdane.
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page.
To unsubscribe from this group and stop receiving emails from it send an email to comp.programming.threads+unsubscribe@googlegroups.com.

No comments: