Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Kleines Rätsel

Empfohlene Antworten

Veröffentlicht

Bin mir nicht sicher, ob das hier der richtige Bereich dafür ist...egal... :floet:

Vielleicht ist es auch ganz einfach, aber probiert euch einfach mal daran.

Was ergibt folgender Code für ein Wort?

e1e1d3d40573127e9ee0480caf1283d6&dd7536794b63bf90eccfd37f9b147d7f&0d61f8370cad1d412f80b84d143e1257&c1d9f50f86825a1a2302ec2449c17196&b9ece18c950afbfa6b0fdbfa4ff731d3&dd7536794b63bf90eccfd37f9b147d7f&dfcf28d0734569a6a693bc8194de62bf

Ist ne Spielerei die mir vorhin eingefallen ist :rolleyes:

(das Leerzeichen "gilt nicht")

Nach jedem '&' kommt ein neuer Buschstabe?

ich würde mal sagen ein wort mit 7 buchstaben wobei mir der ansatz fehlt sind das md5 werte zu den einzelnen buichstaben oder einfach nur eine alphabetische ausfschiebung ich dachte zunächst es wären ienfach nur hexwerte die man in acii umwandeln müsste

Ich Tippe auf MD5-Kodierung der einzelnen Buchstaben ;)

richtig

richtig

nee... RICHTIG

mmmh...hat immerhin länger gedauert als ich dachte :)

aber "RICHTIG" ist richtig..schön..danke fürs mitmachen :valen

(die lösung kam ja "richtig" "unexpected" :D )

  • 3 Wochen später...

<?php

function toMD5($separator, $string)
{
$result = "";
for($i = 0; $i < strlen($string); $i++)
{
$result .= md5(substr($string, $i, 1));
if($i != strlen($string)-1)
{
$result .= $separator;
}
}
return $result;
}

function fromMD5($separator, $string)
{
$stackChars = array();
for($i = 0; $i <= 127; $i++)
{
array_push($stackChars, md5(chr($i)));
}
$einzelne = explode($separator, $string);
$result = "";
for($i = 0; $i < count($einzelne); $i++)
{
$found = false;
for($j = 0; ($j <= 127) && ($found == false); $j++)
{
if($einzelne[$i] == $stackChars[$j])
{
$found = true;
$result .= chr($j);
}
}
}
return $result;
}
?>
[/PHP]

*spontan langeweile*

Nich schön, aber lüppt ;)

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.