Тёмный
softwarecarpentry
softwarecarpentry
softwarecarpentry
Подписаться
Converting an Indented List to HTML
16:13
12 лет назад
Комментарии
@CreachterZ
@CreachterZ 9 дней назад
Job control is super important if you don’t want your foreground jobs dying when you lose connection to a server.
@CreachterZ
@CreachterZ 9 дней назад
I came here for PGID. :(
@The_Frozen_1
@The_Frozen_1 Месяц назад
This is EXCELLENT!!!!!!! Thank you for giving us the straight goods with out a bunch of sales jargon!
@ryhisner
@ryhisner 8 месяцев назад
Why does head -1 *.pdb ...produce the file name but when you do what amounts to the exact same command in a loop for file in *.pdb; do head -1 $file; done ...the file name does not appear? This doesn't make sense.
@ryhisner
@ryhisner 8 месяцев назад
The section from 5:30 to the end is entirely opaque to someone not already familiar with the shell, i.e. anyone who might be watching this video.
@CreachterZ
@CreachterZ 5 дней назад
What are you talking about? This is all pretty basic.
@ryhisner
@ryhisner 9 месяцев назад
So I typed in the exact command described around 7:20-using a working directory with .txt files in it-and it didn't work at all. Instead, I got: wc: find: open: No such file or directory wc: .: read: Is a directory wc: -name: open: No such file or directory wc: *.txt: open: No such file or directory 0 total There does not appear to be any distinction between "back quotes" and normal quotes on my computer though, so is that the problem?
@ryhisner
@ryhisner 9 месяцев назад
Also, super annoying that he doesn't just tell us what the commands tail, split, cut, uniq, <, and ? do. It takes a long time to look these up individually if you don't know what you're doing (i.e. everyone who's watching this), whereas it would be super quick to learn if he just briefly ran through them.
@ryhisner
@ryhisner 9 месяцев назад
stdin and stdout don't seem to be explained well. It seems like he says that stdin is, by default, "whatever we type in" and that stdout is, by default, to print whatever the output of the program is. But then for the command [wc -l *.pdb > lengths] he says, "Since we've provided some file names as arguments, wc read from them instead of standard input." If standard input is "whatever we type," then how are file names that we typed an alternative that is read "instead of standard input"? This makes no sense to me.
@SkeenCharles
@SkeenCharles Год назад
Very helpful stuff
@SkeenCharles
@SkeenCharles Год назад
Please keep this - I will need to refer to it again. Was a good find
@SkeenCharles
@SkeenCharles Год назад
Very happy to have found this
@SkeenCharles
@SkeenCharles Год назад
I find this very useful!
@marnierogers3931
@marnierogers3931 Год назад
This is the most useful resource regarding MPI I've found on the internet. Thanks for creating this video :)
@MakeItWork256
@MakeItWork256 Год назад
great videos!
@mateuspopoff
@mateuspopoff Год назад
great video, thank you!
@k.chriscaldwell4141
@k.chriscaldwell4141 Год назад
What’s a millivader in Fahrenheit, please?! 😂 Thanks for the tutorial.
@McWorldsSoCool
@McWorldsSoCool Год назад
11 Years ago, and couldn't be more helpful!
@maxsimes
@maxsimes Год назад
excellent explanation
@culturedgator
@culturedgator Год назад
😂💯
@TaskForce-wb7nq
@TaskForce-wb7nq Год назад
not the best tutorial but still good
@TaskForce-wb7nq
@TaskForce-wb7nq Год назад
thanks man, much better with video
@MrSemih-wb6qr
@MrSemih-wb6qr Год назад
nice bro thx
@StrangePath
@StrangePath Год назад
Thank you for making this. This video makes it so much easier to understand while learning TOP. I know the video is old but the information is still the same to this day.
@miikoa
@miikoa Год назад
Thank you. This information is very helpful;)
@pgalaxy
@pgalaxy Год назад
This is great material thanks with a lot of historical references, the name of the trainer/lecturer should be made available for reference.citation, thanks although I can reuse the material under cc, I want to use the name of the trainer in my citation
@AmirHosseinHonardust
@AmirHosseinHonardust 2 года назад
11 years after this person saying that it is a some what out-of-fashion topic, i find this topic critical to work work with my TUI setup. This is an absolute gem.
@nancytcole
@nancytcole 2 года назад
While I realize this video is 11 years old, some of your syntax is incorrect throughout these videos.
@droctowiz5968
@droctowiz5968 2 года назад
Why did the all permission change at 7:30 while only the group permission was changed by the command chmod ?
@liminal27
@liminal27 3 года назад
"....but there's another problem coming up fast behind us here on the highway of life...."
@steveq1881
@steveq1881 3 года назад
Thanks, this video really helped out
@chinhchang4850
@chinhchang4850 3 года назад
These videos will help me to learn 'Unix Shell', thanks!
@monicanagaraj1828
@monicanagaraj1828 3 года назад
really good content!
@i7sharp
@i7sharp 3 года назад
Thank you very much for this! VERY INTERESTING!
@XinhLe
@XinhLe 3 года назад
i wished I know this in 2011 when I was in JP
@michaelbenn4741
@michaelbenn4741 3 года назад
It's not very often that I look for the solution to a problem and actually find something that discusses exactly the problem I have, but this video does just that :-) I am building an astrophotography weather monitoring station, which checks wind, rain, temperature, humidity and how good the 'seeing' is, which then will send me an SMS if things look good for an astrophotography sesssion. I tried to implement the star counting algorithm you put forward here on an ESP32-CAM module, and was having all sorts of problems with the code crashing during the recurison, then I engaged my brain and added some debug code and found that the issue is that your suggested approach results in an infinite recursion, as processing a BLACK pixel at x, y, then calls the Fill function for (x-1, y), (x+1, y), (x, y-1) and (x, y+1) (excluding edge cases), but calling Fill with the first set of prarameters, then wants to do a fill on the x, y pixel we're already pointing at, then round and round we go, LOL. As we will have already processed the pixels above and to the left of the current pixel, we do not need the code that calls fill for (x-1, y) and (x, y-1). Removing the two if statements that potentially call Fill with x-1 or y-1 sorted me out straight away! Many thanks for providing the groundwork though!
@TuMadre8000
@TuMadre8000 3 года назад
grande valentino
@igorognev9787
@igorognev9787 3 года назад
Thank you!
@drandrewsanchez
@drandrewsanchez 3 года назад
Hello, thank you for sharing this. Would you happen to have a more descriptive example of a file system, for instance, one that is actually on your system? Perhaps you could share screenshots of the system.
@JohnSmith-ok9sn
@JohnSmith-ok9sn 4 года назад
Man, You clearly know what you're doing, but(!), the tone of your voice, and intonation, makes one wanna go somewhere, and step of a bridge in a profound depression, or something like that!
@imarginacionmxd
@imarginacionmxd 4 года назад
That is amazing!
@charmendro
@charmendro 4 года назад
Does this work for Windows as well? EDIT : must install something to make it work, i installed Cygwin
@annettestr1
@annettestr1 4 года назад
Excellent! Thank you.
@TheSturgeonFish
@TheSturgeonFish 4 года назад
at 1:50 "MPI is a standard library for message passing" that statement is wrong. MPI is not a library at all, it is an interface specification and libraries are made from that specification, an example being openMPI
@farukkilic6010
@farukkilic6010 4 года назад
Regular and clear expression. I wish you continued success. Dr Faruk KILIÇ
@MrWebon
@MrWebon 4 года назад
This is really good, thank you
@kiranreddy6725
@kiranreddy6725 4 года назад
X=5 Y=5 Id(x) is equal to id(y) Means both x and y are pointing to the same memory location Can we say it as aliasing
@tobiassugandi
@tobiassugandi 5 лет назад
nice explanation
@jhema3295
@jhema3295 5 лет назад
Nice
@tillon98
@tillon98 5 лет назад
good video I am learning a lot c:
@Saeed-AlQurashi
@Saeed-AlQurashi 5 лет назад
Hi there. may i kno what u said in interface testing point, after its like a contract in business if party A .......... and thanks