previndexinfonext

code guessing, round #52 (completed)

started at ; stage 2 at ; ended at

specification

generate the thue-morse sequence.

results

  1. 👑 LyricLy +5 -1 = 4
    1. olus2000 (was kotnen)
    2. Olivia
    3. luatic
    4. Dolphy
    5. seshoumara
    6. taswelll (was olus2000)
    7. essaie (was TheQwertiest)
    8. kimapr
    9. TheQwertiest (was taswelll)
    10. kotnen (was essaie)
  2. luatic +3 -1 = 2
    1. kotnen
    2. TheQwertiest (was Olivia)
    3. taswelll (was LyricLy)
    4. olus2000 (was Dolphy)
    5. seshoumara
    6. Olivia (was olus2000)
    7. essaie (was TheQwertiest)
    8. kimapr
    9. Dolphy (was taswelll)
    10. LyricLy (was essaie)
  3. TheQwertiest +2 -0 = 2
    1. olus2000 (was kotnen)
    2. essaie (was Olivia)
    3. Olivia (was LyricLy)
    4. LyricLy (was luatic)
    5. kimapr (was Dolphy)
    6. seshoumara
    7. Dolphy (was olus2000)
    8. luatic (was kimapr)
    9. taswelll
    10. kotnen (was essaie)
  4. olus2000 +1 -0 = 1
    1. kotnen
    2. kimapr (was Olivia)
    3. seshoumara (was LyricLy)
    4. taswelll (was luatic)
    5. essaie (was Dolphy)
    6. Olivia (was seshoumara)
    7. LyricLy (was TheQwertiest)
    8. TheQwertiest (was kimapr)
    9. Dolphy (was taswelll)
    10. luatic (was essaie)
  5. essaie +1 -0 = 1
    1. kimapr (was kotnen)
    2. TheQwertiest (was Olivia)
    3. kotnen (was LyricLy)
    4. taswelll (was luatic)
    5. LyricLy (was Dolphy)
    6. seshoumara
    7. luatic (was olus2000)
    8. Dolphy (was TheQwertiest)
    9. olus2000 (was kimapr)
    10. Olivia (was taswelll)
  6. kimapr +2 -2 = 0
    1. taswelll (was kotnen)
    2. olus2000 (was Olivia)
    3. LyricLy
    4. kotnen (was luatic)
    5. luatic (was Dolphy)
    6. seshoumara
    7. essaie (was olus2000)
    8. Dolphy (was TheQwertiest)
    9. Olivia (was taswelll)
    10. TheQwertiest (was essaie)
  7. taswelll +1 -1 = 0
    1. olus2000 (was kotnen)
    2. kotnen (was Olivia)
    3. Olivia (was LyricLy)
    4. LyricLy (was luatic)
    5. TheQwertiest (was Dolphy)
    6. seshoumara
    7. Dolphy (was olus2000)
    8. luatic (was TheQwertiest)
    9. essaie (was kimapr)
    10. kimapr (was essaie)
  8. Dolphy +1 -1 = 0
    1. LyricLy (was kotnen)
    2. taswelll (was Olivia)
    3. Olivia (was LyricLy)
    4. kimapr (was luatic)
    5. seshoumara
    6. essaie (was olus2000)
    7. olus2000 (was TheQwertiest)
    8. luatic (was kimapr)
    9. TheQwertiest (was taswelll)
    10. kotnen (was essaie)
  9. kotnen +1 -2 = -1
    1. taswelll (was Olivia)
    2. TheQwertiest (was LyricLy)
    3. LyricLy (was luatic)
    4. essaie (was Dolphy)
    5. seshoumara
    6. Dolphy (was olus2000)
    7. olus2000 (was TheQwertiest)
    8. luatic (was kimapr)
    9. Olivia (was taswelll)
    10. kimapr (was essaie)
  10. Olivia +0 -1 = -1
    1. taswelll (was kotnen)
    2. Dolphy (was LyricLy)
    3. olus2000 (was luatic)
    4. seshoumara (was Dolphy)
    5. TheQwertiest (was seshoumara)
    6. kotnen (was olus2000)
    7. luatic (was TheQwertiest)
    8. essaie (was kimapr)
    9. kimapr (was taswelll)
    10. LyricLy (was essaie)
  11. seshoumara +0 -8 = -8
    1. LyricLy (was kotnen)
    2. taswelll (was Olivia)
    3. kimapr (was LyricLy)
    4. olus2000 (was luatic)
    5. kotnen (was Dolphy)
    6. essaie (was olus2000)
    7. Dolphy (was TheQwertiest)
    8. TheQwertiest (was kimapr)
    9. luatic (was taswelll)
    10. Olivia (was essaie)

entries

you can download all the entries

entry #1

written by kotnen
submitted at
0 likes

guesses
comments 0

post a comment


be_quiet.sh ASCII text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# to be run by your POSIX compliant SH interpreter of choice
#   Copyright (c) 1712-2024   by Olus

Thue_Morse_sequence='0'
while true; do
  next_segment=''
  for character in $(printf $Thue_Morse_sequence | sed -e 's/\(.\)/\1\n/g'); do
    if [ $character = '0' ]; then
      character='1'
    elif [ $character = '1' ]; then
      character='0'
    fi
    next_segment="$next_segment$character"
  done
  Thue_Morse_sequence="$Thue_Morse_sequence$next_segment"
done

entry #2

written by Olivia
submitted at
2 likes

guesses
comments 0

post a comment


65536.dec ASCII text, with very long lines (19728), with no line terminators
1
826364001314987886132203322675794923743536300882696527646849903482506520783686433671800260787481264954662636509270886328040417859114908020216547617030281451033889231946245212440925835040230863374279411782324475329917720324491991214447835442043643919841099499755811698890889995757106697687406123325097272053075704416665586452665141982864583878121269600564728909075194244961793287281420368564449005042597820743055815611591544313024009711466364166604255449514865767475790037610625600532205339922041858799404337303071278737762939688115229041785198200021636431800403953263616665725137502950750394029137761225300177833954970272335530233420730177267759909158402419423988928189640886214428418589219029673727096739439170706298574313812814940196561933402693224503675117515661494591720645358130168349605274237844343187344786619215597171610606694563421998006159903487614386917315165462086468492084617068741859487800095661398991768474755618226600458833024651825012031929979868740671714348171380904343376545173287423435202023365806527179148754392291964810830664943038161228237448779652928560171282179146646611235976607338435500685703688611637880254550427217749458393469584824414655631976813464817724749414597787179337616461307029999012735787712811617679659825789998556383853641755791376547411228773176868472076460749937566885183017830238097983593804346696422234945811008583734890310412201992324843981661140749753519222064935570620406875471488459307638715873579606214574873459308799701660030318956400972606014330721396450413677505236778965595978627390895764014904703109997979040650973024676754583334966495361935915757372424109594020366331549338345630884395674799552756686273469291528969516304107423591608586516695025468327825603146721093582201873076326157997444916459139560692881940965787678853784248660378694812768729742997650167484176057270474678909020642995958865365495818622839048358453878825357095564116534085448620562300682488839218717554957950342104578776788829328681434075708286266170929657028857236164477158713448360476956942363132163132060339847224697077841826886049293868126958187293783187432869380854507015272312261308909982788404269912569822387570427897745169411286921680865645581550021696837393704955336104863012598924237771511797473116616595101721295807881810946824942883069083522750553712373968821208130497257593372495314896087968864139642298750709446195747051814346542733521435179029569333925034634281994263921837128322242821992195470606886671655524589352086219807225991155431074480246203586715230599057139642633525000446375481671546623581474009388731519517421236289320392440887059505289081631751840514995222066035525318039475674506043201862063866283166542734743379859531718947340928487814710416103253559949936414955334038630388745514859503933512842211432750025239117282616345514314424106543086235898516595336886633838146511975245103230653260319323911661644697316645303502226132280581365186460086664255679081285541122087967343230944057525479133882060984723811365466125028606535902984484281027019197620464814390118809145467270588119249226506314107976138130556801674716889454838431892887143046693365481072079238387053765090685949759782281418036625705664113680010014101198550131181539356527634040722712738768611635662630456783262068316469752589559543299142330646789388781655566482919774544831048517864081944019871663362742797727762498132235203818686204272820769456027101111863857665778891075154203692254151857149952234945448042950883248990925644015385522438003635012779574090936368994498616037034402620974538599945867487403209308229685334216605275944139008552226031549338167970237288615367699057825643589186130277132611843625634862260384966336520090275753485135318423192153140267691965150588553816808461486549093229249792218084915804138257781406121380513917746020981729212777227086251292165148343312577797617500475198593300573191853573729263303671269424574666331949745690746958647987346741512080620306806972107150266147360534465218947054379422589475679549328357305874262221936467450618445926757123702784510349291015497365308896267523789951260289733101069911019323214133468634600369854985178246255534628150046461445912321687844977470741914688409597647408726449282033361064946569083067961254231862145251638840947741675254838188237712779217729163908223481791973555094738586936043956120664547322956484149643076511057296745532190052104148561015386399925822120351186355902661714134105439984085674851660971912708185476503873649708059399916864505026547235571445261864161636928554118065864654397457893216423066594486851666701959438473842428548480907514271211930882684116477676106573172645776475358257598575092403698708732498534106802194229992926338875386354424946152423255929283693270940291179968816804486100907096909244563812923504477348142781600591741968996489184807058912598796195978308783460218816385683978904234585722878457899895108095316625425766334308707455685499630792630529411322948276664181054260708311724229230306103959005574195932433441468352705294988412260340512059733051698071830885900895789470072203171544107919190256877098556035734707729492523365019578757377013322356796457758522711929940092720623698194534823329435556104725088949809082853584746187444768828156908064842313514145732370695820713594582347014947547263556601693193750701781273069617040275163717063555965718467122859813140561279966763486881427745998084594372458891336806166898288606192352531106669533667329315639378542638596729625778164297871765986483596088622382880430031896559296960899867250808873437819170456027701831713244268638692583322357053103682087071213901995737749662248859946658257646368116149722186353991741247225482185935522993208722223923548905367000628677199097864574136500302895557421153135578614533240877095334837536267423221756883832637461299996795110733318980008406393282780440667861578832366510937825487057805962371240746581012402559172558629984294562305770033696971045808501392831373267023714035611508497562627989771396582362286407854142677035294898616684403276546740044713743432715115685856685866232419177031442604171934781187615040718076580507992755908374981197945268620772448994564832993537097859026850995783273636224002799769252928229983969259132934836098465544910246360947551837163420861387177202819819276901435486771195454417827217349058832539327540330453918103820938339179655526167120973613016169334720318192784483813710924484352501265280321793283732727264912608258188003642475986472003861135299627292706513259188840795280735599910853976837549784321818989206240850617935984065217758423328135180291709623811727662555611186054920240953528475684398575166892118599105856341062211742801828303209711214902383888503363622239997941040716046008194971957012893957223299866938748960589314490855798347937823512349234954819750348542549321012587887461582896050652428056577354439341325537883341806262947688589383351804616515392006610635016156854702440892132395242881178727914068372772874772335293193143126131834091943166908497643843790212247171775183081346093779244192770667355325990587018089628223348509290339093587777361642949904909612735449574199135347666949520882365752288778687509048115473736389918659347802684878805868876393897071595737150581058897201285205600407840259446933413502261112267946852333036225920115329440799864166794210343019679354113604109743063187932603501785874973263213041272748678263785602417334311239441854597244760138231927938787123497016228596272944901727163449685194335379430126010494910388431657116096258354820594301731830082696247874017717972267761021736707116944919283460764647046902828465797262384858593069580931524271117305899049443775720649607128039410417178764723793684564813337080678688938529727612460885813054289822477665005716219381634995731938974310733602597820897357733884968021872726322386387104438214908880380112477622888854108251300793857804611246086516006778477068509053686414225865149827223427352828051686277144873968978440345833882116417204685083211503782786864822748027417939082701456050016045042463853604447038960869349199333957799199658781617326234429369138490800702094655066665295801520619213392269097405442336069422814342479371825458079771292911180709303639560240487498478407007245726705748967818882111643971208278073163385528141419458610068609814337859061246004221835900715338531395301896614664657732708750228465772371834821602829906907366906801884253712535842875087847075122837690997967093484952324762152398267345979588675628781590538611824687699176067941930805937615106614688923224379126226936278568311725207270785218149839206592311191069507939058416038892169110934090339572882461336197637107328074059811284530469837798784798537648668913366256764650773643294741193554199730068631617916081069210142063729947999784615692848203457042252146947993108058016631758431112933307659516586151267187994664556503198598389280382360498226128782612010351643464829133371040408650465578649655950862864379752324553208073300867942291994110195838099131149182407395611491776402894625981512045462550438175243409214165274144571033360952703581661645252023511915301543053278532804175619609275842655715598342362575603276326750314903704357016329630003143321131132505854440900874977936130299024303658283940918629845445496473824821656555380484323977692105887454217095318602526755278803334934076867368746847869913519001306967122751021304325660984445419955940560565555195943413649435203172580921840755770011426919289199958285334431409411359198645402506306851602704741742497769798406026314113700981415496821237998512977573090911298835419160125029233686642484116256521017419849569583099052681395396097763330363154992972497520659855566989964511860481096757682309400806349740542743609138665541605590697812212385261010414084311921488409448436269418811113998517138230395369505263748874952104737701894754976346861385544022964030519043014422849159079806000139082703533171214679696645774037065600989143357363174014650675119454272633067504850186934836934742696860183879809636232780140204035569574172424344738329373138679904200028651648985926087721453295434317700694501214886549321649649621555531332468871282637446771710949855227162511691840769970081778711206549129983523909280885208719901106281938929809901213607073074430048640358184126702566208487589424586945234351501403927510297848057478367034810991007553693675684331131031054185297500315953559374621762850311446139732866398995185327657357434039087114491771347584679083567455563307398591366123892978638367226745394527907720155406704846130781558095165479109444981600722810494411666125828783580210165559501187613677158257082381067532213949162389026623842865116011054684947617212562889834841026612043373640697248801175265161893181799736750568729384653455769788056593541709933948894713023013360994755230870485382464736846283458749161185307256461690968077263726206188986866695948572232133158067319897191758775487399716367001360103649317629278051668882901061915825466818741873291123368838042484969453302033482438109694217990139644440576900644324018623290641868872183640877859522294328424179916721659279363433549156403041412325048051387415683581185210671019230097583612835447605889051957100453096888807643829470667655157984233419320167108240255187510113086291397217848394694572951305107266494628885336570249708815627207476110460398687936027517683780099275553291063850909827731741501003221658085206277414163691093692199161073135082713491452669476487356546777645329581628864119043091506764445452999733078158111871064791782985233192858784815137010513881302383162003399864609668579732398307137493574929299685052232215468172688020382094035045872375022342812026985941141236967501513940209199990740739827906730948272822316945568913709497706867645049660802800144908075045762268759267247966181882510317761277314964163005205627578654143295408373348488200688183144410480768318789834502764148879485328956036357006445100401100065616716124497991653566474706446296564214180034654320834148856079282042102306802313453363110582024636194610010800285078234289939927346649377383102641625126322873625606207112853271647756084834683864246514583773676559215751532311016246768295405981326381759942461257401037553502715713702651809941538867229002322236278596747471675230372398342000973146699894754382317556135886990207606296767112428280395031586109728161673818968843704616086440114094860082231116197135117828151657803872748807687878747726210382873908730635752524323711675233665141307340068574356589633633347928282472020402436809260976969570949756749072096396670542074129763149952048257590077885672964906016670051265294932344729907249472458098470296600771385122984730321940219360996270414878223158912368456785301492060743707941689132316414007868148770802216686794055063529009994844877993031023274776215045178650447439700198436189665566174723391448067943719005958290475782023020460368522381402881846691046817071767575259409034112774462380858280874846270221777207958305676473993863103364346281448690481332301330052509191705865052681377464844395665138145462682040312463805346347533190656768249325410164197707702462779029787442644701786890212446215778699888038079690864633627985912266038528605112530934820552091422693051224512931762366434400992012210136617492153902797537127690486801872551579020193827586650322808853727699847574524416949670980389647161633432349103436009651244126861442242814925278113599038842893155698121891407626303357672681089778701116351891619413522967796820819772200411637713447954090355337901277379445018854178869890942472315148688883161286851989130524122834356673051852246736788620588840524658325588073860759634748330464204316058164039042899144471357833744328893328217946145804494067671457753961125247842616950811595941903673835844849795651904825996986152075283442742317991327444600149587909114242886327536847418368163308956299215065492276152676429436259907519067717324108118261483452790687213461079790218971429921677205985626888563910882375245438970472325816143049743297529006080364374868863055088496992412776838528654816133037837747258128756357649461332764714976166387054762671591989185704228284305476236062061602267277604032211569442321849471610012086224144969620999316206202702350664635332814972858155305278526335734774222389381820993894417182285490055025056483682927109848362323800353517825556604844995776993590738915729540118566824443340564195856260992509476833775882239839148351709203738682043787523198508803539786747540434670118353270204168953862668417208396886725023868576872728849156644970710802854397575601647796882421477005262133271041323690412361642906970941245944549759908092886726437612803912224182397854402752440505167277888569390555964412939466362535549227570218954969439874555754908508992242904276745993836865739766308075088127287614114236899997805082662669299382863291899650460418820445292034325087921754357103064930602932766639488377080212068931971923378827919817335250119156619173255960101484324449953962261495493736867764923478492291292717085932013945551069317595929468398935439461748416828340011148135987774350388719357724634802810268015515130269959190450587179699672584408712884342166362714177733640870319746235922491030695375173447210085746394021071927289174872292456620860206237396494334661769523321066101509816428765819766185322442999440201732427832660243671371597532593115859731978931721637084722054446114825988860996516453456248886837986350649552383793539389593743043549822350784445364099709533984967292251504742887825382216705956625923739543285390024827248356284666967745911351942405087032027232859489136787112598389587701664995018825216403758859871046659730050188203206491925941799806817912654343869077888714864470896573725468987160533680561479524177110019405045605175082615929940317946904074267002394136047949608817318828868055345283928805553779878852433142528729576407582010981605320403912792161601189181500365274770639963976572562465142392219531915091529453706511843201306490806545421456698167456876614523233591927055831120070709677149258800298768762776559785391416136967932456359494479230193786285480018018227381602382221927373884500986311848497919011969371998841145592633454925199597895873948972430392603431999533593181932469032082065896754096459630892259408855188874643161874985256544198287711088431423780291738965942030085344701992134662336445826453465986262321804636256401224587708189894738417613057784254839698164086416651588264684586595840974423891319801005915215535676755262879360505947306250446783611724349609817921894629872149695647112811929962674881482366297800151429173249201457887369993594791765932000643851562153023963963456148174227061952272691574669940355413274943534790487491219630029074295089225218429208918164440280263599799617821141692600284457646839866374335115375141334492349604706641427129210453412165264346620870779949627064899403887648729111890405682428278250995306760224420338796803237900832079148804765974103822500667347731925754541351797024079855205038495235663589755413648558401962781832030574566169678593288546078547107907073563102547375407713024395572463283280258013366507112397738787741603217455517863792173163576969015515729040214072748321095423447447666980213376094004028819395940007846993934075618783239803515353835842383663679900491715098268161539957871379638645914117674265742147417074933158386476848168261292024369785152040294073317797760768793764409913203295494561187721140981641572322317556614733332065398739901378562574021457032094092788777243623775803564705187806042227266456878408426992935013154861715526900741129193402830748995892113793382554686148473385830553922316436866845466485107976438839971519946465908832363690301969532718250895123225785869709612976715174790823791562357361378596650684517378296093087481124816763200153590042720663751804840750533769231529069287936774759511669716336866485714814648866347077968366539836421604918645440217748634222468212011052418479193989603221446636417664008631517740835825014989714909791919066257755202021240876191917825972158790853746296884759310686671991389425147080268896835793723320589900806469516135393866368006589483937581511769920614022849861707929490968393640022086530071658229310197861398249616661456231568519291895512575565804020134988498410714480141532793096711859380338894128736170797123840006270883756359920165648464933835912090139865998640992072771101609842965837982958188255584606864067254838768116991082203618769783667804435659856135916420948804907508879484433157943125723779921350919734294397422125810164166441572930346686000722052126850590194792343676917611011008804854387920436419426513255001370736585600848926357160035477542595056421918764700736972234943907980557610411266310651574723435926567366175412944058615901160609769199268796228723955119322437150109665873389082633526470245302988266568892810263693632589930226039832664873886660271049933009115111653627660584724024590361560286388029868627565407704246698834502353681631547212465648339194103130977622851354823998599396729280975223775239328056332050417338294889236846125615962673657334642500498211075460261968044457895330176232090556222455985166033245335071523076312844345754177650443405831483462641326265460698374092423337560456478929599654895438837677821657971931718692954789974156231632742995687613171833406154019175769401158463581949931202950981045274345207405534524322739410577138110730797220408230596941895008148748293891327280706313991803015009114639771258019220861560585444777786942308083269575957066991006584494133806398330879849695969736586288337396104643662051159154024823744450989083853975230341689235991818673300968799645204779658381818676185826103436368580400887422101613941482809047634198370533936900581863437596064266145279491942174405816863192520741253742383274745352482789163472559426338149513090682482134797389606859749907186061569796373066482137769239849930746696093947439448585151555069940149741185558037820163127187425900080558055959448205888283104375373993267250987058626467206399617430

entry #3

written by LyricLy
submitted at
2 likes

guesses
comments 15
jan Anto ¶

this message cannot be further anonymized as its content is non-specific and very general


LyricLy *known at the time as jan Lonto replying to jan Anto ¶

pardon


jan Anto replying to LyricLy ¶

our efforts to pen down "baba" were immense but it appears that all outside forces were not in our favor


LyricLy *known at the time as jan Lonto replying to jan Anto ¶

can slashes be used within comments


jan Anto replying to LyricLy ¶

let's find out together, shall we?


seventeen beekeepers replying to jan Anto ¶

here have some slashes ///////// and also some funny slashes \\\\


seventeen beekeepers replying to seventeen beekeepers ¶

i think it consumed my newline and funny slashes


LyricLy replying to seventeen beekeepers ¶

you gotta do the markdown two-space newline


jan Anto replying to seventeen beekeepers ¶

im brimming with bees absolutely packed filled to the utmost these orderly hymenoptera beasts are breaking free from my bounds


jan Anto replying to LyricLy ¶

ah we were previously unaware that these locales utilized descending indicators; this understanding hits us like a breath of liberty


LyricLy ¶

locales... descending indicators...


jan Anto replying to jan Anto ¶

i was unsure if it would allow me to retain the fragment of my colon


jan Anto ¶

i want to express my regret to the writer of the third "the baba o baba-bringer baba provider" for the numerous messages that were sent by jan anto


LyricLy *known at the time as [author of #3] replying to jan Anto ¶

It's ok


jan Anto replying to LyricLy ¶

we appreciate your efforts and they have indeed brought a positive vibe to our day your work has brought about optimism and a sense of joy especially with the baba we wish you success in deciphering programming


post a comment


52level.l data
52level.ld ASCII text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
[tiles]
object009_colour=1,1
object009_image=text_phantom
object009_name=text_phantom
object009_type=2
object009_activecolour=0,1
object003_colour=6,1
object003_name=text_book
object065_activecolour=0,3
object006_colour=2,3
object006_unittype=object
object006_image=burger
object006_name=burger
object011_activecolour=0,3
object004_image=book
object004_name=book
object004_activecolour=0,3
object010_name=text_lonely
object001_tiling=-1
object007_colour=6,1
object010_type=3
object001_image=text_0
object021_image=text_0
object001_name=zero
object006_type=0
object010_unittype=text
object007_image=text_burger
changed_count=1
object008_name=tile
object007_type=0
object007_activecolour=2,3
changed_short=103,000,010,002,008,021,007,001,088,036,097,014,046,044,020,077,004,050,011,025,006,060,065,003,005,113,009,
object021_activecolour=0,3
object008_colour=0,0
object008_unittype=object
object002_type=2
object020_activecolour=0,3
object007_name=text_burger
object008_image=tile
object003_image=text_book
object006_activecolour=0,3
object004_colour=2,3
object008_activecolour=0,3
object001_colour=1,3
object003_activecolour=2,3
object021_name=text_zero
object020_name=text_one
object000_tiling=-1
object010_image=text_lonely
object008_type=0
object002_name=text_auto
object002_layer=20
object000_activecolour=0,3
object000_image=text_1
changed=object103,object000,object010,object002,object008,object021,object007,object001,object088,object036,object097,object014,object046,object044,object020,object077,object004,object050,object011,object025,object006,object060,object065,object003,object005,object113,object009,
object020_image=text_1
object002_activecolour=4,1
object021_colour=0,3
object010_tiling=-1
object004_layer=16
object020_colour=0,3
object000_colour=2,3
object010_layer=20
object002_image=text_auto
object010_colour=2,1
object006_layer=16
object008_layer=4
object010_activecolour=2,2
object000_name=one
object002_colour=4,0
object001_activecolour=0,3
object002_unittype=text

[currobjlist]
27tile=1,5
27pair=-1
27gfy=1
27gfx=5
27name=text_sink
27id=188
26pair=25
26gfy=0
26gfx=5
26goy=2
26object=object044
25pair=26
25gfy=4
25gfx=4
25object=object011
25name=water
26gox=4
25id=202
24tile=0,10
24pair=-1
24gfy=4
24gfx=3
24goy=1
24gox=4
24name=text_eat
19gox=1
14object=object006
15pair=14
22tile=6,5
13gfy=3
11gfx=3
18gox=0
7gfy=2
15goy=1
15tile=8,0
12tile=4,0
8pair=-1
13goy=0
11goy=2
5tile=2,0
3pair=2
15name=text_burger
12pair=13
13object=object004
9goy=2
18id=176
23gfy=4
7id=302
22gfy=4
13id=284
14pair=15
16gfy=3
15gfx=2
22gox=3
4goy=1
10goy=2
10gox=1
19gfx=4
9tile=2,2
21pair=22
9gfy=2
9gfx=2
10gfy=0
12gfx=3
9gox=0
10id=131
12gfy=2
20name=text_lonely
10name=text_and
9id=186
19pair=-1
9name=text_shift
8gfx=1
8object=object088
9pair=-1
17gox=3
11gfy=1
10pair=-1
8id=170
7tile=3,0
8name=text_make
7gox=2
5name=zero
7name=text_auto
15gfy=3
5object=object001
21object=object077
8gfy=2
8tile=5,7
6id=166
6tile=2,9
11pair=-1
6goy=1
8goy=1
6gox=1
25tile=0,1
16gfx=3
12goy=0
13gox=3
5gfy=0
3gox=1
14id=365
12name=text_book
4object=object021
19gfy=2
3gfy=1
5gox=0
4tile=10,1
17name=text_tile
6pair=-1
4gfy=1
13gfx=0
23gfx=2
4gox=0
14goy=1
22id=43
10tile=6,0
2gfy=0
4id=76
1id=165
3tile=9,1
22gfx=1
9object=object025
14name=burger
14gox=3
2gfx=1
3id=4
3goy=0
25gox=4
17goy=2
27goy=3
15object=object007
22pair=21
6gfy=1
5id=75
13tile=5,0
2id=3
14gfy=3
3name=text_one
6name=text_level
19tile=10,0
7object=object002
20tile=11,0
20gfx=4
12object=object003
4pair=5
19id=358
6gfx=2
15id=366
14gfx=1
5goy=1
25goy=2
21name=text_dust
1gfy=0
3gfx=0
18pair=-1
12gox=3
14tile=7,0
4name=text_zero
13pair=12
1gox=0
10gfx=3
7goy=0
3object=object020
16object=object008
21gox=3
23id=192
1object=object036
26tile=9,3
11id=183
1pair=-1
11tile=11,3
18gfy=1
16name=tile
24id=148
18name=text_on
16gox=3
16id=194
16goy=2
17id=195
21goy=3
20pair=-1
16tile=9,0
20object=object010
17object=object014
23name=text_tele
17gfy=0
22goy=3
19name=text_phantom
8gox=2
17pair=16
2name=one
18object=object097
1gfx=0
11gox=2
23gox=4
26id=203
20gfy=3
22object=object065
7pair=-1
18goy=3
11name=text_push
15gox=3
27gox=4
21gfx=0
18tile=4,8
2object=object000
4gfx=1
18gfx=4
5pair=4
12id=285
20goy=3
1name=text_is
13name=book
17gfx=4
7gfx=0
20id=167
6object=object103
22name=dust
23tile=3,4
23pair=-1
16pair=17
19object=object009
2pair=3
1tile=1,3
10object=object005
2gox=1
21id=44
20gox=2
2tile=1,0
24object=object113
11object=object046
1goy=0
5gfx=2
19goy=3
17tile=3,1
23object=object050
26name=text_water
21tile=6,6
21gfy=4
27object=object060
23goy=0
2goy=0

[levels]
levelid=0011

[icons]
16file=
18file=
13root=
14file=
12root=
11root=
16root=
10file=
9root=
19file=
0file=
11file=
14root=
8file=
7root=
6file=
3root=
18root=
15file=
5root=
4file=
4root=
17file=
15root=
3file=
2root=
10root=
12file=
13file=
2file=
19root=
8root=
7file=
1file=
17root=
5file=
0root=
9file=
6root=
1root=

[images]
total=0

[hotbar]
9Y=0
6target=object113
7fixed=0
9fixed=0
6Y=4
8Y=-1
7Y=4
5X=2
4fixed=0
4Y=-1
9target=object008
4X=-1
8fixed=0
4target=object044
3Y=0
3target=object060
2fixed=0
6X=7
2Y=0
saved=1
0target=object036
9X=0
1fixed=0
5fixed=0
1X=-1
3X=0
8X=-1
0fixed=1
8target=object002
2target=object011
6fixed=0
7X=7
0Y=0
5Y=0
3fixed=0
0X=0
5target=object046
7target=object021
1target=
1Y=-1
2X=0

[general]
selectorY=-1
selectorX=-1
disableshake=0
specials=0
unlockcount=0
disableparticles=0
leveltype=0
currobjlist_total=27
levelz=20
localmusic=0
disableruleeffect=0
palette=default.png
customruleword=
levelid=0011
paletteroot=1
paths=0
rhythm=1
particles=
author=You
music=baba
customparent=
levels=0
subtitle=Thue-Morse
name=cg52
52level.png PNG image data, 60 x 48, 8-bit/color RGBA, non-interlaced

entry #4

written by luatic
submitted at
0 likes

guesses
comments 0

post a comment


thuemorseq.hs Unicode text, UTF-8 text
1
2
3
4
5
6
import Data.Bits (popCount, (.&.))
import Data.Function (on)
naive = [0] ++ go [0] where go seq = let inv = map (1-) seq in inv ++ go (seq ++ inv)
parity = go (0 :: Integer) where go i = popCount i .&. 1 : go (succ i)
main = if ((==) `on` take 1000) naive parity then putStrLn "Test passed" else error "Test failed"
-- 🥱

entry #5

written by Dolphy
submitted at
0 likes

guesses
comments 0

post a comment


Entry.java ASCII text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
import java.lang.StringBuilder;

class Entry {
    public static String entry(int n) {
        StringBuilder sb = new StringBuilder();
        
        int len = (int)Math.pow(2, n);
        for(int i = 0; i < len; i++) {
            int popcnt = Integer.bitCount(i);
            if((popcnt & 1) == 0) {
                sb.append('0');
            }
            else {
                sb.append('1');
            }
        }

        return sb.toString();
    }
}

entry #6

written by seshoumara
submitted at
0 likes

guesses
comments 0

post a comment


cg52_thue_morse_seq.sed ASCII text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#!/usr/bin/sed -nrf

s:.*::
:loop
	y:01:10:
	x;G
	s:^\n$:0&:
	s:(\n)(.*):\2\1:p
	s:\n$::;h
/^(.{255}){255}.*$/!b loop
q

entry #7

written by olus2000
submitted at
3 likes

guesses
comments 3
jan Anto ¶

ah it seems like these are just guidelines quite amusing considering ive only skimmed through the initial part


jan Anto replying to jan Anto ¶

the gpt seems quite poor at comprehending my intentions


seventeen beekeepers ¶

chat jiptee


post a comment


code.txt ASCII text, with very long lines (1480)
1
... - .- .-. - / .-- .. - .... / .- / ... .. -. --. .-.. . / .----. ----- .----. --..-- / - .... . -. / .-. . .--. . .- - / - .... . / ..-. --- .-.. .-.. --- .-- .. -. --. / ... - . .--. ... / - --- / --. . - / .- / -... .. --. --. . .-. / .- -. -.. / -... .. --. --. . .-. / .--. .-. . ..-. .. -..- / --- ..-. / - .... . / - .... ..- . -....- -- --- .-. ... . / ... . --.- ..- . -. -.-. . ---... / .---- .-.-.- / -.-. --- .--. -.-- / - .... . / .--. .-. . ..-. .. -..- / -.-- --- ..- / .... .- ...- . / .- .-.. .-. . .- -.. -.-- .-.-.- / ..--- .-.-.- / .-..-. .. -. ...- . .-. - .-..-. / - .... . / -.-. --- .--. -.-- ---... / .-. . .--. .-.. .- -.-. . / . .- -.-. .... / .----. ----- .----. / .-- .. - .... / .- / .----. .---- .----. / .- -. -.. / . .- -.-. .... / .----. .---- .----. / .-- .. - .... / .- / .----. ----- .----. .-.-.- / ...-- .-.-.- / .- .--. .--. . -. -.. / - .... . / .. -. ...- . .-. - . -.. / -.-. --- .--. -.-- / - --- / - .... . / --- .-. .. --. .. -. .- .-.. / .--. .-. . ..-. .. -..- .-.-.- / - .... .. ... / .. ... / -.-- --- ..- .-. / -. . .-- --..-- / .-.. --- -. --. . .-. / .--. .-. . ..-. .. -..- .-.-.- / - .... .- - .----. ... / .. - -.-.-- / -.-- --- ..- / -.-. .- -. / -.- . . .--. / .-. . .--. . .- - .. -. --. / - .... . ... . / ... - . .--. ... / ..- -. - .. .-.. / -.-- --- ..- / .... .- ...- . / .- ... / -- .- -. -.-- / . .-.. . -- . -. - ... / --- ..-. / - .... . / ... . --.- ..- . -. -.-. . / .- ... / -.-- --- ..- / -. . . -.. .-.-.-

entry #8

written by TheQwertiest
submitted at
1 like

guesses
comments 0

post a comment


morse.thue ASCII text
1
2
3
4
5
6
I .. ... 0::= .. ... 01-..-
-..-1::=10-..-
-..-0::=01-..-
-..- --...::=--..
::=
IIIIIII .. ... 0 --..

entry #9

written by kimapr
submitted at
0 likes

guesses
comments 0

post a comment


LICENSE ASCII text
1
Copyright (C)2024-2077 Amogus. All rights reserved.
README.md ASCII text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# wtf.sh

FAST, SECURE, DOUBLE-ALGORITHMIC thue-morse sequence GENERATOR

Generates roughly 1 digit per 1 second, depending on CPU quality. If you
need more, please contact the developer to purchase a wtf.sh Pro
license.

## Usage

    PATH="$PATH":. wtf.sh
fast_but_sussy.cpp ASCII text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <cstdlib>
#include <iostream>

unsigned long  long   MAYBE_TRUE = 0;
unsigned long long  *  SLIGHTLY_TRUE = &MAYBE_TRUE;
unsigned long long * * MODERATELY_TRUE = &SLIGHTLY_TRUE;
unsigned long long *** VERY_TRUE = &MODERATELY_TRUE;

int main() {

	for (unsigned long long i = 0; (***VERY_TRUE = 42); i++) {

		unsigned long long digitals = 0;

		for (
			unsigned long long digitable = i;
			digitable;
			(digitals += digitable & 1), (digitable >>= 1)
		);

		printf("%llx", digitals & 1);

	}

}
slow_but_reliable.cpp ASCII text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <cstdlib>
#include <iostream>

unsigned long long number_ate(unsigned long long **input, unsigned long long size);

unsigned long long number_ate(unsigned long long **input, unsigned long long size) {

	unsigned long long *number = (unsigned long long*)realloc(*input, sizeof(unsigned long long) * size * 2);
	*input = number;

	for(int i = size, j = 0; i < size * 2; i++, j++) {
		number[i] = !number[j];
		printf("%llx", number[i]);
	}

	return number_ate(input, size * 2);

}

int main() {

	unsigned long long *number = (unsigned long long*)malloc(sizeof(unsigned long long));
	*number = 0;
	printf("%llx", *number);

	number_ate(&number, 1);

}
wtf.sh ASCII text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/bin/sh

dependnecy_satisfied=$({

	if [ -e /dev/null ]; then
		false
	else
		printf "/dev/null required but not found!!\n" >&2
		echo 0
	fi

	if [ -e /dev/stdin ]; then
		false
	else
		printf "/dev/stdin required but not found!!\n" >&2
		echo 0
	fi

	echo '[ <([ ]) ]' |. /dev/stdin 2>/dev/null>/dev/null;
	if [ ! $? -ne 0 ]; then
		false
	else
		printf "<( ) bashism required but not found!!\n" >&2
		echo 0
	fi

	if [ -e /dev/urandom ]; then
		false
	else
		printf "/dev/urandom required but not found!!\n" >&2
		echo 0
	fi

	if command -v openssl >/dev/null 2>&1; then
		false
	else
		printf "OpenSSL required but not found!!\n" >&2
		echo 0
	fi

	if command -v c++ >/dev/null 2>&1; then
		false
	else
		printf "C++ required but not found!!\n" >&2
		echo 0
	fi

	if command -v xxd >/dev/null 2>&1; then
		false
	else
		printf "xxd required but not found!!\n" >&2
		echo 0
	fi

	if command -v head >/dev/null 2>&1; then
		false
	else
		printf "head required but not found!!\n" >&2
		echo 0
	fi

	if command -v cat >/dev/null 2>&1; then
		false
	else
		printf "cat required but not found!!\n" >&2
		echo 0
	fi
	
	if command -v mkdir >/dev/null 2>&1; then
		false
	else
		printf "mkdir required but not found!!\n" >&2
		echo 0
	fi

	if command -v realpath >/dev/null 2>&1; then
		false
	else
		printf "realpath required but not found!!\n" >&2
		echo 0
	fi

	if command -v dirname >/dev/null 2>&1; then
		false
	else
		printf "dirname required but not found!!\n" >&2
		echo 0
	fi

	echo 1

})

if [ "$dependnecy_satisfied" = 1 ]
then
	false
else
	printf "FATAL: unsatisfied. dependnecy\n\n" >&2
	exit 1
fi

cd "$(dirname "$(realpath $0)")"

AMOGUS_ROOT=amoguses_"$(cat /dev/urandom | head -c 8 | xxd -p)"
mkdir -p "$AMOGUS_ROOT"
c++ ./slow_but_reliable.cpp -O0 -o "$AMOGUS_ROOT"/slow_but_reliable
c++ ./fast_but_sussy.cpp -O2 -o "$AMOGUS_ROOT"/fast_but_sussy

random_salt=$(cat /dev/urandom | head -c 8 | xxd -p)

secure_hash() {
	openssl kdf \
		-keylen 32 \
		-kdfopt digest:SHA256 \
		-kdfopt pass:"$(cat /dev/stdin)" \
		-kdfopt salt:$random_salt \
		-kdfopt iter:1000000 PBKDF2
}

desussify() {
	while true
	do
		trusted=$(head -c 1 $1);
		sussy=$(head -c 1 $2);
		trusted_hash=$(printf "%llx" $trusted | secure_hash)
		sussy_hash=$(printf "%llx" $sussy | secure_hash)
		if [ $trusted_hash = $sussy_hash ]
		then
			no_longer_sussy=$sussy
			printf "%llx" $no_longer_sussy;
		else
			printf "FATAL: sussy amogus\n" >&2
			exit 1
		fi
	done
}

{ sleep 0.01 && rm -rf "$AMOGUS_ROOT"; } &
	# sussy race condition: amoguses might get voted out before we run them
	# added a large delay to mitigate.

desussify \
	<("$AMOGUS_ROOT"/slow_but_reliable) \
	<("$AMOGUS_ROOT"/fast_but_sussy)

entry #10

written by taswelll
submitted at
1 like

guesses
comments 7
LyricLy ¶

please state what programming language this is


seventeen beekeepers ¶

i think it's chinese


Olivia ¶

encoding issue, sorry, it's supposed to look like ≤B·ø


owo*known at the time as TheQwertiest ¶

sorry; should have jelly extension


LyricLy ¶

all good. to readers: the file is encoded in Jelly's SBCS


Olivia ¶

aw darn my bluff failed


LyricLy replying to Olivia ¶

Mac OS Roman? really?


post a comment


entr ISO-8859 text, with no line terminators

entry #11

written by essaie
submitted at
1 like

guesses
comments 0

post a comment


thue mors eseq uenc e.py ASCII text, with CRLF line terminators
1
2
3
4
q = '0'

while (q := q + ''.join(["10"[int(c)] for c in q])):
    input("I'm generating larger Thue-Morse words each time you hit enter... unfortunately, I haven't learned how to output them yet :c  Are you sure you want to continue?")