• 0 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle
  • You have to realize that popular culture was very tightly controlled and restricted by the Polish communist government at this time. This photo was taken at the Jarocin festival, which was a rare chance to see many bands play that otherwise had no radio play or record contracts and often played styles of music that were viewed with great suspicion by the establishment. Recording these live performances and trading tapes was often the only way people got to hear many of these bands.

    I grew up in a neighboring country during this time, but I wasn’t much into the rock scene then - I was into folk music, which had a similar scene in my country - many folk artists were straight up banned by the government, so it was impossible to hear them on the radio or buy their records, but tape recordings of live performances existed and were traded among the fans. Same of my favorite music from this period only existed in this form. There were even recordings of shows that got shut down by the police mid-set.

    The 80s were a period of economic stagnation in eastern Europe, resulting in a lot of pent up anger and angst in the youth, and at the same time, the establishment was slowly losing its grip on the population. As a result artists were getting increasingly bold in channeling this anger and dissatisfaction, of pushing the boundaries of what was allowed, sometimes crossing them and getting slapped down - but you never knew what could happen at a large gathering of the youth back then - taping was an important tool to document and spread this to the wider population.


  • Most Polish people would disagree. Poland got pretty fucked in ww2, from all sides, but at least they managed to hold on to some of their sovereignty and not be forced to join USSR as a Soviet Republic.

    This partially allowed the democratization movement to form in Poland in the 80s (with Solidarność) and eventually for Poland to get out from under Russia’s boot and join the EU and NATO, and avoid the fate of former Soviet Republics like Belarus and Ukraine.




  • The only fuel you can make from water is hydrogen. The RS-25 engines used on the SLS core stage and the Space Shuttle used liquid hydrogen, as did the J-2 engines on the second and third stage of the Saturn V (but not the first stage, which used RP-1 (kerosene) burning F-1 engine)

    Starship’s Raptor engines use liquid methane however. There are a bunch of tradeoffs between the different fuels, but generally liquid hydrogen is more difficult and expensive to deal with. With low cost reusability being one of the primary objectives of Starship, liquid methane was chosen as the best option. The fact that it can also be manufactured on Mars was also considered, since CO2 is abundant in Martian atmosphere.















  • The first computer I used was a PDP-8 clone, which was a very primitive machine by today’s standards - it only had 4k words of RAM (hand-made magnetic core memory !) - you could actually do simple programming tasks (such as short sequences of code to load software from paper tape) by entering machine code directly into memory by flipping mechanical switches on the front panel of the machine for individual bits (for data and memory addresses)

    You could also write assembly code on paper, and then convert it into machine code by hand, and manually punch the resulting code sequence onto paper tape to then load into the machine (we had a manual paper punching device for this purpose)

    Even with only 4k words of RAM, there were actually multiple assemblers and even compilers and interpreters available for the PDP-8 (FOCAL, FORTRAN, PASCAL, BASIC) - we only had a teletype interface (that printed output on paper), no monitor/terminal, so editing code on the machine itself was challenging, although there was a line editor which you could use, generally to enter programs you wrote on paper beforehand.

    Writing assembly code is not actually the same as writing straight machine code - assemblers actually do provide a very useful layer of abstraction, such as function calls, symbolic addressing, variables, etc. - instead of having to always specify memory locations, you could use names to refer to jump points/loops, variables, functions, etc. - the assembler would then convert those into specific addresses as needed, so a small change of code or data structures wouldn’t require huge manual process of recalculating all the memory locations as a result, it’s all done automatically by the assembler.

    So yeah, writing assembly code is still a lot easier than writing direct machine code - even when assembling by hand, you would generally start with assembly code, and just do the extra work that an assembler would do, but by hand.