Skip to content

Instantly share code, notes, and snippets.

View edwinb-ai's full-sized avatar
:shipit:
Working out some ideas

Edwin Bedolla edwinb-ai

:shipit:
Working out some ideas
  • Utrecht, Netherlands
View GitHub Profile
@MikeInnes
MikeInnes / startup.jl
Last active February 5, 2023 12:54
Some useful macros for Julia
# Repeat an operation n times, e.g.
# @dotimes 100 println("hi")
macro dotimes(n, body)
quote
for i = 1:$(esc(n))
$(esc(body))
end
end
end
@mattBrzezinski
mattBrzezinski / design-document-template.md
Last active January 26, 2024 23:41
Design Document Template

Contact Info

List of project members and their contact information.

Tenets

Tenets are a list of guiding principles for your project. Your tenets will keep you focused on your objective and keep you heading in the right direction.

Tenets are independent of each other, are clear and memorable. They are used to define what a team cares more about.