About Copyright Trolling

#CopyrightTrolling falls under #phishing with images posted on the Internet, for example to amuse people, keeping the originals for future mass compensation claims all over the planet including France by betting with computer magic on the ignorance, the clumsiness and the negligence of people, more than the malevolence, including of the courts. This kind of thing is more of a "coup monté" by abuse than a scam.

This method, very stringed up and crafty, the widespread use of which has only just begun, would have been thought up in the years 2000 to 2010, shortly before the current craze for animated GIFs and Memes to which many people have become accustomed, whereas photos of animals and cats were taking off, even before the appearance of large social networks which have, so to speak, replaced the scattered discussion forums by offering software interfaces that are more beautiful, more advanced, more ergonomic, more efficient and more standardized that run on increasingly powerful server farms to support the number of connections and the amount of data.

  Compilation d'articles sur le Copyright Trolling

Size: 464.6 KiB
Upload: 12 November 2022
Update: 15 November 2022
Last download: 23 April 2024
Total downloads: 536

Continue reading »


Release of Hebrew Words 3


New business card 2022

New double-sided business card 2022 with images of:

  • Red clover saving my life from a birth in 1973 immunocompromised (requires immunoglobulins) and infected but strong in bones and organs.
  • Vulgar heather partially saving me from the villains who are wrong to want since 1984 to make me suffer and die prematurely since my early childhood for what they do and they don't do because they have the wrong target and means.

New double-sided business card 2022 with images of:

  • Red clover saving my life from a birth in 1973 immunocompromised and infected but strong in bones and organs.
  • Vulgar heather saving me from the villains who are wrong to want since 1984 to make me suffer and die prematurely since my early childhood for what they do and by what they don't do because they have the wrong target and means.


Next Techno Composition Preview (2021​.​06)

Composed and arranged in June 2021 using:

  • Renoise Tracker 3
  • AAS Ultra Analog VA-3 All Packs
  • Native instruments Kontakt 6, SuperCharger GT, Replika XT, Raum, Flair, Choral, Phasis
  • Toontrack EZdrummer MetalHeads and EZmix 2
  • Tone2 AkustiX
  • Blue Cat Audio TripleEQ 4 Free

Libre image from Pixabay

License Creative Commons Attribution-NonCommercial-ShareAlike 4.0

BandCamp

SoundCloud

Continue reading »


Is everything an object in .NET and C#?

In .NET and C# all is object.

Simply said.

Even a value type, a struct, an interface and an enum.

One can not approve, but the point is that everything is object, except pointers/references, and literals from binary files, even CPU optimized primitive types, since it is the OOP Theory as well as the. NET specifications and therefore the facts.

Continue reading »


What are classes and interfaces in C#?

Interfaces are to make an abstraction, an archetype, of the abstraction, the classes, of the reality, the objects.

Interfaces are to specify contract terms without providing implementation provided by classes.

Continue reading »


What is polymorphism in OOP?

Polymorphism in OOP Theory is the ability to:

  • Invoke an operation on an instance of a specialized type by only knowing its generalized type while calling the method of the specialized type and not that of the generalized type: this is dynamic polymorphism.
  • Define several methods having the save name but having differents parameters: this is static polymorphism.

The first if the historical definition and the most important.

Continue reading »


What is encapsulation in OOP?

Encapsulation in OOP Theory is the process to mask some properties and operations in the class that will become inaccessible from the exterior: these are only internal things and behaviours like a digestive system.

It's a compartmentalization.

Continue reading »


What is abstraction in OOP?

Abstraction in OOP Theory consists in retaining only the relevant aspects of a real world object for a specific problem.

Thus we talk about abstraction of the reality.

It's a reduction.

Continue reading »


How to improve your knowledge of C#

Study the code of software you like that you can found for example on CodeProject, GitHub, GitLab, SourceForge, etc.

Try to make similar software and adapt them, without plagiarizing outside of personal learning, like a notepad, a calculator, a file explorer, a bank manager... or a game.

Write code, don't stop to write.

And above all, read and re-read books.

Personally, I like Wrox (Wiley) books, they are very good: do not hesitate to read even old books if newer version not available.

Online course are great too, but they don't replace books and source code or professional training.

To be able to understand advanced and in depth subjects related to programming and the nature of computers, we must go to Assembly, not only IL, but native Assembly and machine code.

Continue reading »