VirtualTam's bookmarks
129 bookmarks found
-
M-x package-list-packages U x
-
- https://superuser.com/questions/344962/web-scraper-for-outlook-web-app-2010
- https://hub.docker.com/r/jberrenberg/davmail/
- https://www.ctl.io/developers/blog/post/killing-your-outlook-with-docker-and-davmail/
- https://aur.archlinux.org/packages/davmail/
- https://bbs.archlinux.org/viewtopic.php?id=141256
- https://unix.stackexchange.com/questions/70935/davmail-systemd-launcher-on-headless-server
-
And more generally, "emacs as a <language> IDE":
- code completion
- snippet / templates
- project view
- syntax checking
- test harness utilities
See also:
-
squid : Optimising Web Delivery
2016-11-29 -
Debian New Maintainers' Guide
2016-10-27 See also:
- https://www.debian.org/doc/devel-manuals#packaging-tutorial
- https://www.debian.org/doc/debian-policy/
- https://www.debian.org/doc/manuals/developers-reference/
- https://wiki.debian.org/PackagingWithGit
- https://wiki.debian.org/HowToPackageForDebian
- https://feeding.cloud.geek.nz/posts/whats-in-a-debian-directory/
-
Dark Audacity
2016-08-31 Audacity spin-off dedicated to design experimentation
Discussion archive @ https://sourceforge.net/p/audacity/mailman/audacity-devel/thread/73f5b514-0777-51fa-b96b-2859b4de61f6%40indigo.ie/ AUR package @ https://aur.archlinux.org/packages/darkaudacity-git
-
Conan | C/C++ Open Source Package Manager
2016-08-15 -
What makes a package useful? What is it about certain packages that makes them must-haves for any project?
-
[aur-dev] AUR 4.0.0 pre-alpha
2015-01-06 Git is coming to AUR (or, AUR is coming to Git?)
-
Uses a project or repository's history to plot user contributions, displaying an elegant, colored graph of the file arborescence.
After running it on quite different projects...
- Python/Bash CI/Jenkins scripts
- Qt apps: GoldenDict, Psi+
- PHP website: Shaarli
...watching some vids on teh intartubez:
- Minecraft: https://www.youtube.com/watch?v=zRjTyRly5WA
- Linux kernel: https://www.youtube.com/watch?v=AhDiYPLo3p4
- Python: https://www.youtube.com/watch?v=cNBtDstOTmA
It allows to arbitrary spot some interesting implementation aspects (sorted by descending impact):
- language-dependent trees (oh hai Java packages ^^)
- framework-dependent trees
- project-management method (none, Agile, TDD)
Having a graphical tool also quickly shows:
- the overall structure of the project (a bit cooler than a simple $ tree, way quicker than loading the project on an IDE)
- the repartition of files (by extensions)
- who are the most active contributors
- what are the most modified files over time
- who does what: additions, deletions, refactoring
Some more CI-related matters:
- are there any tests?
- what is the source code / test code ratio? (we could expect a project/lib with N modules to have at least N test modules)
- who initiates / implements / optimizes test code?
-
1# Global 2/etc/environment 3 4# X Session 5/var/lib/AccountsService/users/<username> 6~/.dmrc 7~/.xinitrc 8~/.xprofile 9 10# Session 11/etc/profile 12/etc/profile.d/*.sh 13~/.profile 14 15# Bash 16/etc/bash.bashrc 17~/.bash_profile 18~/.bashrc 19 20# ZSH 21/etc/zsh/zprofile 22~/.zshrc 23 24# Locales 25/etc/locale.conf 26/etc/locale.gen 27~/.config/locale 28 29# Superusers 30/etc/login.defs 31/etc/sudoers (use visudo to edit) 32 33# SSH 34/etc/ssh/sshd_config (server-side, can allow the client to pass variables) 35/etc/ssh/ssh_config (client-side, can send variables to servers) 36 37# SaltStack 38/etc/default/salt-minion (not always included in the distro's packages)