Thursday, February 26, 2026

Python and Anaconda

 

Monday, October 5, 2020

Python makes Anaconda looks a stunted animal.

Python makes Anaconda looks a stunted animal

 

Python is big, long and makes Anaconda looks stunted animal.

It is Linux based and it can be used for gaming.

Its object oriented platform makes Microsoft VB a non entity in programming, if not games.

 

Reproduction

What is Python?

Executive Summary

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.

Often, programmers fall in love with Python because of the increased productivity it provides. Since there is no compilation step, the edit-test-debug cycle is incredibly fast. Debugging Python programs is easy: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an exception. When the program doesn't catch the exception, the interpreter prints a stack trace. A source level debugger allows inspection of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on. The debugger is written in Python itself, testifying to Python's introspective power. On the other hand, often the quickest way to debug a program is to add a few print statements to the source: the fast edit-test-debug cycle makes this simple approach very effective.

Comparing Python to Other Languages

Disclaimer: This essay was written sometime in 1997.
It shows its age. It is retained here merely as a historical artifact. --Guido van Rossum

Python is often compared to other interpreted languages such as Java, JavaScript, Perl, Tcl, or Smalltalk. Comparisons to C++, Common Lisp and Scheme can also be enlightening. In this section I will briefly compare Python to each of these languages. These comparisons concentrate on language issues only. In practice, the choice of a programming language is often dictated by other real-world constraints such as cost, availability, training, and prior investment, or even emotional attachment. Since these aspects are highly variable, it seems a waste of time to consider them much for this comparison.

Java

Python programs are generally expected to run slower than Java programs, but they also take much less time to develop. Python programs are typically 3-5 times shorter than equivalent Java programs. This difference can be attributed to Python's built-in high-level data types and its dynamic typing. For example, a Python programmer wastes no time declaring the types of arguments or variables, and Python's powerful polymorphic list and dictionary types, for which rich syntactic support is built straight into the language, find a use in almost every Python program. Because of the run-time typing, Python's run time must work harder than Java's. For example, when evaluating the expression a+b, it must first inspect the objects a and b to find out their type, which is not known at compile time. It then invokes the appropriate addition operation, which may be an overloaded user-defined method. Java, on the other hand, can perform an efficient integer or floating point addition, but requires variable declarations for a and b, and does not allow overloading of the + operator for instances of user-defined classes.

For these reasons, Python is much better suited as a "glue" language, while Java is better characterized as a low-level implementation language. In fact, the two together make an excellent combination. Components can be developed in Java and combined to form applications in Python; Python can also be used to prototype components until their design can be "hardened" in a Java implementation. To support this type of development, a Python implementation written in Java is under development, which allows calling Python code from Java and vice versa. In this implementation, Python source code is translated to Java bytecode (with help from a run-time library to support Python's dynamic semantics).

Javascript

Python's "object-based" subset is roughly equivalent to JavaScript. Like JavaScript (and unlike Java), Python supports a programming style that uses simple functions and variables without engaging in class definitions. However, for JavaScript, that's all there is. Python, on the other hand, supports writing much larger programs and better code reuse through a true object-oriented programming style, where classes and inheritance play an important role.

Perl

Python and Perl come from a similar background (Unix scripting, which both have long outgrown), and sport many similar features, but have a different philosophy. Perl emphasizes support for common application-oriented tasks, e.g. by having built-in regular expressions, file scanning and report generating features. Python emphasizes support for common programming methodologies such as data structure design and object-oriented programming, and encourages programmers to write readable (and thus maintainable) code by providing an elegant but not overly cryptic notation. As a consequence, Python comes close to Perl but rarely beats it in its original application domain; however Python has an applicability well beyond Perl's niche.

Tcl

Like Python, Tcl is usable as an application extension language, as well as a stand-alone programming language. However, Tcl, which traditionally stores all data as strings, is weak on data structures, and executes typical code much slower than Python. Tcl also lacks features needed for writing large programs, such as modular namespaces. Thus, while a "typical" large application using Tcl usually contains Tcl extensions written in C or C++ that are specific to that application, an equivalent Python application can often be written in "pure Python". Of course, pure Python development is much quicker than having to write and debug a C or C++ component. It has been said that Tcl's one redeeming quality is the Tk toolkit. Python has adopted an interface to Tk as its standard GUI component library.

Tcl 8.0 addresses the speed issuse by providing a bytecode compiler with limited data type support, and adds namespaces. However, it is still a much more cumbersome programming language.

Smalltalk

Perhaps the biggest difference between Python and Smalltalk is Python's more "mainstream" syntax, which gives it a leg up on programmer training. Like Smalltalk, Python has dynamic typing and binding, and everything in Python is an object. However, Python distinguishes built-in object types from user-defined classes, and currently doesn't allow inheritance from built-in types. Smalltalk's standard library of collection data types is more refined, while Python's library has more facilities for dealing with Internet and WWW realities such as email, HTML and FTP.

Python has a different philosophy regarding the development environment and distribution of code. Where Smalltalk traditionally has a monolithic "system image" which comprises both the environment and the user's program, Python stores both standard modules and user modules in individual files which can easily be rearranged or distributed outside the system. One consequence is that there is more than one option for attaching a Graphical User Interface (GUI) to a Python program, since the GUI is not built into the system.

C++

Almost everything said for Java also applies for C++, just more so: where Python code is typically 3-5 times shorter than equivalent Java code, it is often 5-10 times shorter than equivalent C++ code! Anecdotal evidence suggests that one Python programmer can finish in two months what two C++ programmers can't complete in a year. Python shines as a glue language, used to combine components written in C++.

Common Lisp and Scheme

These languages are close to Python in their dynamic semantics, but so different in their approach to syntax that a comparison becomes almost a religious argument: is Lisp's lack of syntax an advantage or a disadvantage? It should be noted that Python has introspective capabilities similar to those of Lisp, and Python programs can construct and execute program fragments on the fly. Usually, real-world properties are decisive: Common Lisp is big (in every sense), and the Scheme world is fragmented between many incompatible versions, where Python has a single, free, compact implementation.

Quotes about Python

Python is used successfully in thousands of real-world business applications around the world, including many large and mission critical systems. Here are some quotes from happy Python users:

YouTube.com

"Python is fast enough for our site and allows us to produce maintainable features in record times, with a minimum of developers," said Cuong Do, Software Architect, YouTube.com.

Industrial Light & Magic

"Python plays a key role in our production pipeline. Without it a project the size of Star Wars: Episode II would have been very difficult to pull off. From crowd rendering to batch processing to compositing, Python binds all things together," said Tommy Burnette, Senior Technical Director, Industrial Light & Magic.

"Python is everywhere at ILM. It's used to extend the capabilities of our applications, as well as providing the glue between them. Every CG image we create has involved Python somewhere in the process," said Philip Peterson, Principal Engineer, Research & Development, Industrial Light & Magic.

Google

"Python has been an important part of Google since the beginning, and remains so as the system grows and evolves. Today dozens of Google engineers use Python, and we're looking for more people with skills in this language." said Peter Norvig, director of search quality at Google, Inc.

Journyx

"Journyx technology, from the source code of our software to the code that maintains our Web site and ASP sites, is entirely based on Python. It increases our speed of development and keeps us several steps ahead of competitors while remaining easy to read and use. It's as high level of a language as you can have without running into functionality problems. I estimate that Python makes our coders 10 times more productive than Java programmers, and 100 times more than C programmers." -- Curt Finch, CEO, Journyx

IronPort

"IronPort email gateway appliances are used by the largest corporations and ISPs in the world," said Mark Peek, Sr. Director of Engineering at IronPort Systems. "Python is a critical ingredient in this high performance system. IronPort's suite of products contains over a million lines of Python. The PSF is an invaluable resource that helps keep Python on the cutting edge."

EVE Online

"Python enabled us to create EVE Online, a massive multiplayer game, in record time. The EVE Online server cluster runs over 50,000 simultaneous players in a shared space simulation, most of which is created in Python. The flexibilities of Python have enabled us to quickly improve the game experience based on player feedback" said Hilmar Veigar Petursson of CCP Games.

HomeGain

"HomeGain maintains its commitment to continual improvement through rapid turnaround of new features and enhancements. Python supports this short time-to-market philosophy with concise, clear syntax and a powerful standard library. New development proceeds rapidly, and maintenance of existing code is straightforward and fast," said Geoff Gerrietts, Software Engineer, HomeGain.com.

Thawte Consulting

"Python makes us extremely productive, and makes maintaining a large and rapidly evolving codebase relatively simple," said Mark Shuttleworth.

University of Maryland

"I have the students learn Python in our undergraduate and graduate Semantic Web courses. Why? Because basically there's nothing else with the flexibility and as many web libraries," said Prof. James A. Hendler.

EZTrip.com

"The travel industry is made up of a myriad supplier data feeds all of which are proprietary in some way and are constantly changing. Python repeatedly has allowed us to access, build and test our in-house communications with hundreds of travel suppliers around the world in a matter of days rather then the months it would have taken using other languages. Since adopting Python 2 years ago, Python has provided us with a measurable productivity gain that allows us to stay competitive in the online travel space," said Michael Engelhart, CTO of EZTrip.com.

RealEstateAgent.com

"Python in conjunction with PHP has repeatedly allowed us to develop fast and proficient applications that permit Real Estate Agent .com to operate with minimal resources. Python is a critical part of our dynamically growing cluster directory of real estate agents." said Gadi Hus, Webmaster, Volico Web Consulting

Firaxis Games

"Like XML, scripting was extremely useful as both a mod tool and an internal development tool. If you don't have any need to expose code and algorithms in a simple and safe way to others, you can argue that providing a scripting language is not worth the effort. However, if you do have that need, as we did, scripting is a no brainer, and it makes complete sense to use a powerful, documented, cross-platform standard such as Python." -- Mustafa Thamer of Firaxis Games, talking about Civilization IV. Quoted on page 18 of the August 2005 Game Developer Magazine.

"Python, like many good technologies, soon spreads virally throughout your development team and finds its way into all sorts of applications and tools. In other words, Python begins to feel like a big hammer and coding tasks look like nails." -- Mustafa Thamer of Firaxis Games, talking about Civilization IV. Quoted on page 18 of the August 2005 Game Developer Magazine.

"We chose to use python because we wanted a well-supported scripting language that could extend our core code. Indeed, we wrote much more code in python than we were expecting, including all in-game screens and the main interface. It was a huge win for the project because writing code in a language with garbage collection simply goes faster than writing code in C++. The fact that users will be able to easily mod the interface is a nice plus as well. The downside of python was that it significantly increased our build times, mostly from linking with Boost."

-- Soren Johnson, lead designer, Civilization IV. Quoted in a Slashdot interview.

Python as a Gaming Console

NikolayIT / CSharpConsoleGames

122

Code Issues Pull requests

Bunch of C# console games

c-sharp snake-game console-game tron-game tetris-game ping-pong-game cars-game

  • Updated

  • C#

kurehajime / pong-command

118

Code Issues Pull requests

Open

Please correct the document.

kurehajime commented

The owner of this repository is a non-native English speaker.
There may be unnatural sentences.
Please correct the README page.

documentation good first issue help wanted

ZacharyPatten / dotnet-console-games

115

Code Issues Pull requests

Open

Linux Compatibility

2

ZacharyPatten commented

Not all the games are compatible out-of-the-box on Linux (they compile but some Console methods are not supported). Need to test and adjust accordingly or document incompatibilities in the individual README files.

bug enhancement good first issue help wanted

rr- / pq-cli

37

Code Issues Pull requests

Progress Quest: the CLI edition

game python console-game

  • Updated

  • Python

kflu / 2048

26

Code Issues Pull requests

My take on the 2048 game in C#. Console version.

game csharp dotnet console-game 2048-game 2048-clone

  • Updated

  • C#

x0st / snake

21

Code Issues Pull requests

A console snake written in C++

snake snake-game console-game console-application

  • Updated

  • C++

philshem / open-spelling-bee

20

Code Issues Pull requests

Open

Documentation: highlighting interesting puzzles

1

philshem commented

In the README.md, it'd be cool to have a list of interesting puzzles that users can choose to play, rather than a random puzzle

python3 play_puzzle.py ABCDEFG

For example, including less-frequently used letters like X,Z,Q, or finding 7-letter pangrams, etc...

(also consider scraping previous NYTimes letters: https://www.shunn.net/bee/?past=1 )

enhancement good first issue help wanted

b01t / shellshock

18

Code Issues Pull requests

A spaceshooter game in Bash

game bash space-shooter console-game

  • Updated

  • Shell

kurehajime / kuzusi

17

Code Issues Pull requests

breakout for terminal

go golang breakout console-game console-application

  • Updated

  • Go

stanislavkozlovski / python_wow

17

Code Issues Pull requests

A console RPG game inspired by the Warcraft universe.

game sqlalchemy python-3-6 python-adventure-game console-game rpg-game warcraft-universe

  • Updated

  • Python

lemunozm / ruscii

15

Code Issues Pull requests

Terminal graphics engine: build your games in the terminal!

game-engine console-game graphics-library terminal-game key-event terminal-graphics-engine

  • Updated

  • Rust

OSSpk / Typing-Tutor

14

Code Issues Pull requests

An interactive graphical Typing Tutor game made using C++ (Console Based) having various difficulty levels and a fun gameplay.

game console cplusplus cpp game-2d text-game console-game console-application open-source-project typing-game typing-skills open-source-game console-app typing-tutor typingtutor typing-trainer fun-game typing-practice console-graphics extendable-game

  • Updated

  • C++

OSSpk / Zelda-Game

13

Code Issues Pull requests

A text based adventure game made using concepts of OOP like Inheritance, Composition, Association, Polymorphism etc

zelda oop composition inheritance object-oriented text-adventure console-game text-based oop-principles polymorphism console-application association graphical-user-interface text-based-adventure object-oriented-programming zelda-like oop-concepts text-based-game object-oriented-programming-project castle-game

  • Updated

  • C++

Kohana55 / ConwaysGameOfLife

11

Code Issues Pull requests

A simple and easy to follow implementation of Conway's Game Of Life.

csharp gameoflife console-game console-application conways-game-of-life

  • Updated

  • C#

sepandhaghighi / penney

10

Code Issues Pull requests

Penney's Game

game python windows macos linux cli fun probability python3 console-game console-application cli-game cli-games penneygame penney-game

  • Updated

  • Python

xovox / RetroCRT

10

Code Issues Pull requests

RetroPie on CRT! RetroTink, JAMMA, SCART & more!

linux emulator raspberry-pi games video emulation retropie composite arcade rgb console-game roms ntsc crt emulationstation retropie-setup jamma jamma-video emulationstation-theme jamma-custom-arcade-project

  • Updated

  • C

gto76 / race

9

Code Issues Pull requests

Terminal racing game

console-game

  • Updated

  • C

guillaC / Shmup

9

Code Issues Pull requests

(not finished) a simple shooter console game

shooter ascii-game console-game shootemup

  • Updated

  • C#

kirpichik / GameOfLife-Curses

9

Code Issues Pull requests

Implementation of the "Game Of Life" using the console library NCurses.

game game-of-life gameoflife ncurses curses console-game game-console

  • Updated

  • C++

avdaredevil / PowerSneks

9

Code Issues Pull requests

Snake game written in PowerShell which uses any windows console (cmd.exe, powershell.exe, even VSCode) and draws out a custom native code based game. Useful and fun game for aspiring programmers and techies.

game powershell snake-game console-game laser-beam

  • Updated

  • PowerShell

Mihaszki / Gravitation

8

Code Issues Pull requests

Gravitation - is a game where you can manipulate your gravity. Written in C# (console app). You can easily add new levels (even without programming knowledge). The game is colorized, but user can disable colors (game will work faster).

game dotnet console-game console-application

  • Updated

  • C#

xemeds / obstruction-game

8

Code Issues Pull requests

Console version of the pen and paper game Obstruction.

game c ascii-art console-game obstruction

  • Updated

  • C

viacheslavpleshkov / unit-factory-ucode-endgame

8

Code Issues Pull requests

A STORY OF ONE FISH

game c fish makefile console-game

  • Updated

  • C

markub3327 / Casino

8

Code Issues Pull requests

Simple Casino game for any platform, .NET Core

game c-sharp visual-studio school-project artificial-intelligence software-engineering console-game asp-net-core casino netcore3 casino-games

  • Updated

  • C#

AyeshaShaukat / Project-Battle-Ships-Game

8

Code Issues Pull requests

This project will help you get more familiar with arrays. You will be recreating the game of battleships. A player will place 5 of their ships on a 10 by 10 grid. The computer player will deploy five ships on the same grid. Once the game starts the player and computer take turns, trying to sink each other's ships by guessing the coordinates to "attack". The game ends when either the player or computer has no ships left. link:https://courses.edx.org/courses/course-v1:Microsoft+DEV277x+1T2018/courseware/76c11a375a0e495e83ab68121566fb12/8f250da826d7405d8fecf99aca3a5e9a/?child=first

game java simple arrays console-game logic-programming procedural-programming

  • Updated

  • Java

Guila767 / SnakeGame

7

Code Issues Pull requests

Snake Game Made in C#

game snake-game console-game

  • Updated

  • C#

RaymiiOrg / c_ookieclicker

7

Code Issues Pull requests

Open

Feature: Add amount to buy after option

langerak commented

It would be nice to have the option to specify the amount of upgrades after the buyting type.

For example, I want to purchase 25 cursors I would like to type k25 instead.

enhancement good first issue

BertilBraun / Console-Pacman

6

Code Issues Pull requests

School project for the end of the first Year

console school-project console-game console-application presentation-website

  • Updated

  • C++

ripred / JavaChess

6

Code Issues Pull requests

24-bit ANSI colored, console-based chess using Java. Optional multi-threaded AI using Minimax with alpha-beta pruning. Fully configurable properties including: ply depth, thread pool size, optional AI time limit, all colors, and more.

java chess console-game configurable alpha-beta-pruning minimax-algorithm multithread console-color

  • Updated

  • Java

kflu / game-of-life-racket

6

Code Issues Pull requests

Game of Life in Racket

game scheme game-of-life racket console-game

  • Updated

  • Racket

Improve this page

Add a description, image, and links to the console-game topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the console-game topic, visit your repo's landing page and select "manage topics."

Learn more


Internet is a Cesspit - Going Digitally Zero

This was posted in December, 2016 but I am stll on the Web of Activities.

Going Digitally Zero

I  decided to Go Zero Digitally (No Internet) last December but found it a daunting task having been an Internet Addict for over 15 years.

I must say it was Education Potential that  led me in that direction but lately it was Intellectual boredom that kept me in the Internet.

Blog activity was the natural transition.

I made it a point to  “post unedited pieces to my friends”  via emails expecting them to make some comments. 

Feedback was good 10 years ago.

Not anymore.

People are getting older and some even becoming sick or paranoid with no Political Wisdom. Electing these paranoid Marxist guys to power was the end result.

But it started declining when I took Politics, Religion and Science by the head and tail. 

I started questioning the rigid dogmas.

I have deleted all political themes except a a few and especilly, those related to pity state of Our Elephants in the Wild.

Mind YOU my original idea was to promote Linux and the site's name is Linux 100. 

I still promote Linux and I have declared 2026 as the Year of LINUX.

When I realized only 1% of the population use Linux (most of them were most likely and probably  were more advanced than me in Linux Environment) I slanted my activity to politics. 

Last of all to satire.

I believe lot did not like that change of character.
 
People want to hear one or their side of the argument or way of thinking.
 
“Yes Men” mentality of politicians is an antithesis to my liking.
 
There is no alternative to “Thinking to Think”  or “Lateral Thinking ” of Professor De Bono’s philosophy.
 
My last post denounced all the institutions of rigidity as a preparation to “Go Digitally Zero”.
 
You may not hear from me in the year 2017.

I am hibernating digitally.

That does not mean I am dead and gone and my email is censored.
 
It only means, I am on full retirement gear, Internet wise.
 
Real reason is when (I am not a criminal, an ordinary guy) I realized, CIA, KGB, FBI, NSA, MI5 are snoozing on everybody’s (not only mine) email and social media activity.

One becoming a part of that clandestine scheme is not healthy for my soul.

If Internet is for the Secret Service, I do not want to be a part of it.

I prefer a “Virtual Cloud” and my clientele is not big enough for such an activity.
 
My guess is millions of ordinary well versed people will join me in no time and would device alternative channels for communication.

The Big Companies have already done it or are setting up their "Virtual Worlds”.

Read the content below which is many (10) years OLD.
 
It has not improved but declined in quality and spirit.

Comment I copied from New York Times, Five years ago.

My writing by accident coincided by good grace.
 
In the course of the volume the Internet is characterized as a cesspool, a porn store, a form of pinkeye, a raunchy fraternity, a graffiti–filled bathroom wall, a haven for sociopaths, and the breeder of online mobs who are no better than “masked Klan members” in their determination to “interfere with victims’ basic rights.”
   
Start with a little citation from Scientific American (Freedom in 2011 as opposed to 10,000 years back in evolution)

Big Caveat:
More freedom does not necessarily equal more happiness.
In fact, more choices may mean more confusion, mistakes, regret, even despair.
 
That is the irony at the heart of Jonathan Franzen’s latest novel Freedom (Farrar, Strauss and Giroux, 2010).

I need to be brief in this essay.

If I do it as a lengthy academic or scientific exercise this piece has little currency in today’s world.

Yes you have the freedom to browse but how do you set about it in the first place?

One must ask a few questions from oneself before the click happy (instead of the trigger happy old world) finger of yours takes over your senses or in this current year 2011, your touch happy finger dictates your impulses.
 
Why I am browsing?

The list can be in the hundreds but one must chop it down to 3 or 4.
   
1. Is it for inspiration? 

That is my first choice.

2. Is it for game? 

Occupy the free time you have in a constructive and enjoyable way.

3. Is it the reflex action? 

A routine you have become a slave of.

Let me explain my first choice for clarity.
 
We are a country which is emerging from a bitter conflict of prehistoric value and still have not got rid of the ancient and vibrant hate philosophy (my creation of a concept – how hate operates and perpetuates hate into all spheres of activity and faculties) and failed to be actively engaged in this present moment of welcome freedom constructively (all sides to the conflict are to be blamed).
 
So as an escape mechanism to avoid internalization of the conflict and forgive and forget philosophy to take root, I used the Internet constructively to promote Linux (Live CDs mainly).
 
Then I scanned the statistics to see only 1% used Linux (it is less than one 1% in this country) in the year 2010. 

Can this 1% have an impact in changing the world?
 
The answer I leave it open for the time being and I want to raise this question again few years later.

I think Linux is taking Giant Steps.

Lot 96% have lost the opportunity offered?

We call it miss the bus

I put my experience first.

The one 1% of Linux enthusiast contributed more than I wished for in the year 2010.

At the year end, I was very happy.

I had ample time to explore new frontiers.

Writing of this piece is the valid endorsement of that fact.
I am inspired in spite of the small percentage points in statistics.


Inspiration is a relative thing, the problem comes when one tries to assess it quantitatively instead of qualitative empowerment.


Even at worse of times, one can achieve the target, if the target is simple and enthusiasm is the driving force.

It is getting lengthy and I am off the target a bit but this preamble is necessary to summarize the plausible approach to resist the Internet's preoccupation and temptations. 

One should have few questions set, before one presses the finger on the Enter Button. 

The questions should be relevant in age, time, place and person. 
 
If the browsing habit does not give correct Yes or No answers to the questions, set out in the first place, it is the onus of the free individual to resit the temptation and switch off the computer.

Without any over reaction.
 
This is not easy and it has to be practiced everyday like meditation till the habit gets into the system code of one’s brain.
 
This has to be done  in early ages and in school.
 
I browsed somewhat restricted sites.

Linux mainly and in this specialized area also there are hackers who invade onee's privacy and install scripts to hack the system.

I detected this about 9 months ago which was a rude surprise to me and alerted the web administrators within hours and it has come back again in the New Year with MoonOS to haunt even the innocent Linux newbies.

Even a veteran can be trapped into deep waters, if one is not guarding one’s temptations with foresight. 

I have not found a Single Tool in the entire Web World (except the advice to parents and users) that would NOT let a child or kid enter into deep water. 

This can be accomplished in a game like manner when one is entering the underworld of Internet.
 
I have some devices thought about and that would work on child friendly and inspirational way.
 
This is not the place to write more about that but to state firmly that it can be done without much a do, if the adults are ready to take leadership in this arena. 

But I should end up with a warning for adult over 55 years (let me say early retirees who are looking for part time jobs or some pre-occupations).

They can be gullible target audience for insinuation and luring to porn sites. 

They are waiting there for you to register at a site and with your e-account (can be used for blackmail, if one is married or is currently engaged). 

Some teenagers are using the same tactics to lure children and bully them, too. 

If an adult get caught I have no sympathy. 

You ought to have been wiser. 

We should not let the Internet destroy some of our unsuspecting kids who are using their natural instinct of exploration to expand their inner world.

I say we should actively develop mechanisms instead of dishing out only warning and advice.
 
Comment, I copied from today’s New York Times.
 
My writing by accident coincided by good grace!
 
In the course of the volume the Internet is characterized as a cesspool, a porn store, a form of pinkeye, a raunchy fraternity, a graffiti–filled bathroom wall, a haven for sociopaths, and the breeder of online mobs who are no better than “masked Klan members” in their determination to “interfere with victims’ basic rights.”
 

Linux Multi Booting

 

Posted on October 3, 2010

New Wave of Linux Multi Booting Capability 

Most of the Linux distributions are making a culpable offense
by not recognizing other Linux distributions that come from various backgrounds. 

In the beginning, the
LiLo had problems with booting other Linux distributions.

Then, came GRUB, it solved most of the booting problems by booting from any partition unlike Windows which has to start from the first sector.

Linux guys have not put this Weakness of Microsoft to light
.

Now is the time to highlight why we should give priority to Microsoft.

It is unfair in legal sense and open market economy
.

It also should learn how to boot from any sector of choice other than Master Boot Record.

Nobody should give the Copyright Inheritance of the first sector
to any Linux Distribution or Microsoft Windows.

It should be with the customer or the user.
.

It is a monopoly
.

Why most of the Computer Wizards did not expose this weakness to light is my grouse.

They only aggravate the situ by recognizing Windows. One does sometimes and most other guys invariably give Microsoft the first place.

This is a culpable mistake Linux developers perpetuated by
not taking the starting block.

Mind you I was a short distant runner in my prime. Once, I get a head start, I never give up, until I touch the tape.

Why give the head start to Microsoft?

I have found only a few distributions doing it right.

They are PCLinux (the new distributions now have a problem not including other file format options – other types of disk formatting including DOS), Mephis, Debian, Suse , Mandriva, Redhat and Fedora.

Redhat had the best GRUB including RAIDs.

Still
SuSe has the best partition tool, even though it restricts itself to 15 partitions.

Why I do not know?

All the other Live and installable CDs I checked had problem recognizing other Linux distributions.

But they invariably recognized Microsoft by default.

Is it fear induced by Microsoft itself or by its global propaganda outlet or is it both?

Why not recognize its sisters and brothers breathing over the neck to have a good head start.

Most pertinent question is why Microsoft cannot see with their eyes open wide, Linux or other distributions and various partition types do exist.

They are totally blind to independence an market forces.

Where is universal  brotherhood?

Where is universal comradeship?

There are two reasons.

1. One is boot loader they use is
LiLo.

2. The other is that they do not write a script.

That is, a copy of the booting sequence in the header files of the root partition.

I used to do that by various devious means.

They all write on the M.B.R while giving priority to Microsoft almost by
default or deceit.

Ubuntu do this, all Ubuntu derivatives including the attractive Mint do this culpable offense.

It is time to wake up and put this right.

Suse recognizes only 15 partitions.

There used to be over 60 partitions those days before the RAID and volumes came into existence.

I used to have at least 8 (2 for windows) distributions bootable on my hard disk barely 80 GB in capacity.

Those days Linux were not fat and heavy and some of them could stay on 2GB partition.

I used to modify boot sector by various means to get all of them running without a problem with GRUB as the Boot Loader.

Now the hard disks are over 300MB or 500MB we must go back to all traditions and have at least 30 partitions recognizable. My current minimum is 30 partitions and at least 6 distributions running. One runs on one partition and the rest in 5 paritions. Each one has its own boot partition. I have stopped manually editing GRUB. REBORN OS has the best GRUB Utility.

Two of Debian GNOME 

BlueStar Star Linux on a single partition. The most beautiful KDE Desktop 

Linux Mint

Neon User

REBORN OS and 6 in total.

Only 320GB capacity a very good Toshiba Hard Disk. I have two additional ntfs3 partition to store Iso Images. The smaller partition for an assortment of PUPPY Linux only two of them Bootable with UEFI.

My current NUC has 0nly 320GB but has 6 distributions running.

Unlike those days instead of Windows I have two of Debian Gnome, BluStar Linux, Reborn OS and Parrot Linux. Parrot OS has some problems with GRUB.

I could have had Gnoppix26 if I had 34 partitions but two large NTFS partitions are there to store Linux images. I have 16 Iso images that include CachyOS and Emmabantus Trixie Edition.

By the way, I could never get GNOPPIX 6 edition. Direct download freezes in the middle of the download. 

I gave up.

Then, in the 32 bit Era, I used to boot Microsoft, Apple Mac ( Redhat 5 Edition) and Open Free BSD as part-timers with Linux preferably my own assembly called God Bless You All (G.B.Y.A).

Thanks to all the guys including Puppy Linux.

I will throw a party.

Even, if the mighty God directs me to the grave for a long rest after the party.

Recovery Is Possible or Impossible and cohabitation is a must in the coffin, for all of us, at the end, the Linux USERS and the other operating system Users.

BSD on a USB

BSD-15 is a Killer Beast.

I mounted BSD 15 from a USB.
It has no live Session.

I wanted to write it on a USB and test it as I do with Linux Distribution.
I was in Slumber for a long while.
Last time I used BSD was in 2020 Coronavirus pandemic.
It ERASED Microsoft dedicated Laptop boot record.
Boot password was unknown.
Chinese guys in Singapore cheated me but I bought it for 35 US dollars.
Not a loss
This was not my first Laptop.
It is working and has Endless OS.
If you want to ERASE a Microsoft Laptop use Free BSD.
 
Endless OS is a another Laptop killer.

It ERASED my hard disc identifying it as an external disk.
I installed it on 32GB USB.
Both were dysfunctional.
 
What a day?

By the way, I only loss was working last copy of Linux Essentials.
I have over 150 copies of this book which the last copy went over 500 pages.
I was padding it up.
I want it to be 400 pages.
It is over 550 now with lot of information on Mini PCs 
Nobody reads a big copy.
It was not intended to be a reference book.

Linux Ranking

 Reproduction

Linux Ranking by Google Trends-Updated
 
Below is a comment made a few years ago by a guy by the name of Johnson. 
I have done some editing, with additional content.
 
1. Normal people use Ubuntu
I agree but one should use the Desktop Version.
It used to support Synaptic Package Manager which they have done away with. Ubuntu use only  SNAP.

2. System Administrators use Ubuntu Server
I have no interest in servers but only desktop use.

3. People use Debian that love apt get but hate Ubuntu.
Debian is my base and it has many versions and I love Gnome desktop. In addition, I begin to love Cinnamon and Mate Desktops.
It has lot of Debian Live DVDs.
It supports both Synaptic Package Manager and the SNAP package system. GDeb is a nice graphic installer, which I discovered by accident.

4. Penetration testing or Kali Linux
mostly +hacker wannabees 
Kali is a blood sucking Goddess in Indian Mythology. Linux guys are not blood suckers.
I do not like the word hackers.
I have never used Kali but prefer Parrot Linux.

5. Windows Refugees
Linux Mint
It is more or less Windows like but much better.
There are two versions, one based on Debian and the other based on Ubuntu. 
It has overtaken Ubuntu by many a mile. It is easy to install, it is stable, and it is possible to perform virtually any task from the desktop without opening the command line. 
Those are the very reasons I do not use it. 
It has gone to Debian for fear of Ubuntu going astray. The latest Linux Mint version based on Debian isLinux Mint Debian Edition (LMDE) 7, code named "Gigi," which is based on Debian 13 "Trixie".
 
6. Arch BTWers
Arch is too, difficult for beginners but lately Endeavour OS, Manjaro, BlueStar Linux, Archman, ArcoLinux, Storm OS and Cachy OS have made inroads in to the Arch’s frugal behaviour of the past. In my belief, it is the distribution which has the most number of derivatives. I love BlueStar Linux which has the most beautiful KDE desktop but one can install other desktops on top of it including Gnome. My latest finding is KIRO Linux which is pretty good.

7. Cool Kids (cool with a k levels of cool) for Fedora. 
I now hate Fedora. It pretends to be glossy and flashy. But Bazzite makes gaming and everyday use smoother and simpler across desktop PCs, handhelds, tablets, and home theatre PCs.

8. Corporate Slaves of Redhat
Redhat is worse than Microsoft Windows.

9.  Cool Kids (cool with c)
Manjaro is Arch based but an excellent distribution. Manjaro has taken the user pain out of Arch Base. It the desktop I recommend for a new user.

10. 40 machine Raspberry Pi cluster owners 
I have no interest in Raspberry Pi. 
Overall utilization is less than 1% and there are better options. While Arduino is a microcontroller board, meaning it is designed for direct control of hardware components and executing specific, repetitive tasks. Runs a compiled "sketch" directly on the hardware, without the overhead of an operating system.
In essence, Arduino is a specialized tool for direct hardware control, while Raspberry Pi is a versatile mini computer capable of a broader range of applications. The best choice depends on the specific requirements and complexity of individual project.

11. People so cool that they live in their own 3D Dimension + Germans
Open Suse
I gave up when milestone editions came into existence. It has now cleared up the dust and Tumbleweed is a good Game distribution. OpenSuSe Tumbleweed is a rolling release that provides the latest software, drivers and gaming related packages.


12. Bestiality porn watchers for Tails.
Useful to carry in a USB stick but it changes its protocols ever so often. I have lost interest in it.
Tails (The Amnesic Incognito Live System) is a portable, live Linux operating system designed to preserve the privacy and anonymity. It runs entirely from a USB drive or DVD, can be used on any computer and automatically routes all internet traffic through the Tor network. Key features include leaving no trace of activity on the host computer and coming with pre-installed security-focused applications, like the Tor Browser. One can explicitly create persistent storage volume.
Parrot OS on a USB in much better and it has its own desktop version. Parrot OS is a Debian based Linux distribution built for cybersecurity operations, with AI powered tools to assist in tasks like penetration testing, vulnerability assessment, and reverse engineering. It acts as a portable, advanced lab for security experts and developers, focusing on user-friendly security and privacy features like AnonSurf for anonymous browsing. Parrot OS integrates AI to enhance human capabilities, enabling AI to handle routine reconnaissance while humans focus on complex analysis. However, AI should augment, not replace, human judgement.

13. Ancient machine owners for Lubuntu.
It lacks in many Linux utilities. Lubuntu is a lightweight Linux distribution based on Ubuntu, known for being fast, user friendly and low on system resources, making it ideal for older or less powerful computers. It uses the LXQt desktop environment and comes with essential pre-installed applications for daily use. While initially focused on being energy efficient, its modern goal is to be a modular distribution that gets out of the way and lets the users uses his or her own computer.

14. People with Nvidia GPUs 
Pop Os is partially commercial and it is trying to penetrate the Gaming Platform but it is failing. Generally speaking, KDE desktop is bulky. Tuxedo and Tuxedo computers have a much better assortment of hardware and Linux implementation. COSMIC is a new desktop environment for Linux developed in Rust by System76, built from the ground up to be efficient, customizable and secure. It features a streamlined, modern UI with built in window tiling and a suite of custom applications like COSMIC Files  and COSMIC Terminal. Key goals include better performance and security through its modular design and Rust based foundation. 
Netrunner and Neptune are much better. 
I used Netrunner since, it supports Synaptic Package Manager but it is stuck with Debian 12, Bookworm edition.
The latest release of Neptune Linux is Neptune OS 9.0 “Maja”. It is based on Debian 13 "Trixie" and features the KDE Plasma 6.3 desktop environment and Linux Kernel 6.12. 

What is Not in the List

1. My favorite is
Puppy Linux which I carry in my pocket when I travel abroad looking for new hardware. If puppy does not boot, I shun buying that hardware. 
 
2. Emmabantus is very good distribution with lot of utilities but it does (Version 5) not want to co-habit with other Linux distributions except Windows, in the same machine.
 
3. About antiX

antiX is a fast, lightweight and easy to install systemd-free linux live CD distribution based on Debian Stable for Intel-AMD x86 compatible systems. antiX offers users the “antiX Magic” in an environment suitable for old and new computers. So don’t throw away that old computer yet! The goal of antiX is to provide a light, but fully functional and flexible free operating system for both newcomers and experienced users of Linux. It should run on most computers, ranging from 256MB old systems with pre-configured swap to the latest powerful boxes. 512MB RAM is the recommended minimum for antiX. Installation to hard drive requires a minimum 7.0GB hard disk size.

antiX can also be used as a fast-booting rescue cd and works extremely well running ‘live’ with or without ‘persistence’ on a usb stick or ‘frugal’ on a hard drive. Customize your own version with our live ‘remaster’ tools or create ‘snapshots’ of an installed system.

At the moment antiX-23.2 “Arditi del Popolo” comes as a full distro (c1.8GB), a base distro (c1.2GB), a core distro (c520MB) and a net distro (c220MB) for 32 bit and 64 bit computers. For those who wish to have total control over the install, use antiX-core or antiX-net and build up. Note that the net version will need an ethernet/wired connection
4. MX Linux is a cooperative venture between the antiX and MX Linux communities. It is a family of operating systems built by users from Debian Stable repositories that are designed to combine elegant and efficient desktops with high stability and solid performance

4. AVL-MXE-23-4 is based on Enlightenment Desktop is a very good Linux distribution to try.            It brings me the nostalgia of the old Enlightenment Desktop Effects. AV Linux uses a customized version of
Enlightenment as its default desktop environment in recent releases like version 23.1, while older versions primarily featured Xfce. The Enlightenment desktop is specifically modified with unique features like a right-side shelf for audio and video application shortcuts to enhance productivity. 
https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/E17_enlightenment_logo_shiny_black_curved.svg/1200px-E17_enlightenment_logo_shiny_black_curved.svg.png
Enlightenment: Recent versions of AV Linux, such as 23.1, have introduced a custom version of the Enlightenment 0.25 desktop environment, which includes custom theming and a specialized shelf for audio/video apps. 
https://upload.wikimedia.org/wikipedia/commons/5/5b/Xfce_logo.svg
Xfce: Xfce was the primary desktop environment in earlier versions of AV Linux and is still offered as an option. It was chosen for its lightweight performance, which was beneficial for media creation tasks
I think, it still promotes Multimedia of AVL Linux. AV Linux has all the Audio and Video packages that is available in Linux. 
It is not the usual Linux environment. 
It has only basic utilities. 
It has three desktop environments, Fluxbox, KDE and Xfce.
Elive: A Debian-based distribution that features a customized version of Enlightenment as its main desktop environment. 
AV Linux: This distribution is specifically curated for content creators and includes Enlightenment as an available desktop option, based on the MX Linux 23.1. 



Universal Linux Distribution

 Posted on October 4, 2011 
Universal Linux Distribution
 
Making Customized Linux Distributions “On the Go” and “In the Cloud

Distributions “On the Go” and “In the Cloud”

The idea I am proposing is not anything original. It is something done before on a trial basis.

At least for the record SuSe has done it by way of SuSe Studio. 
My idea is to support the concept but not necessarily SuSe.

My concept is not bound to one Unix/Linux derivative but Universal. 
It is the concept where all the Linux Utilities could handshake.
If one is a commercial Linux Enterprise like Redhat or SuSe  they cannot enact what I am going to state.

This is the only way we can give our due respect to
Richard Stallman and Linus Torvalds.
This is an extension of FOSS Philosophy and to help Developers who come from various backgrounds to Unite and work as a Powerful Force, specially to save the precious development time.

Like what they did to O.L.P.S, the commercial enterprises like Oracle who has a head start in database warehousing might try to kill this idea.
As a side effect my blog site may be attacked.
The visitors who were less than 24 per day have gone up suddenly and it looks like some zombie type of attack was engineered by somebody  out there but until now it did not materialize.
There are Cyber-terrorist, I cal them, out there.

Concept is simple.
1. Linux Kernel/s are housed in the cloud with on house bug fixing.

2. Live Script is hosted on another cloud with various ways to enhance it versatility.
For example language support for particular language.
It should evolve like the Universal GRUB.

3. X-Windows are housed as cloud utilities from Fluxbox to LXDE to Unity to KDE to Gnome.

4. All repositories need to take the tags out of their distributions (their tagging can be kept in their own clouds) and host all applications in the clouds as package utilities.

A Universal Package Manager (UPM for short) should evolve.

5. Script to reach the above  four (4) on a stepwise manner should be designed.
I call it the plugger.
One can call it the Universal Connector (like the electricity plugs of various countries) and it is virtually wired to the utilities through cloud.

6. Once all the required components are assembled an automated procedure should make a customized CD/DVD for testing on a virtual machine in the cloud.

All stages up to this should be virtualized.

7. Any developer community could then use the product to customize final product if necessary and put it out with a Linux Brand name of their choice and maintain it for that community and the customer base.

By this way, it won’t kill the community with over 300 active and 300 inactive distributions.

The reason for the inactivity is often due to one developer does the bulk of the work and rest follow his or her footsteps and when the chief retires due to domestic reasons there is nobody to step in and succeed.

This is the deficiency of the Linux customer architecture which often becomes dormant.
Whereas, in a failing commercial venture like HP, there is somebody to step in till complete bankruptcy is claimed.

Linux do not go bankrupt it goes into hibernation like some animals. 
My idea is to wake up these beautiful animals from sleep.

The cloud can be the place for them to hibernate untill some metamorphosis of this animal can occur in its sleep mode unlike in real animal world. 

 This metamorphosis is good for Linux.

There a lot of steps missing in my concept but I firmly believe that it can be done and accomplished if the right steps are taken before commercial clouds invade us an blacken the sky like a rain cloud. 

As a beneficiary I would be able to make my own customized Linux in the cloud at least once a year. 
My planning are on yearly basis to the grave and not for a century.
But the above concept should outlast me by at least a century with cloud computing on the horizon.

I bet USA/Russia/China cannot do this alone.

U.N.O cannot do. It won’t even try.

But Linux can do it since Linux Guys/Girls do not have racial or national boundaries.
We are all together.
All will be benefited.
Any commercial company can hijack this concept of mine provided they acknowledge that it is coming from a small country called Ceylon which is trying to recover from 30 years of war which the Commonwealth (it is not common anymore than it used to be) is hell-bent to destroy.

They company also should not send the final product Free to Ceylon or on IMF Loan to us as long as I am alive and well.

They may try to kill my idea after investing the money but not me.
Even if they kill my idea, lot of nice guys/girls are out their with brains and community spirit.

It will be reborn again in some far corner of this planet.

With cloud computing we are going to be truly global.

 

Wednesday, February 25, 2026

Ghost BSD makes FREE BSD User Friendly

I am currently instslling it having deleted five partitions and making one single ZFS partition of 35GB.
It is uses UEFI and installation is fast and smooth.
It stated my Password as weak.
MATE Desktop is pleasant and I sacrificed one of my Debian GNOME Instances.
I hope GRUB would retain my other instances. It did not but booted to GHOST BSD. Yes, it cannit read EXT4 and I have no intention of converting them to ZFS system files.
There are no software.
Did not configure my WiFi.
I am going back to installing Debian GNOME second instance.

FREE BSD is a Solid but different to manage. I usee it inb 2018-2019 to erase Microsoft UEFI hegemony on my old but slow ACER Laptop. This was while mastering Linux and Debian particularly.

GHOST BSD has made everything easy.
1. It is User Friendly 
2. It has light weight MATE Desktop.
3. It uses solid ZFS file system.
4. It has it own Repository
5. One need not worry about command line work.
It has an easy Graphic Installer.
I am afraid I cannot install it in my NUC with EXT4 partitions.
I am downloading it to see whether I can run it live.

It had XFCE version, too.
My particular interest is that it has moved to XLibre by ditching X11.

Tuesday, February 24, 2026

Neon User is Excellent

Importantly it has User Utlity one can add additional USERS.
Neon User is an excellent Linux Distribution.
It is based on KDE 6.6.
It is only 3.1GB.
It supports SNAP, FLATpak, GNOME APT.
I installed all browesers, too.
Opera
Vivaldi
Epiphany
Brave
Firefox was defaut.
It supports Brave.
It UPDATES are fast unlike Drive in normal KDE.
GRUB is in dark mode and in small fonts but I can live with it.
I had problems with GNOPPIX and that is why I tried Neon User.
It is really User Friendly.

Titan Linux

I found this distribution by accident. 
It was created in 2022 but gone ? Dormant afterwards. It is an elegant distribution and I hope the project leader activate it with Community Support.
It looks like it is meant for Lsptops.
It is based on Debian STABLE.
It is light weight KDE Desktop.
Iis image is 2.9GB.
I am going to install it now.
Installer is Calamara.
I am glad it is Light Weight.
One can install GNOME Environment and that is why I love it.
WiFi configuration was smooth.
It has MUON Package Manager.
I love the Titan or the Horse with Wings.
I am going to time it installation
Start 5.55PM.
Formatting partion finished within 5 minute.
It has 207671 files and mounted or unpacked files in 11 minutes.
Titan has its own Tool Box.
Failed installation.
I am trying again and gave more soace in /root partition. 26GB.
Failed again probably due to defunct home site.

Bart Sibert and Moon Landing

Bart Sibert and Moon Landing

Faked Moon Landing

Bart Sibert and Moon Landing

The moon hoax guy

NASA guy from childhood.

Positive lie people believe and lasts longer.

Nobody dare to challenge.

 

Bill Kaesing prediction 2 in 10,000 chance accomplishing the feat.

 

After more than 59 years we cannot go beyond 1000 miles from earth.

 

Van Allen Radian belt is real killer of moon landing on first attempt.

Americans are very good at getting caught lying.

Now Israelite are doing the same thing about Iranians surely developing nuclear

Arms to bomb Iran.

These guys are good at taking oath on the Bible at any moment their version is compromised.

Would you believe Americans or the Bible or neither?

 

Bart Sibert made his comments as as a Photographer.

 

I am going to make my comments as a Doctor in Medicine.

 

I have a piece here where I have stated why I should not wear a space suit.

 

Things I failed to mention in that piece is stated here.

 

Me on the MOON

We are one gravity beings.

It took millions of years for us to evolve.

In spite of that we cannot live in the Himalaya with Oxygen deficient thin air.

Equally we cannot live undersea due to weight of the water taking a tall and also due to lack of oxygen. Nitrogen under pressure enter our blood and if we ascent fast Nitrogen bubbles come fast and clog our blood vessels and instant death.

These are described well in old Medical Physiology books.

Similarly we cannot live in low gravity moon.

Moon is supposed to be one sixth of the Earth Gravity.

Without a space suit we die of anoxia and moon does not have Oxygen with the same pressure as hours.

The space ship has to be light weight. If it is of heavy metal, it would sink on the surface of the moon, like we sink in muddy soil. Assuming it has dust on top with soft soil.

If we pressure the landing vehicle to one gravity, it will have have tough metal covering to withstand the pressure. It would bust like a balloon if the metal is thin and light weight. Additionally it make the vehicle heavy and would sink in the moon soil both due to weight and to landing momentum.

Apart from our physiological limitation we have to overcome all the physical limitations.

The wonder is Americans overcame all these in the first attempt itself.

This should to interpreted with why Russians did not bother to land on the moon.

Perhaps they did not want to sacrifice their top astronauts.

That is my conclusion.

For some unknown reason Joe Rogan tried to defend these American lies.

Perhaps he does not want to lose his ardent spectator base.

That is the very reason I do not watch Joe Rogan.

I have no problem with American's Romantic relationship with the moon.

We Buddhist have religious relationship with the Full Moon Day. We Buddhist in the past observed religious ceremonies. Buddha is supposed to be born on a Wesak (May) Poya day.

Any person or organization who propagate lies is under my radar.

As a Buddhist Lie I consider as a the biggest crime of this Modern World.

All World Media are owned by five big corporations and if the journalists as professionals do not follow rules laid down on them they are unceremoniously removed.

Tucker Carlson is a case in point but he survived.

According to Bill Kazing statistical odds, in 1966 going to the moon was 1 to 10.000.

Many reasons cited.

1. Van Allen Belt.

2. No records old technology.

3. Could not repeat it for another 56 years.

4. Expert People in the command center could not say the Apollo images were real or fake.

5. No independent Media to witness the historical event.

6. Only 3 persons had access to the photos.

7.  There were about 20 murders to shut the mouth of de-bunkers.

 

Any country who lies to its own people would not hesitate to lie to others.

 

Kelly Smith says instrument sensors have  to be Radiation Free through the Van Allen Radiation belt.

They may have sent experimental animals through this belt. 

The end result would have been dry charcoal on return. No biological cells left to study carcinogenesis.

It should be true of the astronauts, even with a thick space suits.

I am a retired pathologist who taught effects of radiation to medical students.

Let us just leave the medical facts for academic guys.

Americans were good at lying and C.I.A. was their instrument for both lying and bullying.

Also killing Americans and Non Americans who did not tore the line.

Gus Gruesome was one such unfortunate guy.

The common method is handsome bribes and perks.

Best evidence of faking is in the audio footage.

It takes 2 second for voice from moon to the earth and 2 seconds for a reply back.

4 seconds in total.

During the Recording Session, there is a guy in the background who says TALK after 4 seconds to make Neil Armstrong realize that time is up for him to talk.

Faking photos is another point.

The American flag fluttering on the moon with no atmosphere is classic photo error.

Besides the rocket was not powerful enough to carry such a distance.

Getting all these things right, "First Time Round" and "Always Right" is the biggest American Achievement.

Quality Guru Deming has known to have said only Japanese followed his instructions.

That is also after Hiroshima Bomb.

Russian, Deep Fake Detection Program of AI can distinguish fake from real photos.

That is the bottom line.

We are living in a Faked News World for over 55 years.

Truth will be on the future tense never at present tense.

That is my coinage.

Google's Neural Network says moon landing is faked.

I hope President Donald Trump would have a smooth inauguration ceremony.

President Putin last year was under snow during Victory Parade. I think people consider snow as a blessing at least at Christmas Day.

Posted on February 9, 2011

Spacesuit and its Occupant

Bart Sibert made his comments as as a Photographer.

I am going to make my comments as a Doctor in Medicine.

I have a piece here where I have stated why I should not wear a space suit.

Things I failed to mention in that piece is stated here.

Brain is gravity bound and need oxygen and high pressure suits on the moon.

In zero gravity C.S.F fluid flows in opposite direction and effects sleep diurnal rhythm and critical decision making capacity.

Me on the MOON

We are one gravity beings.

It took millions of years for us to evolve.

In spite of that we cannot live in the Himalaya with Oxygen deficient thin air.

Equally we cannot live undersea due to weight of the water taking a tall and also due to lack of oxygen. Nitrogen under pressure enter our blood and if we ascent fast Nitrogen bubbles come fast and clog our blood vessels and instant death.

These are described well in old Medical Physiology books.

Similarly we cannot live in low gravity moon.

Moon is supposed to be one sixth of the Earth Gravity.

Without a space suit we die of anoxia and moon does not have Oxygen with the same pressure as hours.

The space ship has to be light weight. If it is of heavy metal, it would sink on the surface of the moon, like we sink in muddy soil. Assuming it has dust on top with soft soil.

If we pressure the landing vehicle to one gravity, it will have have tough metal covering to withstand the pressure. It would bust like a balloon if the metal is thin and light weight. Additionally it make the vehicle heavy and would sink in the moon soil both due to weight and to landing momentum.

Apart from our physiological limitation we have to overcome all the physical limitations.

The wonder is Americans overcame all these in the first attempt itself.

This should to interpreted with why Russians did not bother to land on the moon.

Perhaps they did not want to sacrifice their top astronauts.

That is my conclusion.

Mind this is an introduction for anybody who is running short of an idea to write about in WordPress blogging site.

This is an idea I hit upon by reading a blog writing of a experienced civil pilot not a fighter pilot.

Have you ever thought of the 50 things that the spacesuit occupant in space won’t share with his body soul?

You probably have not but I was one who was very much interested in this in my school days and in early days as medical student.

I cannot remember what I wrote then but this is an attempt to revise some of those physiological constraints not in particular order or in any order of merits.

Suffice is to say I get a sickly feeling when I think of space (occupied especially by alien elements).

Imagine yourself trapped in a escalator without illumination (light) and the computer circuit controlling the up and down movements gone haywire and it is going up and down in an erratic fashion.

That is a the feeling I get moment I put on a spacesuit for travel.

That is one thing you must consider when paying for, an enormous amount for a single trip in space.

Is is worth the experience and the money?

Probably not but having said that I have tremendously high regard for those guys who trained for years end on to go to space.

They are a dedicated lot and give them the due respect they deserve if you happen to meet anyone of them.

They were the human guinea pigs in space.

I often wonder how many times they felt sick and vertiginous even in their sleep.

Probably many many times and uncountable and that is the feeling I get if I am invited to wear a spacesuit and come hither for a go.

I will list the feeling inside my head with little imagination and some understanding of my own physiology if not of another being.

1. I hate the space constraint.

This is the feeling one gets if one has to stay in a tiny hotel room in Singapore overnight due to some delay, cancellation or transit. I have had that feeling once or twice traveling by cheap air flights (a budget air line or Mihin -Hemin- Lanka. When you fly on a good wide-body aircraft it is reasonably OK.

2. I hate heights. Imagine you are in a hotel overnight on the 21st floor room due to flight cancellation. You are well away from a fire exit and there is a blackout and fire drill.

You don’t have a pen torch.

If you are on floor one, you can think of jumping out and breaking your legs but not on 21st Floor.

That is why rooms are cheap as you go up.

Please pay a good some and ask for a room down below. It is better even if you go to Colombo taking a pen torch with you with these high rising development projects.

Born to this earth with feet firmly grounded and ample space to breath pristine air (not now even in Kandy) as an embodiment, getting into a spacesuit is the luxury I do not want to avail myself not even in my incarnation.

3. Now about the daily routines I enjoy. Sleep to begin with. I think I can manage sleep upside down on space inside a spacesuit since there is nothing else I can do there except dreaming coming home.

I can do this since I have learned how to sleep standing on an express bus plying from Kandy to Colombo on a Monday morning. I believe all Sri-Lankans are good at this. Only if you do not have money in your back pocket. There are plenty of pickpockets in this country including politicians who pick our vote without our knowledge.

They are called pick-votters or even better pick-potters (stuffing the ballot boxes).

These two are new words, I have coined for the Oxford Dictionary with local elections due now).

4. What about food. I won't enjoy the high calorie, high protein dehydrated      food-fads of space travelers especially they are floating about and not placed on a plate with a well laid out nice table.

My worry is not the quality of food but how am I to partake them in a more sociable way.

Not empty them to my mouth from paper carton after paper carton.

5. Coming to spirits (if they are allowed like a commercial flight) and drinks. When I suck (not drink them) a little, I want them to stay a while in the mouth and esophagus and stomach and not go flushing down like a vacuum cleaner on full throttle to the colon, in one go..

6. After meal I want to brush my teeth as my good dental friends tell me with a tooth brush floating in air and the toothpaste all over the face with me trying to reach as far as it goes to the third molar.

7. That also I can manage but how about a quick spend a penny in the loo with my prostrate pushing hard on the correct track inside but the squirt getting between my spacesuit and the underwear.

That is my major worry since I will never master my physiology how ever much I train on earth and mid air.

8. Then the master job of course I have decided one last one here and never in the shuttle till I come home and take some constipating medicare one a week before the departure. I do not want my smelly secrets floating in air and taking pictures of me in flight.

No thank you.

9. Last but not least I fear the algae and the fungi I have been accustomed on earth and living with me with mutual understanding all along my life for years taking advantage of the flight and growing all over me.

In nails, wind pipe, mouth and all of my privates.

10. Last of all I love scratching my skin, just for fun and any other accessible point from my crown to the rump.

With these fungi floating around and waiting for a breach, I won’t be able enjoy that luxury.

11. As for the rubbish I collect on flight no problem. We are trained to drop at any advantage point in the town and the Municipalities never clean them. I just open the window and drop it down when we are centering round Sri-Lanka with a note stating “coming from space shuttle in orbit no valuables dropped but destined for Sri-Lankans”.

This is why when President Obama invited me for a flight in space, I refused and gave over 100 volunteers from our parliament elected and wanting to get elected. He of course refused nay for parliamentarians after the Health bill was bailed out out.

The moon hoax guy

NASA guy from childhood.

Positive lie people believe and last longer.

Nobody dare to challenge.

Bill Kaesing prediction 2 in 10,000 chance accomplishing the feat.

After more than 59 years we cannot go beyond 1000 miles from earth.

Van Allen Radian belt is real killer of moon landing on first attempt.

Americans are very good at getting caught lying.

Now Israelite are doing the same thing about Iranians surely developing nuclear

arms to bomb Iran.

These guys are good at taking oath on the Bible at any moment their version is compromised.

Would you believe Americans or the Bible or neither?

Bart Sibert made his comments as as a Photographer.

I am going to make my comments as a Doctor in Medicine.

I have a piece here where I have stated why I should not wear a space suit.

Things I failed to mention in that piece is stated here.

Me on the MOON

We are one gravity beings.

It took millions of years for us to evolve.

In spite of that we cannot live in the Himalaya with Oxygen deficient thin air.

Equally we cannot live undersea due to weight of the water taking a tall and also due to lack of oxygen. Nitrogen under pressure enter our blood and if we ascent fast Nitrogen bubbles come fast and clog our blood vessels and instant death.

These are described well in old Medical Physiology books.

Similarly we cannot live in low gravity moon.

Moon is supposed to be one sixth of the Earth Gravity.

Without a space suit we die of anoxia and moon does not have Oxygen with the same pressure as hours.

The space ship has to be light weight. If it is of heavy metal, it would sink on the surface of the moon, like we sink in muddy soil. Assuming it has dust on top with soft soil.

If we pressure the landing vehicle to one gravity, it will have have tough metal covering to withstand the pressure. It would bust like a balloon if the metal is thin and light weight. Additionally it make the vehicle heavy and would sink in the moon soil both due to weight and to landing momentum.

Apart from our physiological limitation we have to overcome all the physical limitations.

The wonder is Americans overcame all these in the first attempt itself.

This should to interpreted with why Russians did not bother to land on the moon.

Perhaps they did not want to sacrifice their top astronauts.

That is my conclusion.

For some unknown reason Joe Rogan tried to defend these American lies.

Perhaps he does not want to lose his ardent spectator base.

That is the very reason I do not watch Joe Rogan.

I have no problem with American's Romantic relationship with the moon.

We Buddhist have religious relationship with the Full Moon Day. We Buddhist in the past observed religious ceremonies. Buddha is supposed to be born on a Wesak (May) Poya day.

Any person or organization who propagate lies is under my radar.

As a Buddhist Lie I consider as a the biggest crime of this Modern World.

All World Media are owned by five big corporations and if the journalists as professionals do not follow rules laid down on them they are unceremoniously removed.

Tucker Carlson is a case in point but he survived.

According to Bill Kazing statistical odds, in 1966 going to the moon was 1 to 10.000.

Many reasons cited.

1. Van Allen Belt.

2. No records old technology.

3. Could not repeat it for another 56 years.

4. Expert People in the command center could not say the Apollo images were real or fake.

5. No independent Media to witness the historical event.

6. Only 3 persons had access to the photos.

7.  There were about 20 murders to shut the mouth of de-bunkers.

Any country who lies to its own people would not hesitate to lie to others.

Kelly Smith says instrument sensors have  to be Radiation Free through the Van Allen Radiation belt.

They may have sent experimental animals through this belt. The end result would have been dry charcoal on return. No biological cells left to study carcinogenesis.

It should be true of the astronauts, even with a thick space suits.

I am a retired pathologist who taught effects of radiation to medical students.

Let us just leave the medical facts for academic guys.

Americans were good at lying and C.I.A. was their instrument for both lying and bullying.

Also killing Americans and Non Americans who did not tore the line.

Gus Gruesome was one such unfortunate guy.

The common method is handsome bribes and perks.

Best evidence of faking is in the audio footage.

It takes 2 second for voice from moon to the earth and 2 seconds for a reply back.

4 seconds in total.

During the Recording Session, there is a guy in the background who says TALK after 4 seconds to make Neil Armstrong realize that time is up for him to talk.

Faking photos is another point.

The American flag fluttering on the moon with no atmosphere is classic photo error.

Besides the rocket was not powerful enough to carry such a distance.

Getting all these things right, "First Time Round" and "Always Right" is the biggest American Achievement.

Quality Guru Deming has known to have said only Japanese followed his instructions.

That is also after Hiroshima Bomb.

Russian, Deep Fake Detection Program of AI can distinguish fake from real photos.

That is the bottom line.

We are living in a Faked News World for over 55 years.

Truth will be on the future tense never at present tense.

That is my coinage.

Google's Neural Network says moon landing is faked.

I hope President Donald Trump would have a smooth inauguration ceremony.

President Putin last year was under snow during Victory Parade. I think people consider snow as a blessing at least at Christmas Day.

Posted on February 9, 2011

Spacesuit and its Occupant

Bart Sibert made his comments as as a Photographer.

I am going to make my comments as a Doctor in Medicine.

I have a piece here where I have stated why I should not wear a space suit.

Things I failed to mention in that piece is stated here.

Brain is gravity bound and need oxygen and high pressure suits on the moon.

In zero gravity C.S.F fluid flows in opposite direction and effects sleep diurnal rhythm and critical decision making capacity.

Me on the MOON

We are one gravity beings.

It took millions of years for us to evolve.

In spite of that we cannot live in the Himalaya with Oxygen deficient thin air.

Equally we cannot live undersea due to weight of the water taking a tall and also due to lack of oxygen. Nitrogen under pressure enter our blood and if we ascent fast Nitrogen bubbles come fast and clog our blood vessels and instant death.

These are described well in old Medical Physiology books.

Similarly we cannot live in low gravity moon.

Moon is supposed to be one sixth of the Earth Gravity.

Without a space suit we die of anoxia and moon does not have Oxygen with the same pressure as hours.

The space ship has to be light weight. If it is of heavy metal, it would sink on the surface of the moon, like we sink in muddy soil. Assuming it has dust on top with soft soil.

If we pressure the landing vehicle to one gravity, it will have have tough metal covering to withstand the pressure. It would bust like a balloon if the metal is thin and light weight. Additionally it make the vehicle heavy and would sink in the moon soil both due to weight and to landing momentum.

Apart from our physiological limitation we have to overcome all the physical limitations.

The wonder is Americans overcame all these in the first attempt itself.

This should to interpreted with why Russians did not bother to land on the moon.

Perhaps they did not want to sacrifice their top astronauts.

That is my conclusion.

Mind this is an introduction for anybody who is running short of an idea to write about in WordPress blogging site.

This is an idea I hit upon by reading a blog writing of a experienced civil pilot not a fighter pilot.

Have you ever thought of the 50 things that the spacesuit occupant in space won’t share with his body soul?

You probably have not but I was one who was very much interested in this in my school days and in early days as medical student.

I cannot remember what I wrote then but this is an attempt to revise some of those physiological constraints not in particular order or in any order of merits.

Suffice is to say I get a sickly feeling when I think of space (occupied especially by alien elements).

Imagine yourself trapped in a escalator without illumination (light) and the computer circuit controlling the up and down movements gone haywire and it is going up and down in an erratic fashion.

That is a the feeling I get moment I put on a spacesuit for travel.

That is one thing you must consider when paying for, an enormous amount for a single trip in space.

Is is worth the experience and the money?

Probably not but having said that I have tremendously high regard for those guys who trained for years end on to go to space.

They are a dedicated lot and give them the due respect they deserve if you happen to meet anyone of them.

They were the human guinea pigs in space.

I often wonder how many times they felt sick and vertiginous even in their sleep.

Probably many many times and uncountable and that is the feeling I get if I am invited to wear a spacesuit and come hither for a go.

I will list the feeling inside my head with little imagination and some understanding of my own physiology if not of another being.

1. I hate the space constraint.

This is the feeling one gets if one has to stay in a tiny hotel room in Singapore overnight due to some delay, cancellation or transit. I have had that feeling once or twice traveling by cheap air flights (a budget air line or Mihin -Hemin- Lanka. When you fly on a good wide-body aircraft it is reasonably OK.

2. I hate heights. Imagine you are in a hotel overnight on the 21st floor room due to flight cancellation. You are well away from a fire exit and there is a blackout and fire drill.

You don’t have a pen torch.

If you are on floor one, you can think of jumping out and breaking your legs but not on 21st Floor.

That is why rooms are cheap as you go up.

Please pay a good some and ask for a room down below. It is better even if you go to Colombo taking a pen torch with you with these high rising development projects.

Born to this earth with feet firmly grounded and ample space to breath pristine air (not now even in Kandy) as an embodiment, getting into a spacesuit is the luxury I do not want to avail myself not even in my incarnation.

3. Now about the daily routines I enjoy. Sleep to begin with. I think I can manage sleep upside down on space inside a spacesuit since there is nothing else I can do there except dreaming coming home.

I can do this since I have learned how to sleep standing on an express bus plying from Kandy to Colombo on a Monday morning. I believe all Sri-Lankans are good at this. Only if you do not have money in your back pocket. There are plenty of pickpockets in this country including politicians who pick our vote without our knowledge.

They are called pick-votters or even better pick-potters (stuffing the ballot boxes).

These two are new words, I have coined for the Oxford Dictionary with local elections due now).

4. What about food. I won't enjoy the high calorie, high protein dehydrated      food-fads of space travelers especially they are floating about and not placed on a plate with a well laid out nice table.

My worry is not the quality of food but how am I to partake them in a more sociable way.

Not empty them to my mouth from paper carton after paper carton.

5. Coming to spirits (if they are allowed like a commercial flight) and drinks. When I suck (not drink them) a little, I want them to stay a while in the mouth and esophagus and stomach and not go flushing down like a vacuum cleaner on full throttle to the colon, in one go..

6. After meal I want to brush my teeth as my good dental friends tell me with a tooth brush floating in air and the toothpaste all over the face with me trying to reach as far as it goes to the third molar.

7. That also I can manage but how about a quick spend a penny in the loo with my prostrate pushing hard on the correct track inside but the squirt getting between my spacesuit and the underwear.

That is my major worry since I will never master my physiology how ever much I train on earth and mid air.

8. Then the master job of course I have decided one last one here and never in the shuttle till I come home and take some constipating medicare one a week before the departure. I do not want my smelly secrets floating in air and taking pictures of me in flight.

No thank you.

9. Last but not least I fear the algae and the fungi I have been accustomed on earth and living with me with mutual understanding all along my life for years taking advantage of the flight and growing all over me.

In nails, wind pipe, mouth and all of my privates.

10. Last of all I love scratching my skin, just for fun and any other accessible point from my crown to the rump.

With these fungi floating around and waiting for a breach, I won’t be able enjoy that luxury.

11. As for the rubbish I collect on flight no problem. We are trained to drop at any advantage point in the town and the Municipalities never clean them. I just open the window and drop it down when we are centering round Sri-Lanka with a note stating “coming from space shuttle in orbit no valuables dropped but destined for Sri-Lankans”.

This is why when President Obama invited me for a flight in space, I refused and gave over 100 volunteers from our parliament elected and wanting to get elected. He of course refused nay for parliamentarians after the Health bill was bailed out out.

Read this piece in parallel with Science Degree, here.

Rocket Science is Money.

At present technology, mankind can only take men or women up to 250 miles only.

American Administrators do not have to worry

1. Russia

2. China

But they worry a lot about

3. American Public Opinion

I will give a list of names below for probing the moon landing, on first attempt.

It was Stanley (Rubric) Kubrick who filmed some shots.

1. Bart Sibrel

2. Joe Rogan

3. William Kaysing

4. Robert Bigelow

5. John Lear

6. Bob Lazar

7. Jeremy Corbell

8. George Knapp

and many more.

See the film "Something went wrong on the way to the moon".

It is the Pride and Money that help the CIA to keep this secret live and alive.

CIA assassination or threat to assassinate prevents the truth coming out.

It is called "Truth Embargo".

The bottom line is the lies have greater potential than truth in America.

Not only political lies (Democrats on Donald Trump), there are scientific lies.

Little alcohol is good for life is a similar lie propagated globally (scientist were paid to propagate this little bit of alcohol lie).