Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
Discover gists
--- | |
### ref: https://stackoverflow.com/questions/48825583/in-ansible-how-do-you-change-a-existing-dictionary-hash-values-using-a-variable | |
- name: replace the value of dictionary variable | |
hosts: localhost | |
gather_facts: no | |
vars: | |
fact_process: | |
cmd_check: ok | |
cmd_name: node1 | |
cmd_status: error |
Video tutorial: https://www.youtube.com/watch?v=GSbwYbfVE6c
Make sure your browser's download folder is empty, downloading all these media can flood your download folder with files and it'll be annoying to move later.
- Login weverse
- Open member's DM
- Open development console (on chrome or firefox press F12)
- Navigate to the console tab
Для каждой модели роутера процесс установки различается. Ищите инструкции для своей модели в Google.
Чтобы подключиться по SSH, на роутере должен быть установлен пароль. Его можно установить в веб-интерфейсе. Для Windows используйте программу PuTTY, в macOS/Linux достаточно открыть системное приложение Терминал и ввести там следующую команду:
ssh root@IP-адрес_роутера
IP адрес роутера в стандартной конфигурации — 192.168.1.1
@ECHO OFF | |
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK | |
if NOT EXIST Private goto MDPrivate | |
:CONFIRM | |
echo Are you sure to lock this folder? (Y/N) | |
set/p "cho=>" | |
if %cho%==Y goto LOCK | |
if %cho%==y goto LOCK | |
if %cho%==n goto END | |
if %cho%==N goto END |
An guide how to activate Windows 11 Pro for free
Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet
The answer is yes! You can switch from almost any edition to Pro completely for free!
People which already have Pro, but not activated, can skip to this step.
What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:
#!/bin/bash | |
case $# in | |
0) | |
echo "Usage: $0 {start|stop}" | |
exit 1 | |
;; | |
1) | |
case $1 in | |
start) |
HTML, CSS and JS templates including:
Sometimes you want to figure out what path your code takes when getting executed. This may be helpful for investigating inconsistent behaviour between function calls or finding where exactly in the bundled/minified code your function is located
// Logs the current stack trace of the code, also logs any provided parameters
/*
* YOUR CODE HERE
*/
console.trace(var1, var2);