This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aquí tienes la transcripción completa de la entrevista a Dan Meridor en el programa Talk to Al Jazeera (25:31): | |
| (0:01) Preguntamos... (0:15) mientras Estados Unidos y Europa confrontan a Irán en conversaciones sobre su programa nuclear, (0:20) las tensiones diplomáticas entre Irán e Israel permanecen en su punto máximo. (0:25) Las amenazas de un ataque a la República Islámica por parte del estado judío. (0:30) Israel ha jurado que cualquier actividad nuclear de Irán es inaceptable y (0:35) hay una expresión que es continuamente invocada por el liderazgo israelí para justificar sus afirmaciones de que Irán es una amenaza existencial: (0:42) "Son los líderes de Irán quienes piden un nuevo Holocausto y prometen borrar a Israel del mapa". (0:52) Esta idea de que Irán quiere borrar a Israel del mapa, como sabemos, (0:54) Ahmadineyad no dijo que planea exterminar a Israel... (0:59) "No dijeron 'vamos a sacar las armas', tienes razón, pero 'no sobrevivirá', es un tumor canceroso que debe ser eliminado", se dijo hac |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Cosas... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <windows.h> | |
| #include <gdiplus.h> | |
| #include <memory> | |
| using namespace Gdiplus; | |
| using namespace std; | |
| int GetEncoderClsid(const WCHAR* format, CLSID* pClsid) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Example of how to create a minimal MFC application | |
| //1. Create a new Win32 project, select empty project | |
| //2. Go to project options > Use MFC in a shared library (.dll) | |
| //3. Make a new resource file with an empty dialog | |
| //4. Give the dialog the name "INTERFACE1" | |
| //5. Build and run. | |
| //--------------------------------------- | |
| #include <afxwin.h> | |
| #include "resource.h" | |
| //--------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* descarga_Sismograma */ | |
| void descarga_Sismograma(void){ | |
| CkHttpW http; | |
| bool success; | |
| const wchar_t *localFilePath = 0; | |
| localFilePath = L"data/images/png/heli.png"; | |
| success = http.Download(L"http://200.123.254.42:16090/heli.png", localFilePath); | |
| if (success != true){ | |
| wprintf(L"Error, No se pudo descargar la imagen.\r\n"); | |
| return; |