lunes, 24 de febrero de 2020

MUPPETS INSIDE: THE MUPPET CD-ROM


"It's time to put the disc in. It's time to turn stuff on. It's time to meet the Muppets on the Muppet CD-ROM!" Jim Henson's Muppets are back in Muppets Inside: The Muppet CD-ROM, developed by Starwave Corporation and published by Jim Henson Interactive in 1996. It's a well-put-together collection of mini-games and classic clips that's impossible to do anything but cheer you up.
Read more »

domingo, 23 de febrero de 2020

Tech Book Face Off: The New Turing Omnibus Vs. Patterns Of Software

I'm churning through tech books now, finishing off a bunch that I had started a while back, but couldn't find the time to finish until now. The pair that I'll look at here are a couple of older books that I picked up through recommendations on blog posts. The first one, The New Turing Omnibus: 66 Excursions in Computer Science by A.K. Dewdney, is a survey of 66 topics in a wide range of areas of Computer Science. The second book, Patterns of Software by Richard P. Gabriel, is about advice and experiences on a variety of topics in software development. Whereas NTO is of a strictly technical nature, Patterns of Software has much more of the human aspect of working with computers and software. Let's see how these older books hold up today.

The New Turing Omnibus front coverVS.Patterns of Software front cover

The New Turing Omnibus


With the new edition published in 1993, this is definitely an older computer science book. That can be okay, if the author sticks to the more timeless aspects of computer and software design. For the most part, this is the case in NTO, but a few of the chapters—especially the ones on VLSI computers and disk operating systems—are definitely dated and nearly beyond usefulness. The topics vary far and wide, though, and are generally grouped into eleven subject areas with the following breakdown:
  • Analysis of Algorithms (8)
  • Applications (7)
  • Artificial Intelligence (5)
  • Coding and Cryptology (3)
  • Complexity Theory (6)
  • Computer Graphics (3)
  • Data Structures (6)
  • Automata and Languages (5)
  • Logic and Systems Design (9)
  • Theory of Computation (9)
  • Miscellany (5)
The miscellany chapters could honestly been grouped into the other categories, and the three computer graphics chapters were just as much algorithms or data structures as anything, so nine categories would have been sufficient. That's fairly inconsequential, though, because the topics were presented completely haphazardly anyway. The chapters would go from Karnaugh Maps to the Newton-Raphson Method of finding roots to minimum spanning trees without any ceremony whatsoever, leaving the reader grappling for a solid structure to hold on to.

Each chapter is a brief 5-7 page discussion on the given topic followed by two or three problems related to the topic as practice for the reader. These problems commonly explored points glossed over in the text. The topic discussions read like blog posts and don't give more than a cursory introduction to the sometimes deep and complex subjects they are covering.

I had high hopes for this book, considering the glowing recommendation that Jeff Atwood gave it back in 2007 on Coding Horror, but I just couldn't get into it the way he did. I found the treatment of the topics that I had already learned in much more depth, mostly from studying in college, to be tedious and unremarkable. The remaining 25% of the topics, mostly on the theory of computation and automata, was quite difficult to understand from the short expositions given, and I would have to do more extended studying with a book like the Introduction to the Theory of Computation to get enough of a handle on the subject to answer the more difficult end-of-chapter problems.

I may not have been the right audience for this book, but I had a lot of trouble figuring out who the right audience would be. The material was so superficial that I didn't find any additional insights or valuable practice from any topics I already knew about, and those topics that I had little exposure until now were nearly completely opaque from the text. It was weird. The book didn't seem to fit for either a novice or a (moderate) expert on any of the topics, and the fact that related topics were strewn throughout the book, separated by completely unrelated topics, made it even more frustrating and less helpful. Maybe if you were using it as a supplement while studying some of the broader subjects for extra practice, it would prove to be of some use, but I'm not even convinced of that. I have to give this book a solid "no" at this point. There are much better books out there on the subject areas covered here.

Patterns of Software


This was an odd book, and not at all what I expected. I had expected a book relating advice to the reader on how to design and develop software. What it is instead is an extended comparison of Christopher Alexander's work on patterns in architecture to patterns in programming followed by speculations on programming languages, advice on learning to become a good writer, and a significant part of Richard P. Gabriel's life story. It was a strange mishmash of things that didn't quite hold together as a cohesive book.

Throughout the first part on how Alexander's books—the most well-known being A Pattern Language—relate to programming, Gabriel quotes Alexander extensively, to the point where I almost felt like I was reading Alexander more than Gabriel. He also did not spend enough time tying all of these quotes into programming and software, so much of the time I was left wondering if the book was just a review of Alexander's works.

Gabriel did have some insights into programming that resonated well, such as
Maintaining compressed code requires understanding its context, which can be difficult. The primary feature for easy maintenance is locality: Locality is that characteristic of source code that enables a programmer to understand that source by looking at only a small portion of it. Compressed code doesn't have this property, unless you are using a very fancy programming environment.
We must be careful to strike the right balance when coding so that we don't unnecessarily obscure things that should be simple and easy to understand just for the sake of abstraction. Sometimes it's better to lay out a process linearly so that it can all fit on the screen at the same time instead of slicing and dicing to the point where the poor sap who has to debug the code needs to chase the flow of execution through dozens of functions and variables across tens of files. This insight gets at one of the themes of the book on making code habitable:
Habitability is the characteristic of source code that enables programmers, coders, bug-fixers, and people coming to the code later in its life to understand its construction and intentions and to change it comfortably and confidently.
This idea of habitability is a worthy goal, and Gabriel returns to it often in the context of Alexander's architecture patterns:
What Alexander seems to be saying is that if we try to use modular parts (solid building blocks not easily molded to the current circumstances), then the overall structure of the thing built with them may become overly constrained by their shape. In programming, if a set of large abstractions does nearly the right thing, it is tempting is [sic] to use them and to bend the structure of the surrounding program to fit them. This can lead to uninhabitable programs.
It seems like much of modern software development has become exactly this, where we as programmers have been reduced to searching for and slapping together all of the packages we need to meet the given software requirements. In this process of moving towards extreme reuse, something has been lost in software development, and this is speaking from a perspective more than twenty years after this book was written, with reuse being much more common and extensive than it was then. This thing that has been lost is Alexander's "quality without a name."

Both Alexander and Gabriel spent a lot of time trying to define this quality without a name, but neither succeeded very well. Gabriel critiqued Alexander's choices in descriptive words, like "simple" and "cohesive," but while he was right that the word choices did not do the concept justice, he did not do much better in clarifying what the quality was. Even more troublesome than defining it, Alexander found that he couldn't replicate this nameless quality by enumerating the patterns of architecture. It's not something that you can create simply by combining known good patterns in a building.

This difficulty of codifying quality is true for almost anything we do. It's as true for architecture as it is for programming as it is for every form of craftsmanship, and it seems obvious that this would be so. We can't package up and mass produce quality that simultaneously exhibits beauty, elegance, efficiency, and function. Reaching the point where you can produce things of such a high level of quality takes decades of experience, creativity and experimentation. Most people will never reach the level of craftsmanship where their work is elevated to an art form.

It was frustrating that Gabriel danced around that conclusion for most of the book, but never really committed to it. He did spend a fair amount of time on silly tangents, like the chapter where he claimed that the development of programming languages was at an end, and C was the ultimate answer. That prediction looks mighty short-sighted today.

The rest of the book, detailing Gabriel's struggles through college and running a software business, was sometimes interesting and sometimes not, but it didn't have much to do with the first half of the book on patterns and code habitability. In general, his writing was quite repetitive and disorganized. He would introduce a new topic or part of a story by giving away the conclusion as if it was a stand-alone statement, and then proceed into an extended discussion on it. A few pages later I would realize he was talking about the details of a story that I had thought was just an isolated observation and we had moved on. This writing style was quite disorienting, and the constant repetition of certain observations or narratives, each time stated as if it was the first, became fairly annoying.

Between the sparse real insights and disjointed structure of the book, I can't recommend Patterns of Software at all. The software development advice can easily be had in much better books without the extended and largely irrelevant fluff. It's unfortunate. I feel like I really struck out with this book and The New Turing Omnibus, but sometimes that happens. Maybe the next couple books I read will be much better.

jueves, 20 de febrero de 2020

Xenogears- Anti God Or Anti Demiurge?

There are an increasing number of Xenogears fans out there I think, it's an interesting game, but a game I have never completed.

I reached disc two at least a couple of times but the game is far far from perfect and after beginning as an amazing game, a game which you are thinking is going to be one of the greatest games of all time, unfortunately it gradually and then quickly runs out of steam almost from 3 hours in. 

I really love some of the soundtrack though, it is a masterpiece and the vocals are awesome.

The big problem for Catholics with a lot of JRPGs is their blatant anti Catholicism and their promotion of false anti-God philosophies.

I have traditionally seen Xenogears as anti God in a really really big way...sham religion to control people, 'god' himself is an antagonist, reincarnation, etc etc. 

 but I recently saw a video that made me reconsider this a tiny bit, and the video has some good points. The argument is that the Japanese who are godless and largely propelling to eternal damnation like to use Christian terminology to make their games and stories seem more occidental and strange, often applying names incorrectly and with nothing to do with their original reference points. This is certainly the case in Xenogears in a way perhaps unparalleled. 
And so whilst at the centre of xenogears there is this god thing trying to revive itself by farming and feeding itself humans who it has created, this thing isn't really a god at all, it is a demiurge a being that is itself created and yet has the capacity to create as if it were a god. So a created being posing itself is god is the enemy.

But then there is this wave existence- is this the true God? Obviously not, since how could God get trapped by a demiurge (which seems to have happened in xenogears) the whole stuff about the wave existence in xenogears is just incoherent, an all powerful being from another dimension is somehow trapped in a man made robot demiurge and wants to be set free....

So in xenogears we are not dealing with the true creator of the universe in any of this, we are not fighting uncreated existence, we are not fighting the supremely simple, perfect and holy God, we are not actually fighting the supreme being in any way, nor are we helping him escape from the demiurge. 

Xenogears fails in as much as it does not bring to light to fact that whilst the demiurge Deus is a phony god that is rightly destroyed, there is a true God sustaining all things Who Himself exists without the need of any other, a God Who simply Is and cannot fail to Be, a God without which all things would fall back into nothingness.
Hear are some ideas of altering the plot to make Xenogears more Christian:

1) Wave existence has to go. 
2) the continual reincarnations of elly and fei not true incarnations but vocations given by the true God 
3) Just as the demiurge has his false religion in xenogears through the ethos, the true God too ough to His own religion in the world of Xenogears which is acknowledged by the end of the game to be true.
4) The true God wishes to see the destruction of demiurge through means of humans, as humans created this false god the true God wishes that they destroy it.

Blender 2.80 Released, Gets Industry Sponsorship


The amazing libre 3D modeling tool Blender needs no introductions at this point. Suffice to say that what began as a humble Free Software alternative to most heavy-duty proprietary 3D software is slowly becoming a new industry standard. The newly released version 2.80 is a testimonial of this.

The new release adds not only a much needed upgrade to the UI, but along comes an improved real time renderer and much more. All new features and improvements can be checked here.


Finally, some of you might have already heard in the past few weeks the gaming industry titans Epic Games and Ubisoft have officially began sponsoring the Blender foundation with grant funds. These are welcoming news since it means Blender will only see better and more regular updates from increased sources of income. Even if the money comes from proprietary software business, libre developers alike can also reap the benefits.

Blender can be downloaded for free on its official download page.

Code license: GPLv2

Via GamingOnLinux.

Got comments? Post them on our forum thread.

Recent Painting/Basing

Just some recently finished bits and pieces.

3x Panzer IVs with various gun options.
Plastic, Battlefront Miniatures

Fiat Cr.32 "Chirri" for the Nationalists in Spanish Civil War
1:100 by Minairons

It's a cool piece but a little fiddly to put together.

Goblin Pyros for Pathfinder
Reaper Bones

miércoles, 19 de febrero de 2020

[Hackaday] Inputs Of Interest: Ears To Communication For Everyone

Inputs of Interest: Ears to Communication for Everyone

Downlod Gta 3 Highle Compresed In 98.0Mb By (Ayush Anand)











                                                         download gta 3 full free verson

gta 3 minimum reqirments2 gb ram1 tb hardiskintel pentunium processorwindow 7.8.xp only                                      (plese downlod winrar software to wotk )                                                     (also downlod direct x)                                                      (plese disable antivirus)the game is given by ayush anand  and sponserd by y.yada gamerGrand Theft Auto III is an action-adventure video game developed by DMA Design and published by Rockstar Games. It was released in October 2001 for the PlayStation 2, in May 2002 for Microsoft Windows, and in October 2003 for the Xbox. A remastered version of the game was released on mobile platforms in 2011, for the game's tenth anniversary. It is the fifth title in the Grand Theft Auto series, and the first main entry since 1999's Grand Theft Auto 2. Set within the fictional Liberty City, based on New York City, the game follows Claude after he is left for dead and quickly becomes entangled in a world of gangs, crime and corruption.The game is played from a third-person perspective and its world is navigated on foot or by vehicle. The open world design lets players freely roam Liberty City, consisting of three main islands. Development was shared between DMA Design, based in Edinburgh and Rockstar, in New York City. Much of the development work constituted transforming popular series elements into a fully 3D world. The game was delayed following the September 11 attacks, to allow the team to change references and gameplay deemed inappropriate.Upon release, the game received critical acclaim, with praise particularly directed at its concept and gameplay. However, the game also generated controversy, with criticism directed at the depiction of violence and sexual content. Grand Theft Auto III became the best-selling video game of 2001, and has sold over 14.5 million copies since. Considered one of the most significant titles of the sixth generation of video games, and by many critics as one of the greatest video games of all time, it won year-end accolades, including Game of the Year awards from several gaming publications. Since its release, it has received numerous ports to many gaming platforms. Its successor, Grand Theft Auto: Vice City, was released in October 2002.



game pssword is = i dontknow password



https://www.sendspace.com/file/7cleo5







jueves, 13 de febrero de 2020

Brave Browser voted the best privacy-focused product of 2020



Out of all the privacy-focused products and apps available on the market, Brave has been voted the best. Other winners of Product Hunt's Golden Kitty awards showed that there was a huge interest in privacy-enhancing products and apps such as chats, maps, and other collaboration tools.

An extremely productive year for Brave

Last year has been a pivotal one for the crypto industry, but few companies managed to see the kind of success Brave did. Almost every day of the year has been packed witch action, as the company managed to officially launch its browser, get its Basic Attention Token out, and onboard hundreds of thousands of verified publishers on its rewards platform.

Luckily, the effort Brave has been putting into its product hasn't gone unnoticed.

The company's revolutionary browser has been voted the best privacy-focused product of 2019, for which it received a Golden Kitty award. The awards, hosted by Product Hunt, were given to the most popular products across 23 different product categories.

Ryan Hoover, the founder of Product Hunt said:

"Our annual Golden Kitty awards celebrate all the great products that makers have launched throughout the year"

Brave's win is important for the company—with this year seeing the most user votes ever, it's a clear indicator of the browser's rapidly rising popularity.

Privacy and blockchain are the strongest forces in tech right now

If reaching 10 million monthly active users in December was Brave's crown achievement, then the Product Hunt award was the cherry on top.

The recognition Brave got from Product Hunt users shows that a market for privacy-focused apps is thriving. All of the apps and products that got a Golden Kitty award from Product Hunt users focused heavily on data protection. Everything from automatic investment apps and remote collaboration tools to smart home products emphasized their privacy.

AI and machine learning rose as another note-worthy trend, but blockchain seemed to be the most dominating force in app development. Blockchain-based messaging apps and maps were hugely popular with Product Hunt users, who seem to value innovation and security.

For those users, Brave is a perfect platform. The company's research and development team has recently debuted its privacy-preserving distributed VPN, which could potentially bring even more security to the user than its already existing Tor extension.

Brave's effort to revolutionize the advertising industry has also been recognized by some of the biggest names in publishing—major publications such as The Washington Post, The Guardian, NDTV, NPR, and Qz have all joined the platform. Some of the highest-ranking websites in the world, including Wikipedia, WikiHow, Vimeo, Internet Archive, and DuckDuckGo, are also among Brave's 390,000 verified publishers.

Earn Basic Attention Token (BAT) with Brave Web Browser

Try Brave Browser

Get $5 in free BAT to donate to the websites of your choice.