Skip to content
View CharbelAD's full-sized avatar

Organizations

@roumieh-advanced-software-society

Block or report CharbelAD

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. SnipTeX SnipTeX Public

    This is a collection of snippets for LaTeX for the Sublime Text 3 editor.

    4 2

  2. fractal-generator fractal-generator Public

    Forked from jad-issa/fractal-generator

    Generating fractals

    Python

  3. UltimateNewsFeed UltimateNewsFeed Public

    C# 1

  4. MIPS-subset-translator MIPS-subset-translator Public

    Python

  5. roumieh-advanced-software-society/Introduction-to-Python-Workshop roumieh-advanced-software-society/Introduction-to-Python-Workshop Public

    Repository of all the content that is used Workshop: Introduction to Python - Part 1

    Jupyter Notebook

  6. TinyTacToe. This is my attempt at wr... TinyTacToe. This is my attempt at writing a tic tac toe game in Python with a minimal CLI in as little lines as possible. This includes some arbitrary restrictions I set on myself such as sticking to the 80 characters/line limit.
    1
    c1, c2, c3, c4, c5, c6, c7, c8, c9, c, player = [" "] * 9 + ["10", 0]
    2
    l = lambda a, b, c: a.strip() * (a == b == c)
    3
    check = lambda : (l(c1,c2,c3) + l(c4,c5,c6) + l(c7,c8,c9) + l(c1,c4,c7)
    4
                     +l(c2,c5,c8) + l(c3,c6,c9) + l(c1,c5,c9) + l(c3,c5,c7))
    5