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
| <? | |
| $post = file_get_contents('php://input'); | |
| if ( strlen($post) > 10 ) | |
| { | |
| file_put_contents("cam", $post); | |
| die(); | |
| } | |
| if ( $_SERVER["QUERY_STRING"] == "" ) | |
| { | |
| ?> |
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
| @echo off | |
| set VC=%VS80COMNTOOLS%\..\..\VC | |
| call "%VC%\vcvarsall.bat" | |
| set path=%VC%\bin\;%VC%\..\Common7\IDE\ | |
| set include=%VC%\include\;%VC%\PlatformSDK\Include\ | |
| set lib=%VC%\PlatformSDK\Lib\;%VC%\lib\ | |
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
| class CJsFunctions | |
| { | |
| struct TTimer | |
| { | |
| INT nShots; | |
| CString strCall; | |
| INT lLast; | |
| INT lInterval; | |
| DWORD dwId; | |
| }; |
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
| attrib *.* | |
| A GuiOverlay\traffic2\10loading(1).png | |
| H GuiOverlay\traffic2\10loading(1).png.mftc | |
| H GuiOverlay\traffic2\10loading(1).png.size | |
| A GuiOverlay\traffic2\10loading(2).png | |
| H GuiOverlay\traffic2\10loading(2).png.mftc | |
| H GuiOverlay\traffic2\10loading(2).png.size | |
| A GuiOverlay\traffic2\10loading(3).png | |
| H GuiOverlay\traffic2\10loading(3).png.mftc |
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
| <html> | |
| <head> | |
| <title>Night rider</title> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> | |
| <style type="text/css"> | |
| html { height: 100%; width:100%} | |
| body { width:100%; height: 100%; margin: 0; padding: 0 } | |
| #map-canvas { width:100%; height: 100%; z-index:2} | |
| #map-canvas-small { | |
| position:absolute; width:300px; height:300px; right:100px; top:100px; z-index:5; |
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 <arduino.h> | |
| // Itead studio 2.4 TFT Touch shield for arduino (Arduino Uno) | |
| // http://wiki.iteadstudio.com/2.4_TFT_LCD_Touch_shield | |
| class CCalibration | |
| { | |
| // Carlos E. Vidales | |
| // http://www.embedded.com/design/system-integration/4023968/How-To-Calibrate-Touch-Screens | |
| // input range 0..1024 |
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
| // spipe.cpp : Defines the entry point for the console application. | |
| // | |
| #include "stdafx.h" | |
| //#include <signal.h> | |
| BOOL m_bRunning = FALSE; | |
| class CNetwork { | |
| public: |
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 <pch.h> | |
| #include "Tables.h" | |
| #define foreach(decl) for ( decl = m_pListFirst; pElement; pElement = pElement->m_pNext ) | |
| /*virtual*/ | |
| void CTableWnd::GetClientRect( LPRECT prcRect ) | |
| { | |
| _ASSERT(prcRect); | |
| CRect *pRect = (CRect*) prcRect; |
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
| // TimeZonesDlg.cpp : implementation file | |
| // | |
| #include "stdafx.h" | |
| #include "TimeZonesMFC.h" | |
| #include "TimeZoneDlg.h" | |
| #ifdef _DEBUG | |
| #define new DEBUG_NEW | |
| #endif |
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
| // fourier.cpp : Defines the entry point for the console application. | |
| // | |
| #include "stdafx.h" | |
| #include <math.h> | |
| #include <iostream> | |
| using namespace std; | |
| //#include <windows.h> | |
| typedef float FLOAT; |
OlderNewer