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
| ;;;; google-search.lisp | |
| (in-package #:google-search) | |
| (defun -search (term) | |
| "Returns html for the given search `term'" | |
| (let* ((query (list (cons "q" term)))) | |
| (drakma:http-request "http://www.google.com/search" | |
| :parameters query))) |
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
| (defun make-board (size) | |
| (make-array `(,size ,size ,size))) | |
| (defvar *size* 8) | |
| (defvar *score* (make-board *size*)) | |
| (defvar *matrix* (make-board *size*)) | |
| (defun dimension (size score matrix) | |
| (dotimes (i size) | |
| (dotimes (j size) |
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
| export EDITOR=et | |
| export ZSH=/usr/share/oh-my-zsh | |
| source $ZSH/oh-my-zsh.sh | |
| source /usr/share/zsh/share/antigen.zsh | |
| antigen bundle git-prompt | |
| antigen bundle command-not-found | |
| antigen bundle zsh-users/zsh-syntax-highlighting | |
| antigen bundle zsh-users/zsh-completions | |
| antigen bundle zsh-users/zsh-history-substring-search |
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/sh | |
| emacsclient -c $@ |
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
| #---- Generated by tint2conf 1260 ---- | |
| # See https://gitlab.com/o9000/tint2/wikis/Configure for | |
| # full documentation of the configuration options. | |
| #------------------------------------- | |
| # Gradients | |
| #------------------------------------- | |
| # Backgrounds | |
| # Background 1: Panel | |
| rounded = 0 | |
| border_width = 0 |
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
| ;; -*- mode: stumpwm -*- | |
| (in-package :stumpwm) | |
| (set-prefix-key (kbd "s-t")) | |
| ;; (setf *window-border-style* :none) | |
| ;; (ql:quickload :xembed) | |
| ;; (load-module "stumptray") | |
| ;; (run-commands "stumptray") |
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
| ;;; Init.el --- Configuración personal. | |
| ;;; Commentary: | |
| ;;; Code: | |
| (defun toggle-window-split () | |
| (interactive) | |
| (if (= (count-windows) 2) | |
| (let* ((this-win-buffer (window-buffer)) | |
| (next-win-buffer (window-buffer (next-window))) | |
| (this-win-edges (window-edges (selected-window))) |
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
| url = https://github.com/Dewdrops/powerline |
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
| import React, { Component } from 'react'; | |
| import { | |
| View, | |
| Text, | |
| TouchableOpacity | |
| } from 'react-native'; | |
| import ModalTester from './ModalTester.js'; |
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
| ;;; interactive javascript shell with elnode -*- lexical-binding: t -*- | |
| (elnode-app elnode-ijs-dir comint uuid) | |
| (defvar elnode-ijs/input nil | |
| "Input for the js shell. | |
| Each element is a cons of a uuid and the javascript to send.") | |
| (defvar elnode-ijs/input-hash (make-hash-table :test 'equal) |