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
#user html; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |
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
sudo add-apt-repository ppa:graphics-drivers/ppa && | |
sudo add-apt-repository ppa:webupd8team/java && | |
sudo add-apt-repository ppa:peterlevi/ppa && | |
sudo apt-add-repository -y ppa:teejee2008/ppa && | |
sudo add-apt-repository ppa:libreoffice/ppa && | |
sudo add-apt-repository ppa:numix/ppa && | |
sudo add-apt-repository ppa:docky-core/stable && | |
sudo add-apt-repository ppa:inkscape.dev/stable && | |
sudo add-apt-repository ppa:noobslab/icons && | |
sudo add-apt-repository ppa:noobslab/themes && |
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
When did you installed contents for MODO 902 in alternative folder, not default folder, you can do this: | |
cd ~/modo/ | |
export NEXUS_CONTENT=~/<Alternative Folder>/Content/ | |
./modo | |
Note: This fix couldn't fixed this problem when you create a desktop launcher, so, is better install the content in the default repository. | |
If you try install the Foundry crack and RLM doesn't stop, kill rlm.foundry since System's Monitors. |
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
from fractions import gcd | |
from source import * | |
__author__ = 'tulipan' | |
def vigenere(decode, key, clear): | |
encrypted = [] |
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
# SOME DESCRIPTIVE TITLE. | |
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | |
# This file is distributed under the same license as the PACKAGE package. | |
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | |
# | |
#, fuzzy | |
msgid "" | |
msgstr "" | |
"Project-Id-Version: PACKAGE VERSION\n" | |
"Report-Msgid-Bugs-To: \n" |
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 os | |
import math | |
import random | |
def get_new_album(n): | |
i = 1 | |
# album = [[0 for x in range(n)] for x in range(n)] | |
album = [0 for x in range(n)] | |
# print(album) |
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
Deploy Wagtail in Webfaction it's very easy if you know how do it, well, now is much easier, | |
Wagtail have now a compiled css files, but, is you want use sass files yet, you can follow the next steps. | |
In web faction you need to do three aditional steps from a normal webfaction django's deploying: | |
Install gcc>=4.6, compile and install libsass and use compress comamand in static files. | |
So, now we'll see each step clearer: | |
1. Install gcc>= 4.6: | |
You can find how do this here: https://community.webfaction.com/questions/6921/compiling-gcc-46. |