start new:
tmux
start new with session name:
tmux new -s myname
using System; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using System.Text.RegularExpressions; | |
using Utilities.Extensions; | |
using Utilities.Patterns; |
from __future__ import division | |
from functools import partial | |
import numpy as np | |
from numpy import cos, sin, pi | |
import matplotlib.pyplot as plt | |
from matplotlib import animation | |
from matplotlib import rcParams |
# 2048.py | |
# Written in python / pygame by DavidSousaRJ - [email protected] | |
# License: Creative Commons | |
# Sorry about some comments in portuguese! | |
import os | |
import sys | |
import pygame | |
from pygame.locals import * | |
from random import randint |