- Deactivate flux or other programs changing screen luminosity
- Put in do not disturb mode
- Set max luminosity on screen
- Remove screen saver
- Profil couleur LCD
- Clean screen
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
# Use tmux plugin manager | |
# https://github.com/tmux-plugins/tpm | |
# tmux to use non login shell | |
set -g default-command "${SHELL}" | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
set -g @yank_selection_mouse 'clipboard' | |
set -g escape-time 10 |
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
import time | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
import os | |
# Get images to upload | |
img_dir = 'img' |
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
pip install selenium | |
wget https://chromedriver.storage.googleapis.com/2.43/chromedriver_mac64.zip | |
unzip chromedriver_mac64.zip | |
chmod +x chromedriver | |
mkdir -p ~/bin | |
mv chromedriver ~/bin/chromedriver | |
rm chromedriver_mac64.zip | |
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bashrc | |
source ~/.bashrc |
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
using UnityEngine; | |
using UnityEditor.Build; | |
using UnityEditor.Build.Reporting; | |
using UnityEditor; | |
using UnityEditor.iOS.Xcode; | |
using System.IO; | |
public class ExcemptFromEncryption : IPostprocessBuildWithReport // Will execute after XCode project is built | |
{ | |
public int callbackOrder { get { return 0; } } |
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
using UnityEngine; | |
using UnityEditor.Build; | |
using UnityEditor.Build.Reporting; | |
using UnityEditor; | |
public class IncrementBuildNumber : IPreprocessBuildWithReport | |
{ | |
public int callbackOrder { get { return 0; } } // Part of the IPreprocessBuildWithReport interface | |
public void OnPreprocessBuild(BuildReport report) |
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 "white rose started" | |
a=1 | |
while true | |
do | |
sleep 600 | |
#afplay /System/Library/Sounds/Tink.aiff | |
say Computer loves you Marc | |
echo $a min | |
let "a += 1" | |
done |
this is a list tutorials for building web application using backbone.js and yeoman. We are building a Photo Gallery JS App from Backbone Fundamentals
https://bootstrap.pypa.io/get-pip.py
Sauver sur le bureau sous le nom get-pip.py
Ouvrir terminal
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
<html> | |
<head> | |
<title>Canvas starter</title> | |
<style type="text/css"> | |
body{ | |
margin: 0; | |
} | |
</style> | |
</head> |
NewerOlder