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
name: old-openeye | |
channels: | |
- conda-forge | |
- openeye | |
dependencies: | |
- python | |
- openff-qcsubmit | |
- openff-toolkit |
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
(setq custom-file "~/.emacs.d/custom.el") | |
(load custom-file t) | |
(load-theme 'tango-dark) | |
(set-face-attribute 'default nil :height 140) | |
(use-package rust-ts-mode | |
:hook ((rust-ts-mode . eglot-ensure) | |
(rust-ts-mode . company-mode)) | |
:mode (("\\.rs\\'" . rust-ts-mode)) |
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
# Maintainer: Marcel Röthke <[email protected]> | |
# Contributor: Pierre Neidhardt <[email protected]> | |
# Contributor: csllbr; Popsch <[email protected]> | |
pkgname=mu | |
pkgver=1.8.14 | |
pkgrel=1 | |
pkgdesc="Maildir indexer/searcher and Emacs client (mu4e)" | |
arch=("x86_64" "armv7h") | |
url="http://www.djcbsoftware.nl/code/mu" |
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
;;; rust | |
(use-package rust-mode | |
:ensure t | |
:hook ((rust-mode . flycheck-mode) | |
(rust-mode . hs-minor-mode)) | |
:bind (:map rust-mode-map | |
("<f6>" . my/rust-format-buffer) | |
("C-c 6" . my/rust-format-buffer)) | |
:config | |
(require 'rust-rustfmt) |
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
#include <stdio.h> | |
#include <string.h> | |
#include <ctype.h> | |
/* | |
INTERNAL keyword requested by INTERNAL=block_name, where the parameters are | |
included in the same format used by EXTERNAL but inside of a block started by | |
block_name and ended "end block_name" | |
*/ |
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
# Maintainer: Brent Westbrook <[email protected]> | |
pkgname=mopac | |
pkgver=22.0.6 | |
pkgrel=1 | |
pkgdesc="a semiempirical quantum chemistry software package" | |
arch=('any') | |
url="http://openmopac.net/home.html" | |
license=('unknown') | |
groups=() | |
depends=() |
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
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use feature "say"; | |
use File::Temp qw/ tempfile /; | |
my ($fh, $filename) = tempfile(); | |
my $mol = `xclip -o -selection primary`; |
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
(use-package which-key | |
:ensure t | |
:config | |
(which-key-mode)) | |
(use-package lsp-mode | |
:ensure t | |
:bind (:map lsp-mode-map | |
("C-c d" . lsp-describe-thing-at-point) | |
("C-c a" . lsp-execute-code-action)) |
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
require 'mp' | |
FNAME = "timestamps.txt" | |
local function file_exists(name) | |
-- from https://stackoverflow.com/a/4991602 | |
local f=io.open(name,"r") | |
if f~=nil then io.close(f) return true else return false end | |
end |