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
Variable | |
Age >65 Euro Stat https://ec.europa.eu/eurostat/cache/metadata/en/demo_pop_esms.htm | |
Age median OWID https://ourworldindata.org/grapher/median-age?tab=table&time=2022 | |
Population WPR https://worldpopulationreview.com/countries/sweden-population | |
Male/Female WPR https://worldpopulationreview.com/countries/sweden-population | |
Age median WPR https://worldpopulationreview.com/countries/france-population | |
Diabetes prev | |
DWB https://data.worldbank.org/indicator/SH.STA.DIAB.ZS?locations=SE | |
WPR https://worldpopulationreview.com/country-rankings/diabetes-rates-by-country | |
IDF https://idf.org/our-network/regions-members/europe/members/125-belgium.html |
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
#pragma warning(disable : 4996) | |
#include <stdio.h> | |
#include <iostream> | |
#include <string> | |
#include <sstream> | |
#include "openssl/dh.h" | |
#include "openssl/bn.h" | |
#include "openssl/pem.h"; | |
using namespace std; |
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
#apache2.conf | |
HostnameLookups off | |
Timeout 300 | |
AccessFileName .htaccess | |
ServerTokens Prod | |
ServerSignature Off | |
TraceEnable Off | |
KeepAlive On |
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 | |
BRANCH="master" | |
git remote update | |
//Were are we locally | |
LAST_UPDATE=`git show --no-notes --format=format:"%H" $BRANCH | head -n 1` | |
//Were are we remote |
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
<?php | |
namespace MyNS; | |
/** | |
* Description of Test | |
* | |
* @author Victor Angelier | |
*/ | |
class Test | |
{ |
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
"autoload": { | |
"psr-4": { | |
"MyNS\\": "src/" | |
} | |
} |
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
require_once "../vendor/autoload.php"; | |
use MyNS\Test; | |
$c = new Test(); |
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
@echo off | |
color 0A | |
ping -4 www.google.com -n 1 | find /I /N "0%% loss" > pingresult.txt | |
SET /P PingTest= < pingresult.txt | |
echo %PingTest% | |
(echo %PingTest% | findstr /i /c:"0%% loss" >nul) && (echo Variable contains the string "0%% loss") || (echo Variable does not have the string "0%% loss") |
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
// Function to get the client REMOTE IP address | |
function remote_addr() { | |
$ipaddress = ''; | |
if (getenv('HTTP_CLIENT_IP')) | |
$ipaddress = getenv('HTTP_CLIENT_IP'); | |
else if(getenv('HTTP_X_FORWARDED_FOR')) | |
$ipaddress = getenv('HTTP_X_FORWARDED_FOR'); | |
else if(getenv('HTTP_X_FORWARDED')) | |
$ipaddress = getenv('HTTP_X_FORWARDED'); | |
else if(getenv('HTTP_FORWARDED_FOR')) |
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
add_header Content-Security-Policy "default-src 'self' data: https: https://*.anticapitalist.party https://*.github.com; form-action 'self'; child-src 'self'; script-src 'self' 'unsafe-eval' https://maxcdn.bootstrapcdn.com https://code.jquery.com; connect-src 'self' https: wss:; img-src 'self' data:; style-src 'self' 'unsafe-inline' https://fonts.gstatic.com https://fonts.googleapis.com https://code.jquery.com https://maxcdn.bootstrapcdn.com; font-src 'self' https://maxcdn.bootstrapcdn.com https://fonts.gstatic.com https://fonts.googleapis.com; object-src 'none';" |
NewerOlder