- Sin categoría
La guía del idiota para descarga gratuita de software de computadora Explicado
Contenido Formas de generar una lista de programas instalados en Windows Usando Windows Powershell (Wmic) Formas de generar una lista de programas instalados en Windows Para cualquier otra cosa en CCleaner que desee, puede encontrar una alternativa de CCleaner. Por ejemplo, si desea una lista de los programas instalados en su computadora, puede guardar una lista de sus aplicaciones instaladas con un solo comando de Windows. Para encontrar archivos duplicados en su PC, puede instalar un buscador de archivos duplicados. La segunda falacia es que incluso necesitas CCleaner para hacer esto. En esta herramienta, puede habilitar o deshabilitar qué programas pueden iniciarse cuando se inicia su computadora. Cuando los usuarios…
- Sin categoría
13 errores que la gente comete al comprar una computadora para juegos
Contenido Obtención de funciones que no necesita Una comunidad de personas reales que utilizan nombres reales que ejecutan empresas de software reales Simplemente abra un archivo y casi puede garantizar que VLC podrá reproducirlo instantáneamente, sin perder el tiempo. Windows 10 viene con su propio software de seguridad en forma de Windows Defender. También tiene funciones más ligeras que muchas otras suites antivirus software almacen gratuitas, incluida nuestra opción preferida: BitDefender Antivirus Free Edition. Cuenta con una de las interfaces más simples que hemos usado en el mundo de las VPN, por lo que si eres relativamente nuevo en el concepto, Hamachi no te hará sentir un novato total. Después…
-
On Exactitude in Programming
Recently I attended a demonstration of a product intended to help design software, right down to implementation details. It failed to convince me. It did, however, succeed in reminding me of this short work by Jorge Luis Borges: On Exactitude in Science Jorge Luis Borges, Collected Fictions, translated by Andrew Hurley. …In that Empire, the Art of Cartography attained such Perfection that the map of a single Province occupied the entirety of a City, and the map of the Empire, the entirety of a Province. In time, those Unconscionable Maps no longer satisfied, and the Cartographers Guilds struck a Map of the Empire whose size was that of the Empire,…
-
Python maths updates
A quick note on some useful updates made to standard Python maths support. Math.prod does for * what sum does for +. It was added at Python 3.8. >>> math.prod([3, 4, 5]) 60 >>> math.prod([]) 1 Added in 3.9, math.lcm, returns the least common multiple of its integer arguments. As with math.prod, an empty list of arguments returns 1. Extended in 3.9, the related function math.gcd now accepts an arbitrary list of arguments. For Euclidean geometry, math.hypot now supports n-dimensional points, and math.dist has been added, again working on any pair of n-dimensional points. These useful additions and extensions are all in the standard math module (along with several others…
-
Fearless Debugging
Jurassic Jigsaw My thanks to Eric Wastl for another excellent Advent of Code. I’ve now worked through all 25 puzzles, some simple, some tough, some familiar, some new; all beautifully set and highly enjoyable. Day 20, Jurrasic Jigsaw, took me longest by far to complete. The puzzle is easy to understand. You have to assemble jigsaw pieces into a seascape. For part one, you need to find the corner pieces. For part two, you must locate monsters in the seascape. Here, a jigsaw piece is a monochrome square, represented like so: ..##.#..#. ##..#..... #...##..#. ####.#...# ##.##.###. ##...#.### .#.#.#..## ..#....#.. ###...#.#. ..###..### And this is the sea monster: # # ##…