124 Followers
127 Following
358 Posts
so I opted for some unsafe code and raw pointers. I have no clue whether this is undefined behavior or not, but at least the tests pass.
implementing a binary tree with parent pointers and rotation in Rust => not recommended!!
today I learnt that "9".succ == "10" (and in general that String#succ only works on the alphanumeric values of a string)
@erika oh hi there! doing anything fun with Ruby?

How does everyone order their methods in a class?

# Alphabetical
def a; end
def b; end

# Importance
def business_logic; end
def utility_method; end

# Invocation sequence
def call
called_first
called_second
end

def called_first; end
def called_second; end

Hey, folks! My company is looking for devs and QAs :D
We use Ruby!

RT @[email protected]

๐Ÿ™Œ๐Ÿผ We're hiring! We're currently looking for a full-stack dev and a QA engineer ๐Ÿค“ Check out our open positions here!
https://jobs.apptweak.com/ #ASO #AppStoreOptimization #talent #recruitment #AppMarketing

๐Ÿฆ๐Ÿ”—: https://twitter.com/AppTweak/status/1136933497577385991

We are hiring! - Jobs | AppTweak

AppTweak is hiring! Check out our jobs opening and find your next career opportunity! We are looking for full-stack, frontend, backend developers, data scientists, and customer success managers.

@jamey conjunctive grammars turned out to be trivial: https://github.com/judofyr/glush/commit/8995bbecbe6d3827c792bb1623264b8ec9216601. I haven't found a way to add full boolean grammars without drastically changing the algorithm.
Implement conjunctive grammars ยท judofyr/glush@8995bbe

A parser toolkit. Contribute to judofyr/glush development by creating an account on GitHub.

Converted the Rails style guide and the Ruby style guide to AsciiDoc, too.

Go check it out!
- https://github.com/rubocop-hq/rails-style-guide/
- https://github.com/rubocop-hq/ruby-style-guide/

Why AsciiDoc? It's hard to write a blog post. It's easy to write an email. AsciiDoc was created to be easy to write in the first place.

rubocop-hq/rails-style-guide

A community-driven Ruby on Rails style guide. Contribute to rubocop-hq/rails-style-guide development by creating an account on GitHub.

@jamey look, I turned the Glushkov-parser into a proper project! https://github.com/judofyr/glush
judofyr/glush

Contribute to judofyr/glush development by creating an account on GitHub.

Ruby tip:

class Foo
def self.value
@value ||= defined?(super) ? super : DEFAULT_VALUE
end
end

this will turn Foo.value into a value you can configure per class (with a default), and you'll automatically inherit the superclass' value