- Select audio section
- Dialogue -> Balanced Male Voice (Can select anything else)
- Choose Audio effect (on top, then on Audio Track Mixer), there is left left chevron icon, click on it
- 4 vertical grey color bar, click on dropdown, Noice reduction/restore -> De noice
- Change settings and preview output
- Furthor adjustment, click dropdown in beelow row, then DeReverb
L'UX et l'UI sont deux notions étroitement liées qui vont permettre à un site ou à une interface de se distinguer.
L'UX (User Experience) se concentre principalement sur l'utilisateur et va chercher à répondre à un besoin, tandis ce que l'UI (User Interface) va enjoliver cette même interface pour rendre la navigation plus confortable.
Afin d'avoir une expérience utilisateur adaptée à son projet, il est important de se poser les bonnes questions et de suivre quelques étapes.
Il est intéressant de chercher à connaitre ses utilisateurs en se posant quelques questions utiles à notre projet :
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 | |
set -e | |
# See also: https://github.com/frost-nzcr4/find_forks (same thing but in python) | |
origin_url="$(git remote show origin | grep 'Fetch URL:' | sed 's+.*: ++')" | |
full_repo_name="$(echo "$origin_url" | sed 's+.*github.com/++ ; s+\.git$++')" | |
forks_url="https://api.github.com/repos/${full_repo_name}/forks" |
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
sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/untitle --nointeraction | |
https://www.geekrar.com/create-macos-catalina-iso-file/ | |
https://superuser.com/questions/1351460/how-can-i-install-a-macos-vm-guest-under-virtualbox-on-a-mac-host/1351461#1351461 | |
VBoxManage setextradata "macOS Catalina" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "MacBookPro11,3" | |
VBoxManage setextradata "macOS Catalina" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" | |
VBoxManage setextradata "macOS Catalina" "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" | |
VBoxManage setextradata "macOS Catalina" "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" | |
VBoxManage setextradata "macOS Catalina" "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 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
#!/bin/bash | |
#################################### | |
# Config | |
################## | |
HTTPROBE_CONCURRENCY=100 | |
HTTPROBE_TIMEOUT=3000 | |
DIRSEARCH_THREADS=50 |
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
Malishevë, Kosovo | |
Prizren, Kosovo | |
Zubin Potok, Kosovo | |
Kamenicë, Kosovo | |
Viti, Kosovo | |
Shtërpcë, Kosovo | |
Shtime, Kosovo | |
Vushtrri, Kosovo | |
Dragash, Kosovo | |
Podujevë, Kosovo |
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
var getFullPath = function(pathObj) { | |
var out = ''; | |
var sep = '/'; | |
var folderIter = pathObj.getParents(); | |
while(folderIter.hasNext()) { | |
out += sep + folderIter.next().getName(); | |
} | |
out += sep + pathObj.getName(); | |
return out; | |
}; |
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
-- Tested on MacOS 10.14 | |
-- May not work for versions below or above | |
tell application "System Preferences" | |
reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess" | |
end tell | |
tell application "System Events" | |
tell application process "System Preferences" | |
-- set frontmost to true |
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
Star Wars Galaxy of Heroes Online Hack and Cheats | |
Star Wars Galaxy of Heroes Hack will let you to buy all items for free. Below you will see all the cheats needed to hack Star Wars Galaxy of Heroes These Cheats for Star Wars Galaxy of Heroes work on all iOS and Android devices. You will also not need a jailbreak or rooted phone. Using our website you no longer need to download a hack tool, so it is safer. If you don’t know how to use the hack for Star Wars Galaxy of Heroes you will see instructions below. | |
Anti-Ban Protection : Yes | |
Undetectable Script : Yes | |
Tested and works perfectly. | |
Star Wars Galaxy of Heroes Online Hack Features: |
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
sudo sysctl -w kern.sysv.shmmax=$((1048576 * 256)) | |
sudo sysctl -w kern.sysv.shmall=$((1048576 * 256)) | |
sysctl kern.sysv.shmmax | |
sysctl kern.sysv.shmget | |
cat /etc/sysctl.conf |