Skip to main content
5 votes
Accepted

Mathematical expression evaluator (C++) Using Flex and Yacc

The Makefile can be improved a bit The Makefile looks very reasonable, but there are a few things that can be improved: Use $(CXX) instead of ...
G. Sliepen's user avatar
  • 69.3k
2 votes

Mathematical expression evaluator (C++) Using Flex and Yacc Attempt2

Makefile .PHONEY: This is not a special target, it should be .PHONY without the "E" ...
fejyesynb's user avatar
  • 121
2 votes
Accepted

Mathematical expression evaluator (C++) Using Flex and Yacc Attempt2

.PHONY target name is misspelt. As is $(LDFLAGS). The standard name for Lex flags is LFLAGS....
Toby Speight's user avatar
  • 88.3k
2 votes

Zig-zag child element with Flexbox and JavaScript

This code could be optimized by: selecting child elements by class name with document.getElementsByClassName() and only do this once instead of each time the ...
Sᴀᴍ Onᴇᴌᴀ's user avatar
2 votes
Accepted

Zig-zag child element with Flexbox and JavaScript

Tiny adjustment : you can update all your objects in your first loop and get rid of the second. ...
Aweuzegaga's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible