This file contains 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
S.compt | |
6019 1818 | |
3359 7178 | |
6052 3756 | |
9362 9064 | |
2089 3498 | |
2623 1800 | |
1620 5438 | |
6586 1092 | |
5184 5191 |
This file contains 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
/* | |
================================ Compile as a .Net DLL ============================== | |
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library /out:TestAssembly.dll TestAssembly.cs | |
*/ | |
using System.Windows.Forms; | |
namespace TestNamespace |
This file contains 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 "win32_net.h" | |
#include <windows.h> | |
#include <wininet.h> | |
#pragma comment (lib, "Wininet.lib") | |
#include <stdio.h> | |
#include <wchar.h> | |
#include <cwctype> | |
#include <algorithm> |
This file contains 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 "HttpRequest.h" | |
#include <sstream> | |
HTTP::HttpRequest::HttpRequest(const std::wstring& user_agent) | |
{ | |
_connection = InternetOpenW(user_agent.c_str(), | |
INTERNET_OPEN_TYPE_DIRECT, | |
NULL, NULL, 0); | |
if (_connection == NULL) |
This file contains 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
#!/bin/bash | |
# Script pour cree un IPsec ikv2 VPN Server | |
# Tested on Archlinux - ubuntu 14.4 | |
# Lundi 13 September 2020 | |
# thanx to https://www.digitalocean.com/community/tutorials/how-to-set-up-an-ikev2-vpn-server-with-strongswan-on-ubuntu-18-04-2 | |
_7mer=`tput setaf 1` | |
_5dar=`tput setaf 2` | |
_5chin=`tput bold` | |
wali=`tput sgr0` |