Gerne hätte ich gewusst, wie Microsoft auf die Idee kam, dass ich "wollte" durch "Wolfs" ersetzten müsste.
Wie gut dass es noch keinen Sprachassistenten von Microsoft gibt.
Gerne hätte ich gewusst, wie Microsoft auf die Idee kam, dass ich "wollte" durch "Wolfs" ersetzten müsste.
Wie gut dass es noch keinen Sprachassistenten von Microsoft gibt.
/50(?!0)
Auf den Seiten der Gienger Industrie Service (GIS) findet man eine nützliche Empfehlung zur Berechnung der Geschwindigkeit, mit der man Aluminium fräsen sollte. Die folgende Lisp-Code berechnet die Werte für einen 10 mm Fräser mit zwei Schneiden.
(let* ((vc 200) (d1 10) (z 2) (n (/ (* vc 1000) (* 3.14 d1))) (fz (cond ((< d1 5) 0.04) ((< d1 9) 0.05) (t 0.1))) (f (* n fz z))) (format "Drehzahl n: %.0f U/min Vorschub f: %.0f mm/s" n (/ f 60)))Man sollte also mit 6 - 7 Tausend Umdrehungen und 2 cm Vorschub pro Sekunde fräsen. Somit reicht eine einfache Bohrmaschine nicht aus, da die meist nur bis maximal 3 Tausend Umdrehungen drehen. Viele schaffen auch nur die Hälfte und selbst die QUADRILL DR von Festool schafft mit ihren vier Gängen nur maximal 4 Tausend Umdrehungen. Aber zumindest könnte man damit im unteren Ende der GIS-Empfehlung (vc = 125) mit 13 mm Vorschub pro Sekunde fräsen.
Bei Stahl sieht die Sache etwas anders aus.
(let* ((vc 50) (d1 10) (z 2) (n (/ (* vc 1000) (* 3.14 d1))) (fz (cond ((< d1 5) 0.02) ((< d1 9) 0.03) (t 0.06))) (f (* n fz z))) (format "Drehzahl n: %.0f U/min Vorschub f: %.0f mm/s" n (/ f 60)))Hier wären nur 1500 Umdrehungen für 3 mm Vorschub nötig. Allerdings ist fraglich, ob das Getriebe das Drehmoment wirklich aushalten würde. Ich denke eher nicht, da es ja eigentlich eine Bohrmaschine ist.
Fazit: zum Fräsen von Aluminum kann man sich mit einer relativ teuren Festool QUADRILL DR behelfen aber in den für weiches Aluminium optimalen Bereich kommt man damit nicht. Für das gleiche Geld bekommt man von Kress sowohl eine Bohrmaschine (650 BS QuiXS) als auch einen Fräser (800 FME).
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w' if [ "$TERM" = xterm ] ; then PS1="\[\e]0;$PS1\a$(tput bold)\]\$? \! $PS1\\$\[$(tput sgr0)\] " else PS1="\[$(tput bold)\]\$? \! $PS1\\$\[$(tput sgr0)\] " fiThe prompt prints the exit code of the last command, the history id if the current command, the user name, the host name and the working directory.
It is also possible to send the prompt to other systems accessed with SSH. For this it is necessary to export the PS1 environment variable:
export PS1The SSH daemon of the target system must accept the variable. Put the following line in /etc/ssh/sshd_config:
AcceptEnv PS1And add the following line to your local SSH configuration in .ssh/config:
SendEnv PS1After that you have on your local and target system the same prompt without the need to synchronize any bashrc files.
#include <stdio.h> #include <string.h> #include <sys/acct.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <fcntl.h> #define STR(I) #I int main(int argc, char **argv) { char debian_default[] = "/var/log/account/pacct"; char usage[] = "Usage: acctmem accounting-file\n"; char *file; if (argc == 2) { if (argv[1][0] == '-' && argv[1][1] == 'h') { fprintf (stderr, "%s", usage); return 0; } else { file = argv[1]; } } else { file = debian_default; } printf ("Using %s\n", file); int fd = open (file, O_RDONLY); if (fd < 0) { perror ("Can not open file"); return 1; } struct acct_v3 entry; for (;;) { ssize_t bytes = read (fd, &entry, sizeof entry); if (bytes < 0) { perror("Can not read file"); return 1; } if (bytes == sizeof entry) printf ("%6u: %-" STR(ACCT_COMM) "s(%3u): %uk\n", entry.ac_uid, (char*)&(entry.ac_comm), entry.ac_exitcode, entry.ac_mem); else break; } return 0; } // Local Variables: // compile-command: "gcc -o acctmem acctmem.c" // End:
<IfModule mod_proxy.c> ProxyPass /centos http://mirror.centos.org/centos ProxyPassReverse /centos http://mirror.centos.org/centos ProxyRemote * http://proxy:3128 </IfModule>It is necessary to enable the Apache modules proxy and proxy_http. After that it is possible to start the installation with the IP address of the Apache proxy and the URL /centos/5/os/i386.
/etc/apache2/mods-available/include.loadbut lacks a configuration file. This configuration enables SSI for SHTML files.
<IfModule mod_include.c> <Location /> Options +Includes AddType text/html .shtml AddOutputFilter INCLUDES .shtml DirectoryIndex index.shtml </Location> </IfModule>