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:
--- | |
AlignAfterOpenBracket: AlwaysBreak | |
AlignConsecutiveAssignments: "false" | |
AlignConsecutiveDeclarations: "false" | |
AllowAllConstructorInitializersOnNextLine: "true" | |
AllowShortBlocksOnASingleLine: Never | |
AllowShortCaseLabelsOnASingleLine: "false" | |
AllowShortFunctionsOnASingleLine: Empty | |
AllowShortIfStatementsOnASingleLine: Never | |
AllowShortLambdasOnASingleLine: Inline |
#include <iostream> | |
#include <iomanip> | |
#include <random> | |
#include <functional> | |
#include <stdexcept> | |
#include <vector> | |
#include <map> | |
#include <string> | |
#include <boost/math/special_functions/binomial.hpp> |
I hereby claim:
To claim this, I am signing this object:
#!/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 |
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\]\\$ ' |
{ | |
"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", |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: gitea | |
labels: | |
app: gitea | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: |
Кои са целите на ЧМИ?
Избройте фазите на информационния процесинг на човек
Сравняване със запомнено представяне
#!/bin/bash | |
set -x | |
cd /boot/EFI/ | |
mv Microsoft/Boot/bootmgfw{,.orig}.efi | |
cp {grub/grubx64,Microsoft/Boot/bootmgfw}.efi |
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) |