Monday, November 10, 2025

The X-Files S08E15 Deadalive Part 2

The whole serie is about Mulder family: 

The sister: abduced

The father: assesinated  

The mother: passed away by induced disease

Tuesday, October 15, 2024

a computer programmer poor is a poor computer programmer

Yesterday was the day I discovered what poor I am: this HP only has one slot for RAM and maximum capacity is 8 GB, because the processor is AMD.

Monday, October 7, 2024

they never went home

After the invasion, that meant the loss half of the territory, they never went home. Notably, yankees sponsored the creation of the PRI, party which gave to The Small Business (as they referred to Mexico) long-term political stability.

They have tried to divide the country, which is already very religious, by liberalizing religious associations other than Catholicism. Young Americans spend a year studying Spanish while visiting house to house spreading the word about the Mormon Church.

As is known, Jalisco born first than Mexican Republic. The largest CIA base is here (Cold War). And every they did is against CDS, but not too CJNG. They awarded García Luna, now in disgrace. Same thing with El Mayo, because their connections.

Friday, August 2, 2024

no fuimos nosotros

Que siga la corrupción said Claudia La Calca Shitbaum. They didn't catched to El Mayo. Apparently, Joaquín Guzmán López (El Chapo's son) made a deal with the DEA and handed over Ismael El Mayo Zambada (his uncle). But we will never know the whole truth. The worst is this: the army and marine serve to US interests. AMLO El Rey del Cash does not control the territory neither. Goverment is sold: Abrazos, no balazos. CDS has been the favorite cartel of this administration.

Saturday, July 20, 2024

SOLVED SDL h No such file or directory

Hi, everyone!

Environment: Debian 12, SDL2, vscode (extensions: C/C++ Language Support (MS), CMake Tools (MS) )

main.cpp

#include "SDL2/SDL.h"


c_cpp_properties.json

add: /usr/local/include
{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "/usr/include/SDL2",
                "/usr/local/include",
                "${workspaceFolder}/**"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/gcc",
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "linux-gcc-x64",
            "compilerArgs": [
                "gcc main.cpp `pkg-config --cflags --libs sdl2`"
            ]
        }
    ],
    "version": 4
}


CMakeLists.txt
 

cmake_minimum_required(VERSION 3.5.0)
project(createwindow VERSION 0.1.0 LANGUAGES C CXX)

add_executable(createwindow src/main.cpp)

target_link_libraries(createwindow SDL2main SDL2 GL)
 

Hope this useful.

Tuesday, July 9, 2024

How to Fix Error Code 0xc0000225 in Windows 10

First for all: create a USB bootable in another machine. On Ubuntu, install WoeUSB. It has a trick: you need to give format on NTFS because Windows ISO contains huge files. How to Create Windows Bootable USB on Ubuntu 22.04 | Windows 10 or 11 

How to fix error code 0xc0000225 in Windows 10/11 I had no idea how long takes to run chkdsk c: /r, but does the job!.

How get this error? I don´t know. That error code is a corruption MBR or system files lost. Let me see. Recently, just enabled Windows 10 Developer Mode and disabled Secure Mode on Boot. And, last but not least, I started to use bash -c "command" since PowerShell (I am a lazy programmer and obfuscated so don't wanna run and wait to raise Ubuntu just for download Youtube videos).

Sunday, June 9, 2024

unnumered chapter with toc

Hi, it's done. Just use \chapter* in our tex file (I suppose your work in progress is splitered in parts to include in environment file). Then put \addcontentsline{toc}{chapter}{amazing-title} below.