Entorno de programación Lazarus <<--->> programación en Pascal
https://www.lazarus-ide.org/
En Wikipedia: https://es.wikipedia.org/wiki/Lazarus_(entorno_de_desarrollo)
Sobre Free Pascal y Lazarus:
https://wiki.lazarus.freepascal.org/Overview_of_Free_Pascal_and_Lazarus/es
>>Características del IDE<<
https://wiki.freepascal.org/New_IDE_features_since
#programar #pascal #linux #windows
https://www.lazarus-ide.org/
En Wikipedia: https://es.wikipedia.org/wiki/Lazarus_(entorno_de_desarrollo)
Sobre Free Pascal y Lazarus:
https://wiki.lazarus.freepascal.org/Overview_of_Free_Pascal_and_Lazarus/es
>>Características del IDE<<
https://wiki.freepascal.org/New_IDE_features_since
#programar #pascal #linux #windows
www.lazarus-ide.org
Lazarus Homepage
Lazarus is a professional open-source cross platform IDE powered by Free Pascal
Crea tus propios videojuegos con Pilas Engine
https://pilas-engine.com.ar
#videojuegos #gratuito #programar
https://pilas-engine.com.ar
#videojuegos #gratuito #programar
https://www.sanfoundry.com/java-programming-examples/
Ejercicios de programación en Java.
#java #programar
Ejercicios de programación en Java.
#java #programar
Sanfoundry
Java Programming Examples - Sanfoundry
Best Java programming examples for beginners and advanced programmers. Start practicing Java Programs now for exams, online tests, quizzes & interviews!
https://github.com/torrentelinux/torrentarium/blob/master/base/AreaEducativa/TodoJava.txt
Todo lo que se necesita para aprender/estudiar/investigar/enseñar el lenguaje de programación Java.
#java #programar
Todo lo que se necesita para aprender/estudiar/investigar/enseñar el lenguaje de programación Java.
#java #programar
GitHub
torrentarium/TodoJava.txt at master · torrentelinux/torrentarium
Aplicaciones para Windows y Linux realizadas en C/C++, Java y en Vala. - torrentarium/TodoJava.txt at master · torrentelinux/torrentarium
BasesConceptualesProg.pdf
17.4 MB
Las Bases Conceptuales de la Programación. Por Pablo E. Martínez López. Una nueva forma de aprender a programar.
#libro #pdf #programar
#libro #pdf #programar
¿Cuál es la mejor herramienta para desarrollar aplicaciones C++ en Windows?
https://blogs.embarcadero.com/what-is-the-best-tool-to-use-to-develop-c-on-windows/
#cpp #cmasmas #programar #radstudio
https://blogs.embarcadero.com/what-is-the-best-tool-to-use-to-develop-c-on-windows/
#cpp #cmasmas #programar #radstudio
Embarcadero RAD Studio, Delphi, & C++Builder Blogs
What Is The Best Tool To Use To Develop C++ On Windows?
Lazarus: el IDE profesional para desarrollar aplicaciones Pascal en cualquier S.O.
https://www.lazarus-ide.org
Free Pascal: compilador gratuito para programar en lenguaje Pascal.
https://www.freepascal.org
#pascal #programar #lazarus
https://www.lazarus-ide.org
Free Pascal: compilador gratuito para programar en lenguaje Pascal.
https://www.freepascal.org
#pascal #programar #lazarus
www.lazarus-ide.org
Lazarus Homepage
Lazarus is a professional open-source cross platform IDE powered by Free Pascal
Codename One
Plataforma de desarrollo de aplicaciones para múltiples sistemas.
https://en.wikipedia.org/wiki/Codename_One
Para crear aplicaciones que funcionen en Android, iOS y Windows.
Sitio oficial: https://www.codenameone.com/
#programar #nube #netbeans #android #windows
Plataforma de desarrollo de aplicaciones para múltiples sistemas.
https://en.wikipedia.org/wiki/Codename_One
Para crear aplicaciones que funcionen en Android, iOS y Windows.
Sitio oficial: https://www.codenameone.com/
#programar #nube #netbeans #android #windows
Wikipedia
Codename One
Cross-platform app development framework for Java & Kotlin developers.
https://www.freecodecamp.org/espanol/news/el-manual-de-python/
El Manual de Ptyhon, escrito porCristian Sulbaran.
#ptyhon #lectura #estudiar #programar
El Manual de Ptyhon, escrito porCristian Sulbaran.
#ptyhon #lectura #estudiar #programar
freeCodeCamp.org
El Manual de Python
El Manual de Python sigue la regla 80/20: aprende el 80% del tema en el 20% del tiempo. Encuentro que este enfoque ofrece una descripción bastante completa. Este libro no intenta cubrir todo lo relacionado con Python. Se centra en el núcleo del lenguaje,…
https://kinsta.com/es/blog/tutoriales-python/
¡A estudiar Python!
#python #estudiar #online #programar
¡A estudiar Python!
#python #estudiar #online #programar
Kinsta®
La mejor manera de aprender Python en 2025 (Tutoriales de Python gratuitos y de pago)
Explora las mejores formas de aprender el lenguaje de programación Python. También encontrarás los mejores tutoriales de Python para empezar.
eBOOKPython5.3.2023.pdf
36.9 MB
Python and MySQL for Beginner. Libro digital que abarca temas de programación en Python y SQL. Cubre también a Laragon como servidor de base de datos.
#laragon #python #sql #programar
#laragon #python #sql #programar
https://reactiveprogramming.io/blog/es/estilos-arquitectonicos/microkernel
MicroKernel en la programación. ¿Qué es?
#rest #micro #nucleo #programar #aplicacion
MicroKernel en la programación. ¿Qué es?
#rest #micro #nucleo #programar #aplicacion
https://guidedhacking.com/threads/how-to-detect-threads-createremotethread-ntcreatethread.20474/
How to Detect Threads.
CreateRemoteThread() and NtCreateThread().
<------------------------------------------>
Both CreateRemoteThread() and NtCreateThread() are functions used for code injection in Windows operating systems.They are commonly used in scenarios where one process wants to execute code within the address space of another process.
CreateRemoteThread()
CreateRemoteThread() is a documented Win32 API function that allows a process to create a thread in the address space of a different process.
It takes the handle of the target process, the address of the function to be executed, and optional parameters for the function.This function is commonly used for DLL injection, where a DLL is loaded into the target process and its exported function is executed.
NtCreateThread()
NtCreateThread() is an undocumented function from the Native API of Windows.
It is a lower-level function that can also be used for code injection. It is similar to CreateRemoteThread(),but it provides more flexibility and control over the created thread. It allows specifying additional parameters,
such as the initial thread context and security attributes. It's worth noting that using undocumented functions like NtCreateThread() can be risky, as they may not be supported in future Windows versions or may have different behavior across different Windows versions.Additionally, using undocumented functions may violate the terms of service of certain software or platforms.
In summary, both CreateRemoteThread() and NtCreateThread() are functions used for code injection, with CreateRemoteThread() being a documented Win32 API function and NtCreateThread() being an undocumented function from the Native API of Windows.
More info.: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-createremotethread
#hebras #programar #api #windows #sdk
How to Detect Threads.
CreateRemoteThread() and NtCreateThread().
<------------------------------------------>
Both CreateRemoteThread() and NtCreateThread() are functions used for code injection in Windows operating systems.They are commonly used in scenarios where one process wants to execute code within the address space of another process.
CreateRemoteThread()
CreateRemoteThread() is a documented Win32 API function that allows a process to create a thread in the address space of a different process.
It takes the handle of the target process, the address of the function to be executed, and optional parameters for the function.This function is commonly used for DLL injection, where a DLL is loaded into the target process and its exported function is executed.
NtCreateThread()
NtCreateThread() is an undocumented function from the Native API of Windows.
It is a lower-level function that can also be used for code injection. It is similar to CreateRemoteThread(),but it provides more flexibility and control over the created thread. It allows specifying additional parameters,
such as the initial thread context and security attributes. It's worth noting that using undocumented functions like NtCreateThread() can be risky, as they may not be supported in future Windows versions or may have different behavior across different Windows versions.Additionally, using undocumented functions may violate the terms of service of certain software or platforms.
In summary, both CreateRemoteThread() and NtCreateThread() are functions used for code injection, with CreateRemoteThread() being a documented Win32 API function and NtCreateThread() being an undocumented function from the Native API of Windows.
More info.: https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-createremotethread
#hebras #programar #api #windows #sdk
Docs
CreateRemoteThread function (processthreadsapi.h) - Win32 apps
Creates a thread that runs in the virtual address space of another process.
https://www.muycomputerpro.com/2024/01/04/cobol-lenguaje-desconocido-dependen-sistemas-criticos
El lenguaje COBOL la está pasando mal... pero la I.A. puede ayudar!!!
#cobol #programar #ibm
El lenguaje COBOL la está pasando mal... pero la I.A. puede ayudar!!!
#cobol #programar #ibm
MuyComputerPRO
COBOL: un lenguaje cada vez más desconocido del que dependen aún sistemas críticos
Los estudiantes de informática en los años 80 y anteriores contaban en sus planes de estudio, en prácticamente todos los casos, con asignaturas relacionadas con un lenguaje de programación ya entonces muy particular: COBOL. Su nombre quiere decir Common Business…