ابتدا سورس کد را دانلود کنید
بعد هرچه بسته نیازمند است دانلود کنید
بعد روش سابق
./configure --with-features=huge
make
#!/usr/bin/env bash | |
awk -F, ' | |
BEGIN { | |
printf("\"id\",\"choices\",\"group\"\n"); | |
} | |
{ | |
if (NR > 1) | |
{ | |
str = ""; | |
for(i = 7; i <= NF; i++) |
ابتدا سورس کد را دانلود کنید
بعد هرچه بسته نیازمند است دانلود کنید
بعد روش سابق
./configure --with-features=huge
make
duff -r * > duplicate.txt | |
csplit -z -f dup_ duplicate.txt /files\ in\ cluster/ {*} | |
for dup in `ls dup_*`; | |
do | |
cat $dup | while read l; | |
do | |
if [[ $l =~ .*_.* ]]; | |
then | |
echo "keep: $l"; |
:h text-objects --> i{
:h tabpage --> handle tabs
cd ~/doc/code/commits | |
git commit --allow-empty -am "$1" | |
git push > /dev/null 2>&1 & |
#!/usr/bin/env bash | |
# soft2hard.sh by Ryan Helinski | |
# Replace a soft (symbolic) link with a hard one. | |
# | |
# $1 is name of soft link | |
# Returns 0 on success, 1 otherwise | |
# | |
# Example: To replace all the soft links in a particular directory: | |
# find ./ -type l | tr \\n \\0 | xargs -0 -n 1 soft2hard.sh | |
# |
(function(window, document) { | |
// The end user should be allowed to disable synchronization. This button | |
// is optional on the page | |
var syncAllow = true; | |
var syncButton = document.querySelector('.sync-button'); | |
// If the sync button exists bind a click event and toggle the syncAllow | |
// boolean. Set the value of the button. | |
if(syncButton) { |
#https://askubuntu.com/questions/148715/how-to-fix-package-is-in-a-very-bad-inconsistent-state-error/170808#170808?newreg=465ded63100d49fb994916f9357b88e1 | |
sudo dpkg --remove --force-remove-reinstreq <pkg name> |
- [ ] Math | |
- [ ] Linear Algebra | |
- [ ] Lay - Linear Algebra | |
- [ ] 18.06 Linear Algebra | |
http://www.scotthyoung.com/blog/mit-challenge/#more-link1806 | |
- [ ] Burke Lecture Notes | |
http://www.math.washington.edu/~burke/crs/407/lectures/ | |
- [ ] Coding The Matrix | |
http://www.amazon.com/dp/0615880991/?tag=coursera-course198-20 | |
- [ ] Quantifying Uncertainty |