-
Кои са целите на ЧМИ?
- методологии и процеси за разработване на интерфейси
- техники за оценяване и сравняване на интерфейси
- методи за вложени интерфейси
- разработване на нови интерфейси и техники на взаимодействие
- разработване на описателни и предвиждащи модели и теории на взаимодействие
-
Избройте фазите на информационния процесинг на човек
- Закодиране във форма за вътрешно представяне
-
Сравняване със запомнено представяне
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import sympy | |
| def custom_latex_printer(exp, **options): | |
| from google.colab.output._publish import javascript | |
| url = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.3/latest.js?config=default" | |
| javascript(url=url) | |
| return sympy.printing.latex(exp, **options) | |
| sympy.init_printing(use_latex="mathjax", latex_printer=custom_latex_printer) |
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 | |
| set -x | |
| cd /boot/EFI/ | |
| mv Microsoft/Boot/bootmgfw{,.orig}.efi | |
| cp {grub/grubx64,Microsoft/Boot/bootmgfw}.efi |
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
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: gitea | |
| labels: | |
| app: gitea | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: |
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
| { | |
| "version": "1.0", | |
| "components": [ | |
| "Microsoft.VisualStudio.Workload.ManagedDesktop", | |
| "Microsoft.VisualStudio.Workload.NativeDesktop", | |
| "Microsoft.VisualStudio.Workload.NetWeb", | |
| "Microsoft.VisualStudio.Workload.ManagedGame", | |
| "Microsoft.VisualStudio.Workload.NetCoreTools", | |
| "microsoft.net.componentgroup.targetingpacks.common", | |
| "microsoft.componentgroup.blend", |
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
| PS1='\[\e[31m\][\[\e[m\]\[\e[34m\]\u\[\e[m\]\[\e[31m\]@\[\e[m\]\[\e[33m\]\h\[\e[m\] \[\e[36m\]\w\[\e[m\]\[\e[32m\]$(__git_ps1 " %s")\[\e[m\]\[\e[31m\]]\[\e[m\]\\$ ' |
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 | |
| mkdir $HOME/dot/ | |
| git clone --bare --branch ${1:-master} https://github.com/nikibobi/dotfiles.git $HOME/dot/ | |
| alias dot='/usr/bin/git --git-dir=$HOME/dot/ --work-tree=$HOME' | |
| dot config --local status.showUntrackedFiles no | |
| rm $HOME/.bashrc $HOME/.bash_profile | |
| dot checkout |
I hereby claim:
- I am nikibobi on github.
- I am bosak (https://keybase.io/bosak) on keybase.
- I have a public key ASBoJf3OjAv6Lfc0w9w449ov_9f_6UN1hSMlpILiUYpKxAo
To claim this, I am signing this object:
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
| #include <iostream> | |
| #include <iomanip> | |
| #include <random> | |
| #include <functional> | |
| #include <stdexcept> | |
| #include <vector> | |
| #include <map> | |
| #include <string> | |
| #include <boost/math/special_functions/binomial.hpp> |