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
using System; | |
using System.Collections.Generic; | |
namespace coloroutput | |
{ | |
class MainClass | |
{ | |
public const ConsoleColor DEFAULT = ConsoleColor.White; | |
public static void Main (string[] args) |
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
# pacman aliases | |
alias pac='pacman -S' # install | |
alias pacu='pacman -Syu' # update, add 'a' to the list of letters to update AUR packages if you use yaourt | |
alias pacr='pacman -Rs' # remove | |
alias pacs='pacman -Ss' # search | |
alias paci='pacman -Si' # info | |
alias paclo='pacman -Qdt' # list orphans | |
alias pacro='paclo && sudo pacman -Rns $(pacman -Qtdq)' # remove orphans | |
alias pacc='pacman -Scc' # clean cache | |
alias paclf='pacman -Ql' # list files |
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/env python2 | |
# Specifically, using python 2 | |
# Make a pics/ directory and put your pictures in there | |
# Make a text/ directory and put your text files in there to train the markov model | |
# requires markovify and pytumblr | |
import markovify | |
import pytumblr | |
import time, os, os.path, random | |
client = pytumblr.TumblrRestClient( |
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 Korpel <marcel[dot]korpel[at]gmail> | |
# Contributor: Renan Birck <renan.ee.ufsm at gmail.com> | |
pkgname=logisim-evolution | |
_truepkgname=logisim | |
pkgver=2.13.8 | |
pkgrel=1 | |
provides=('logisim') | |
conflicts=('logisim') | |
pkgdesc='An educational tool for designing and simulating digital logic circuits' |
NewerOlder