Today, we are going to learn how to use md5 on our own terminal.
First call the terminal:

Then type md5:
md5 debian-12.1.0-amd64-DVD-1.iso

Now, finally md5sum:

Today, we are going to learn how to use md5 on our own terminal.
First call the terminal:

Then type md5:
md5 debian-12.1.0-amd64-DVD-1.iso

Now, finally md5sum:

Hola Lectores,
Hoy, Tenemos una build con gtk3+ y cmake en Big Sur ordenador.
Primero:
git clone https://github.com/ringsce/morpheus
Entonces:
cd morpheus && cd gtk
Después:

Ahora:
mkdir build && cd build
cmake ../
make
Por fin:

open neon

Hello readers,
Today, we are going to learn how to build gtk3+ with cmake on a Big Sur machine.
First:
git clone https://github.com/ringsce/morpheus
Then:
cd morpheus && cd gtk
After that:

Now:
mkdir build && cd build
cmake ../
make
Then at last:

open neon

Hello readers,
Today, we bring with more tips, how to compile with make with your Apple.
As we seen before, we have this command:
gcc `pkg-config –cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config –libs gtk+-3.0`
https://gist.github.com/vic3t3chn0/313707f0372c6b89ac598181716060b4
To start, we must create a file called Makefile, we have a gist above also:
all:
world
#clean:
# rm example-0
# Para despues / for after for libs
world:
rm example-0 && gcc `pkg-config --cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config --libs gtk+-3.0`
Now we have the same source code seen before about GTK.
#include <gtk/gtk.h>
static void
activate (GtkApplication* app,
gpointer user_data)
{
GtkWidget *window;
window = gtk_application_window_new (app);
gtk_window_set_title (GTK_WINDOW (window), "Window");
gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);
gtk_widget_show_all (window);
}
int
main (int argc,
char **argv)
{
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
}
Now, we have all to start coding gtk. We must call the terminal application to go to your source code directory.
For us, we have on ~/Documents/Projects. Now you can see your files on the screen as we see ours.

We must type make world:

At last, execute your binary file on your screen terminal:


Hola lectores,
Hoy, tenemos una cosa más, como hacer compilación con make en tú Apple.
Como ha visto antes, tenemos esto comando:
gcc `pkg-config –cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config –libs gtk+-3.0`
https://gist.github.com/vic3t3chn0/313707f0372c6b89ac598181716060b4
Para empezar, creamos un fichero con tu terminal llamado Makefile, tenemos también un gist:
all:
world
#clean:
# rm example-0
# Para despues / for after for libs
world:
rm example-0 && gcc `pkg-config --cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config --libs gtk+-3.0`
Ahora tenemos el mismo codigo fuente del aticulo de gtk con XQuartz.
#include <gtk/gtk.h>
static void
activate (GtkApplication* app,
gpointer user_data)
{
GtkWidget *window;
window = gtk_application_window_new (app);
gtk_window_set_title (GTK_WINDOW (window), "Window");
gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);
gtk_widget_show_all (window);
}
int
main (int argc,
char **argv)
{
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
}
Ahora, tenemos todo listo para empezar. Ahora tenemos que llamar el terminal y ir para su directorio donde están el codigo fuente.
Para nosotros tenemos en ~/Documents/Projects. Ahora podemos ver en la pantalla tú directorio

Ahora tenemos que escribir make world:

Por fin, correr tú executable en la pantalla:


Hola Electores,
Otra vez con mas un tutorial sobre macOS, hoy tenemos como trabajar con gtk en Big Sur.
Para compilación:
gcc `pkg-config –cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config –libs gtk+-3.0`
Pero primer, abrir mí gtk gist:
https://gist.github.com/vic3t3chn0/2e082126a7f89330f04cf2b10ba6e8c2
Pero, podemos testear con esto:
#include <gtk/gtk.h>
static void
activate (GtkApplication* app,
gpointer user_data)
{
GtkWidget *window;
window = gtk_application_window_new (app);
gtk_window_set_title (GTK_WINDOW (window), "Window");
gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);
gtk_widget_show_all (window);
}
int
main (int argc,
char **argv)
{
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
}
Por fin:
gcc `pkg-config --cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config --libs gtk+-3.0`

Hello readers,
We are going to learn how to compile gtk3 for XQuartz on big sur.
To compile use this:
gcc `pkg-config –cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config –libs gtk+-3.0`
But first, open my gtk gist:
https://gist.github.com/vic3t3chn0/2e082126a7f89330f04cf2b10ba6e8c2
But you can test it like this:
#include <gtk/gtk.h>
static void
activate (GtkApplication* app,
gpointer user_data)
{
GtkWidget *window;
window = gtk_application_window_new (app);
gtk_window_set_title (GTK_WINDOW (window), "Window");
gtk_window_set_default_size (GTK_WINDOW (window), 200, 200);
gtk_widget_show_all (window);
}
int
main (int argc,
char **argv)
{
GtkApplication *app;
int status;
app = gtk_application_new ("org.gtk.example", G_APPLICATION_FLAGS_NONE);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
return status;
}
in the end:
gcc `pkg-config --cflags gtk+-3.0` -o example-0 mainwindow.cc `pkg-config --libs gtk+-3.0`

Hello Readers,
Today, we are going to learn how to make a compilation for neon network for Big Sur. We here we use big sur for development.
First, run iTerm2 or terminal application:

You must have a directory and a cmake like this one:


Next, on terminal do this:
-> mkdir build && cd build
-> cmake ../
-> make
After setting up all of this run make.

Press “Enter” with command make


