| --- |
Backend (Django) |
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
| Plan de la Patria | |
| Segundo Plan Socialista de Desarrollo | |
| Económico y Social de la Nación | |
| 2013-2019 | |
| Objetivos históricos, nacionales, estratégicos | |
| y generales | |
| GRAN OBJETIVO HISTÓRICO N° 1 | |
| I. Defender, expandir y consolidar el bien más | |
| preciado que hemos reconquistado después de 200 | |
| años: la independencia nacional. |
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
| def racata(s, n): | |
| for j in range(n-1): | |
| print(s, end="-") | |
| else: | |
| print(s) | |
| for i in range(2): | |
| print('Y la cosa suena RA!') | |
| for i in range(2): |
I hereby claim:
- I am map0logo on github.
- I am mapologo (https://keybase.io/mapologo) on keybase.
- I have a public key ASAvC3Z9BJbqoZxJRe33VVvXLqWm-tieVIuUkmJih32E6Ao
To claim this, I am signing this object:
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
| """Simulating the sum of two dice. | |
| Created on Fri Jan 22 19:02:16 2021 | |
| @author: spyderlieber | |
| """ | |
| from random import randrange | |
| import numpy as np | |
| import matplotlib.pyplot as plt |
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
| """Simulating the sum of two dice. | |
| Created on Fri Jan 22 19:02:16 2021 | |
| @author: spyderlieber | |
| """ | |
| from random import randrange | |
| import numpy as np | |
| import pandas as pd |
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 string | |
| from itertools import count, cycle | |
| from math import gcd | |
| alphabet = string.ascii_lowercase | |
| M = len(alphabet) # Length of roman alphabet | |
| GROUP_LENGTH = 5 | |
| sep = [''] * (GROUP_LENGTH - 1) + [' '] | |
| def mmi(a, m): |
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 scala.io.StdIn.readLine | |
| import scala.util.Random | |
| import scala.util.control.Breaks.break | |
| import scala.collection.mutable.ListBuffer | |
| val NUM_DIGITS = 3 | |
| val MAX_GUESSES = 10 | |
| @main def main: Unit = { | |
| println(s"""Bagels, a deductive logic game. |
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 scala.io.StdIn.readLine | |
| import collection.mutable.ListBuffer | |
| object VigenereCipher extends App { | |
| def encryptMessage(message: String, key: String): String = { | |
| translateMessage(message, key, "encrypt") | |
| } | |
| def decryptMessage(message: String, key: String): String = { | |
| translateMessage(message, key, "decrypt") |
OlderNewer