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 <Ws2tcpip.h> | |
| #include <stdio.h> | |
| #pragma comment (lib, "Ws2_32.lib") | |
| #define PORT "6667" | |
| #define HOST "irc.freenode.net" | |
| DWORD WINAPI ThreadHTTPTitleCheck(LPVOID lpParam) | |
| { |
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 <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <netdb.h> | |
| #include <stdio.h> | |
| #include <pthread.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #define PORT "6667" | |
| #define HOST "irc.freenode.net" |
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 <stdio.h> | |
| #include <Ws2tcpip.h> | |
| #pragma comment (lib, "Ws2_32.lib") | |
| int main() | |
| { | |
| WSADATA wsaData; | |
| struct addrinfo hint; | |
| struct addrinfo *res; |
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
| package irc; | |
| import java.io.*; | |
| import java.net.*; | |
| /** | |
| * Created with IntelliJ IDEA. | |
| * User: JFDEV | |
| * Date: 30.10.2012 | |
| * Time: 17:24 |
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
| [14.11.2012 10:30:59:984 EET] 000000a6 AdminHelper A ADMN1009I: An attempt is made to start the FOOEAR application. | |
| [14.11.2012 10:31:00:109 EET] 000000a6 CompositionUn A WSVR0190I: Starting composition unit WebSphere:cuname=FOO in BLA WebSphere:blaname=FOOEAR. | |
| [14.11.2012 10:31:42:500 EET] 000000a6 ApplicationMg A WSVR0200I: Starting application: FOOEAR | |
| [14.11.2012 10:31:42:500 EET] 000000a6 ApplicationMg A WSVR0204I: Application: FOOEAR Application build level: Unknown | |
| [14.11.2012 10:32:08:718 EET] 000000a6 ResourceMgrIm I WSVR0049I: Binding DefaultEJBTimerDataSource as jdbc/DefaultEJBTimerDataSource |
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 <windows.h> | |
| #include <gl/gl.h> | |
| #include <gl/glu.h> | |
| #define WIN32_LEAN_AND_MEAN | |
| #define WCLASSNAME "HEDE" | |
| #define W 640 | |
| #define H 480 | |
| #define PI (3.141592653589793) |
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 <windows.h> | |
| #include <stdio.h> | |
| #include <math.h> | |
| #include <gl/gl.h> | |
| #include <gl/glu.h> | |
| #define WIN32_LEAN_AND_MEAN | |
| #define WCLASSNAME "HEDE" | |
| #define W 640 |
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 <windows.h> | |
| #include <stdio.h> | |
| #include <math.h> | |
| #include <gl/gl.h> | |
| #include <gl/glu.h> | |
| #define WIN32_LEAN_AND_MEAN | |
| #define WCLASSNAME "HEDE" | |
| #define W 640 |
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 <windows.h> | |
| #include <stdio.h> | |
| #include <math.h> | |
| #include <gl/gl.h> | |
| #include <gl/glu.h> | |
| #define WIN32_LEAN_AND_MEAN | |
| #define WCLASSNAME "HEDE" | |
| #define W 640 |
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 <windows.h> | |
| #define W 640 | |
| #define H 400 | |
| const double xCentre = -0.75; | |
| const double yCentre = +0.0; | |
| const int nx = W; | |
| const int ny = H; |