Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 1.47 KB

README.md

File metadata and controls

49 lines (42 loc) · 1.47 KB

Emojify.jl

Emojify helps you spread chaos by replacing function and variable names in your code with random emoji. The output is still valid Julia code.

Emojify your code

You can use either a string with Julia code as input, or a file path. If a file path is given, all files referenced with include() will also be emojified. If your code defines modules, module names, names of exported functions, and keyword arguments of exported functions will not be emojified.

For example,

using Emojify
emojify("
function ω(x::AbstractVector{<:Number}, i::Unsigned, z::Number)
    y = 1
    for j in 1:i
        y *= (z - x[j])
    end
    y
end
ω(x::AbstractVector{<:Number}, i::Number, z::Number) = ω(x, unsigned(i), z)
")

will return

function 🖴(🕼::AbstractVector{<:Number}, 👖::Unsigned, 📄::Number)
    🖅 = 1
    for 🖥 in 1:👖
        🖅 *= (📄 - 🕼[🖥])
    end
    🖅
end
🖴(🕼::AbstractVector{<:Number}, 👖::Number, 📄::Number) = 🖴(🕼, unsigned(👖), 📄)

To emojify a file, use

emojify("path_to_input_file.jl", "path_to_output_directory")

You can also pass a Vector{Char} as the last argument to use instead of the default emoji:

emojify("path_to_input_file.jl", "path_to_output_directory", Char.(0x02107:0x0214A))

Emojifying calls to base Julia functions

To achieve absolute chaos, I recommend using this package together with WatchJuliaBurn.jl.