This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. /home/pawel/.emacs 9656 Emacs-Lisp ~/.emacs | |
plotter.sh 366 Shell-script[bas ~/studia/Mathematica/String/test/plotter.sh | |
company-autoloads.el 6505 Emacs-Lisp ~/.emacs.d/elpa/company-0.4.3/company-autoloads.el | |
Iteration1.m 5083 Mathematica is n ~/studia/Mathematica/String/test/Iteration1.m | |
*EPresent* 0 EPresent | |
% *Completions* 164 Completion List | |
% *Disabled Command* 845 Help | |
iresize-autoloads.el 544 Emacs-Lisp ~/.emacs.d/elpa/iresize-0.2/iresize-autoloads.el | |
%* *Compile-Log* 6002 Compilation | |
epresent-autoloads.el 599 Emacs-Lisp ~/.emacs.d/elpa/epresent-0.1/epresent-autoloads.el |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
192.168.1.20:/home/share /media/share nfs rsize=8192,wsize=8192,timeo=14,intr,rw,user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clear[Grad, Jac, InvJacGrad, ChangeVariable]; | |
Grad[f_, args_] := Module[{IdM}, | |
IdM = IdentityMatrix[Length[args]]; | |
Evaluate[Derivative[Sequence @@ #][f]] @@ args & /@ IdM | |
] | |
Jac[yOf_, args_] := Module[{IdM}, | |
IdM = IdentityMatrix[Length[args]]; | |
Transpose[ | |
Outer[Derivative[Sequence @@ #][#2] @@ args &, IdM, yOf, 1]] | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;; | |
;;; LOADPATH ;;; | |
;;;;;;;;;;;;;;;; | |
(add-to-list 'load-path "~/.emacs.d/") | |
(add-to-list 'load-path "~/.emacs.d/xref") | |
;; (add-to-list 'exec-path "~/.emacs.d/xref") | |
;;;;;;;;;;;;;;;;;; | |
;;; APPEARANCE ;;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[yapdes] | |
// input files and directories (processed recursively) | |
/home/pawel/studia/smp/yapdes | |
// directory where tag files are stored | |
-refs /home/pawel/Xrefs/yapdes | |
// number of tag files | |
-refnum=10 | |
-I /home/pawel/studia/smp/yapdes/solver | |
// setting for Emacs compile and run | |
-set compilefile "cc %s" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# # | |
# Makefile # | |
# # | |
#finds all .c files and replaces the .c with .o | |
OBJECTS = $(patsubst %.c,%.o,$(wildcard *.c)) | |
#finds all directories in this folder | |
DIRS = $(patsubst %/,%,$(wildcard */)) | |
# default: $(OBJECTS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(add-to-list 'load-path "~/.emacs.d/") | |
(require 'auto-complete-latex) | |
(setq ac-l-dict-directory "~/.emacs.d/ac-l-dict/") | |
(add-to-list 'ac-modes 'latex-mode) | |
(add-hook 'LaTeX-mode-hook 'ac-l-setup) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function print_n { | |
cat participants.tex\ | |
| tr '\n' ' '\ | |
| sed -e 's|\\Partic{|\n|g' -e 's| *| |g' -e 's|\x27|\\\x27|g' -e 's|} *{|}{|g' \ | |
| awk -F'}{' 'NR > 1 {print $1 ":" $2 ":" $3}' | |
} | |
IFS=$'\x0a' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function print_n { | |
cat participants.tex\ | |
| tr '\n' ' '\ | |
| sed -e 's|\\Partic{|\n|g' -e 's| *| |g' -e 's|\x27|\\\x27|g' -e 's|} *{|}{|g' \ | |
| awk -F'}{' 'NR > 1 {print $1 ":" $2 ":" $3}' | |
} | |
IFS=$'\x0a' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!> | |
!! @file inheritance.f90 | |
!! @author Pawel Biernat <[email protected]> | |
!! @date Tue Sep 27 13:42:17 2011 | |
!! | |
!! @brief this is a @bug of ifort 12.1 Update 6. | |
!! | |
!! | |
!! | |
module class_a |
OlderNewer