Skip to content
Snippets Groups Projects
Commit afac9453 authored by Peter Gerwinski's avatar Peter Gerwinski
Browse files

Notizen 7.4.2025, Notizen, Screenshot und Beispiel 14.4.2025

parent c2c249ce
Branches 2023ss
No related tags found
No related merge requests found
Dark Matter:
Was ist mit den Bildern auf der Titelseite?
Nachfragen bei:
cirm@cirm-math.fr
detlef.bremkens@hs-bochum.de
BO-Logo unproblematisch für Hochschulzwecke, Institutslogo und
Qualle sollte für diesen Vortrag auch unproblematisch sein, für
Weitergabe unter CC-Lizenz aber Nachfrage notwendig.
S. 6: Quelle:
https://en.wikipedia.org/wiki/Galaxy_rotation_curve#/media/File:Rotation_curve_of_spiral_galaxy_Messier_33_(Triangulum).png
Steht unter CC-BY-SA 4.0, Autor muss genannt werden: Mario De Leo
Informationen sind gemeinfrei:
https://www.bmbf.de/SharedDocs/Publikationen/DE/1/31518_Urheberrecht_in_der_Wissenschaft.pdf
S.31
Entsprechend für andere CC-Werke
CC-BY-SA und CC-BY kompatibel, CC 3.0 aufwärtskompatibel
Quantisation:
- Auch hier Urheberrecht von Logos klären
- Rechtliche Lage bei Photos?
- S. 2: Schöpfungshöhe möglicherweise nicht gegeben. Durch Prof.
Gerwinski selbst erzeugt? Ansonsten evtl. Urheberrechte durch
Fotographen? Siehe https://www.urheberrecht.de/fotos/
- S. 3: Bildmarke "OnlyBO"
https://register.dpma.de/DPMAregister/marke/register/3020150532029/DE
cassini/home/peter/bo/2025ss/nit/20250414> gcc -Wall -O3 hello.c -o hello
cassini/home/peter/bo/2025ss/nit/20250414> ./hello
Hello, world!
cassini/home/peter/bo/2025ss/nit/20250414> ls -l hello
-rwxr-xr-x 1 peter peter 15952 14. Apr 18:35 hello
cassini/home/peter/bo/2025ss/nit/20250414> cat hello.c
// hello.c - A friendly greeting program
// Copyright (C) 2025 Peter Gerwinski <peter.gerwinski@hs-bochum.de>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <stdio.h>
int main (void)
{
printf ("Hello, world!\n");
return 0;
}
cassini/home/peter/bo/2025ss/nit/20250414> ldd hello
linux-vdso.so.1 (0x00007ffd9edb4000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007efcba6b7000)
/lib64/ld-linux-x86-64.so.2 (0x00007efcba8c5000)
cassini/home/peter/bo/2025ss/nit/20250414>
// hello.c - A friendly greeting program
// Copyright (C) 2025 Peter Gerwinski <peter.gerwinski@hs-bochum.de>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <stdio.h>
int main (void)
{
printf ("Hello, world!\n");
return 0;
}
Chatgpt 4o
Here is a summary of points (a) through (c) in Section 6 of the GNU General
Public License version 3 (GPLv3), which outlines the requirements for
distributing object code:
copyleft.org
a) Distributing Object Code with Source Code
You may distribute object code by providing it on a physical medium (like a CD
or USB drive) along with the corresponding source code on a durable physical
medium commonly used for software interchange.
b) Distributing Object Code with a Written Offer
Alternatively, you can distribute object code on a physical medium accompanied
by a written offer, valid for at least three years (and as long as you offer
spare parts or customer support for that product model), to provide the
corresponding source code. This source code can be provided either on a durable
physical medium or via access to a network server at no charge.
docs.bmc.com
--> Hier fehlt: Die "Written Offer" gilt nicht nur für den Original-Empfänger
des Object Code, sondern für jede*n, der*die im Besitz des Object Codes ist.
c) Noncommercial Occasional Distribution
You may occasionally and noncommercially distribute individual copies of the
object code with a copy of the written offer to provide the corresponding
source code, as described in point (b). This is only permitted if you received
the object code with such an offer.
docs.bmc.com
ChatGPT 4.5:
When distributing software covered by GPL 3.0 in object code (non-source) form,
distributors must also provide access to the corresponding source code. They
can fulfill this obligation in one of three ways:
a) Provide source code on a physical medium alongside the object code.
b) Accompany the object code with a written offer (valid at least three years
or as long as support/spare parts are provided) to supply the source code
upon request, either physically at minimal cost or via free online access.
--> Dasselbe Problem wie oben.
c) Occasionally and noncommercially pass along object code along with an
existing written offer (as described above) to provide the source code. This
option is limited to circumstances where the distributor originally received
the object code with such an offer.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment