symfony set dev to prod : http://symfony.com/doc/current/cookbook/deployment/tools.html#d-clear-your-symfony-cache symfony switch back to dev :
composer install --dev --optimize-autoloader
./app/console cache:clear
./app/console router:debug
from bs4 import BeautifulSoup | |
import requests | |
import datetime | |
import logging | |
import csv | |
def setLogger(): | |
logging.basicConfig(level=logging.INFO, | |
format='%(asctime)s - %(levelname)s - %(message)s', | |
filename='logs_file', |
symfony set dev to prod : http://symfony.com/doc/current/cookbook/deployment/tools.html#d-clear-your-symfony-cache symfony switch back to dev :
composer install --dev --optimize-autoloader
./app/console cache:clear
./app/console router:debug
/** | |
* return the angle between two points. | |
* | |
* @param {number} x1 x position of first point | |
* @param {number} y1 y position of first point | |
* @param {number} x2 x position of second point | |
* @param {number} y2 y position of second point | |
* @return {number} angle between two points (in radian) | |
*/ | |
Math.getAngle = function( x1, y1, x2, y2 ) { |
import time | |
import pprint | |
phrase = """ Britney Jean Spears (born December 2, 1981) is an American singer, dancer and actress. Born in | |
McComb, Mississippi, and raised in Kentwood, Louisiana, she performed acting roles in stage | |
productions and television shows as a child before signing with Jive Records in 1997. Spears's first | |
and second studio albums, ...Baby One More Time (1999) and Oops!... I Did It Again (2000), became | |
international successes, with the former becoming the best-selling album by a teenage solo | |
artist.[1] Title tracks "...Baby One More Time" and "Oops!... I Did It Again" broke international | |
sales records. In 2001, Spears released her self-titled third studio album, Britney, and played the |
import math | |
#import sys | |
#import sunau | |
#import array | |
""" | |
ecc=0.5 | |
P=1 | |
p=1 | |
if len(sys.argv)>1: | |
ecc=float(sys.argv[1]) |
import matplotlib | |
matplotlib.use('Agg') | |
import matplotlib.pyplot as plt | |
from cogs.utils.dataIO import dataIO | |
from __main__ import send_cmd_help | |
from discord.ext import commands | |
import asyncio |
import random | |
from flatlib.datetime import Datetime | |
from flatlib.geopos import GeoPos | |
from flatlib.chart import Chart | |
from flatlib.aspects import getAspect | |
from flatlib import const | |
wise_connective = ['in', 'with', 'for', 'as'] | |
aspects = {} | |
aspects['applicative'] = { |
#!/usr/bin/env python3 | |
from math import sin, cos, pi, sqrt, asin, log | |
sqrt2 = sqrt(2) | |
def solveNR(lat, epsilon=1e-6): | |
"""Solve the equation $2\theta\sin(2\theta)=\pi\sin(\mathrm{lat})$ | |
using Newtons method""" | |
if abs(lat) == pi / 2: |
import pytz | |
from django.utils import timezone | |
.... | |
timezone.activate(pytz.timezone(user_time_zone)) |
from django.db import models | |
from django.utils import timezone | |
from django.contrib.auth.models import (AbstractBaseUser, | |
BaseUserManager as DjBaseUserManager) | |
from model_utils.managers import InheritanceManager | |
class BaseUserManager(DjBaseUserManager, InheritanceManager): | |
""" |