D is our last hope

Paulo Pinto pjmlp at progtools.org
Fri Dec 8 12:14:36 UTC 2023


On Friday, 8 December 2023 at 11:35:15 UTC, ryuukk_ wrote:
> And seems like Carmack was mentioned
>
> He also left because of this "software" industry, that doesn't 
> understand what the hell they are supposed to be doing, the 
> industry where managers love to promote and reward idiocracy
>
> https://www.theverge.com/2022/12/16/23513622/john-carmack-leaving-meta-virtual-reality-oculus-cto

Nowadays using Python, a deeply OOP based language, and the king 
of AI research.

```
Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC 
v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more 
information.
>>> type(int)
<class 'type'>
>>> int.__bases__
(<class 'object'>,)
>>> dir(int)
['__abs__', '__add__', '__and__', '__bool__', '__ceil__', 
'__class__', '__delattr__', '__dir__', '__divmod__', '__doc__', 
'__eq__', '__float__', '__floor__', '__floordiv__', '__format__', 
'__ge__', '__getattribute__', '__getnewargs__', '__gt__', 
'__hash__', '__index__', '__init__', '__init_subclass__', 
'__int__', '__invert__', '__le__', '__lshift__', '__lt__', 
'__mod__', '__mul__', '__ne__', '__neg__', '__new__', '__or__', 
'__pos__', '__pow__', '__radd__', '__rand__', '__rdivmod__', 
'__reduce__', '__reduce_ex__', '__repr__', '__rfloordiv__', 
'__rlshift__', '__rmod__', '__rmul__', '__ror__', '__round__', 
'__rpow__', '__rrshift__', '__rshift__', '__rsub__', 
'__rtruediv__', '__rxor__', '__setattr__', '__sizeof__', 
'__str__', '__sub__', '__subclasshook__', '__truediv__', 
'__trunc__', '__xor__', 'as_integer_ratio', 'bit_length', 
'conjugate', 'denominator', 'from_bytes', 'imag', 'numerator', 
'real', 'to_bytes']
```


More information about the Digitalmars-d mailing list