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
//! Actor network (policy) | |
//! Le module actor contient tout ce qui est lié à la politique stochastique (l’Actor). Ce module peut inclure : | |
//! - Réseau de l’Actor : La structure et le forward pass. | |
//! - Paramètres de sortie : Moyennes, écart type/log-écart type, distributions. | |
//! - Calculs spécifiques : Gestion de l'entropie, application de transformations (par exemple, TANH). | |
//! | |
//! On modélise un réseau de neurones (NN) chargé de produire une distribution d’actions (ou des paramètres d’action) pour le trading. | |
//! L’entrée du NN correspond à l’état du marché (features normalisées). | |
//! La sortie correspond soit aux logits (pour un policy discret) ou aux paramètres d’une distribution gaussienne (pour des actions continues). | |
//! En scalping, les actions peuvent être : acheter / vendre / rester à l’écart, éventuellement avec un continuous size (pour la taille de position). |
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
#!/bin/bash | |
# Replace with your personal GitLab access token | |
PRIVATE_TOKEN="YOUR_PRIVATE_TOKEN" | |
# Replace with the URL of your GitLab instance | |
GITLAB_URL="https://gitlab.example.com" | |
# Backup file | |
BACKUP_FILE="gitlab_ci_cd_variables_backup.txt" | |
# Function to export instance-level CI/CD variables |
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
#/bin/bash | |
VOLUME_NAME=CLEF | |
DMG_PATH=/Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg | |
hdiutil attach ${DMG_PATH} -noverify -nobrowse -mountpoint /Volumes/install_app | |
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Sierra | |
hdiutil resize -size 8g /tmp/Sierra.sparseimage | |
hdiutil attach /tmp/Sierra.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build | |
rm /Volumes/install_build/System/Installation/Packages | |
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/ |
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
http://pentestmonkey.net/blog | |
http://jeremiahgrossman.blogspot.com | |
http://www.darknet.org.uk | |
http://spylogic.net | |
http://taosecurity.blogspot.com | |
http://www.room362.com | |
http://blog.sipvicious.org | |
http://blog.portswigger.net | |
http://blog.c22.cc | |
http://carnal0wnage.blogspot.com |
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
# TRANSLATOR(s): Martin Letellier, Jean-Baptiste Alleaume | |
fr: | |
language_name: "Français" | |
root: &root "Accueil" | |
how_can_we_help: "Support ETD Solutions" | |
browse_topics: "Parcourir" | |
support_team: "Equipe Support" | |
nothing_here: "Rien à voir ici !" |
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
google-site-verification: googledbd823a99be2ad9e.html |
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
## Mod_rewrite in use. | |
RewriteEngine On | |
# Sitemap dynamique | |
RewriteRule sitemap.xml sitemap.php [L] |
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
<?php | |
header('Content-Type: text/xml; charset=utf-8'); | |
echo file_get_contents("http://[WEBSITEURL]/index.php?option=com_osmap&view=xml&id=1"); |
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
h2:before { | |
display: block; | |
position: absolute; | |
left: -1050px; | |
top: 50%; | |
background-color: #ecc873; | |
height: 1px; | |
width: 1000px; | |
margin-top: -0.5px; | |
content: " "; |
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
#!/usr/bin/env bash | |
### | |
# Label definitions | |
### | |
declare -A LABELS | |
# Plateforme | |
LABELS["framework"]="BFD4F2" | |
LABELS["app"]="BFD4F2" |
NewerOlder