start
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| start [2024/11/21 12:56] – dokuroot | start [2025/09/30 12:42] (current) – dokuroot | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== RANDOMIZED THINGS FOR THE QUARK TOP ====== | ====== RANDOMIZED THINGS FOR THE QUARK TOP ====== | ||
| - | A hint as to why this page is names as such: https:// | + | A hint as to why this page is named as such: https:// |
| \\ | \\ | ||
| + | |||
| + | |||
| + | [[taskwarrior-notes|Notes on Taskwarrior]] | ||
| + | |||
| + | [[iloveclim-dep-notes|Notes on iLOVECLIM dependencies]] | ||
| + | |||
| + | ====== Admunix related things ====== | ||
| + | |||
| + | ==== Working as www-data " | ||
| + | |||
| + | < | ||
| + | sudo su - www-data -s /bin/bash | ||
| + | </ | ||
| ====== Network related things ====== | ====== Network related things ====== | ||
| Line 14: | Line 27: | ||
| < | < | ||
| - | dig iloveclim.eu | + | $ dig iloveclim.eu |
| </ | </ | ||
| which, if functionnal will respond something like | which, if functionnal will respond something like | ||
| Line 21: | Line 34: | ||
| </ | </ | ||
| Trying a non-existing sub-domain: | Trying a non-existing sub-domain: | ||
| + | |||
| < | < | ||
| - | dig toto.iloveclim.eu | + | $ dig toto.iloveclim.eu |
| + | toto.iloveclim.eu. IN A | ||
| </ | </ | ||
| - | We obtain: | + | To check with a different name server, provide the nameserver ip as in (e.g. cloudfare): |
| < | < | ||
| - | toto.iloveclim.eu. IN A | + | $ dig @1.1.1.1 |
| </ | </ | ||
| + | (this allows to check for DNS failures in current nameserver) | ||
| + | ====== FORTRAN related things ====== | ||
| + | ==== Create a callgraph ==== | ||
| + | |||
| + | We can use valgrind to create a callgraph as follows. After compiling the code with the -pg option run: | ||
| + | < | ||
| + | valgrind --dsymutil=yes --tool=callgrind myexec.x | ||
| + | </ | ||
| + | After the run, obtained '' | ||
| + | < | ||
| + | gprof2dot.py -n0 -e0 ./ | ||
| + | </ | ||
| + | Then use dot to create the actual graph: | ||
| + | < | ||
| + | dot -Tpng out.dot -o out.png | ||
| + | </ | ||
| + | In the case you want to filter out the system calls from the graph, the solution of : [[https:// | ||
start.1732193814.txt.gz · Last modified: 2024/11/21 12:56 by dokuroot
