Github repo with all of the questions: https://github.com/h5bp/Front-end-Developer-Interview-Questions ᔥ
Blog post with some questions: http://darcyclarke.me/development/front-end-job-interview-questions/
Github repo with all of the questions: https://github.com/h5bp/Front-end-Developer-Interview-Questions ᔥ
Blog post with some questions: http://darcyclarke.me/development/front-end-job-interview-questions/
http://www.ninjaframework.org/
Check out the Ninja home page for a list of the framework’s features. it looks like a relatively simple framework for building webapps in Java.
Github page: https://github.com/jOOQ/jOOQ
create.selectFrom(BOOK)
.where(BOOK.PUBLISHED_IN.eq(2011))
.orderBy(BOOK.TITLE)
create.select(AUTHOR.FIRST_NAME, AUTHOR.LAST_NAME, count())
.from(AUTHOR)
.join(BOOK).on(AUTHOR.ID.equal(BOOK.AUTHOR_ID))
.where(BOOK.LANGUAGE.eq("DE"))
.and(BOOK.PUBLISHED.gt(date("2008-01-01")))
.groupBy(AUTHOR.FIRST_NAME, AUTHOR.LAST_NAME)
.having(count().gt(5))
.orderBy(AUTHOR.LAST_NAME.asc().nullsFirst())
.limit(2)
.offset(1)
select().from(t).where(t.a.eq(select(t2.x).from(t2));
// Type-check here: ---------------> ^^^^
select().from(t).where(t.a.eq(any(select(t2.x).from(t2)));
// Type-check here: -------------------> ^^^^
select().from(t).where(t.a.in(select(t2.x).from(t2));
// Type-check here: ---------------> ^^^^
- Multi-threaded with configurable number of jobs.
- Blazing fast: Running on a single core it is nearly as fast as GNU grep, up to 6x times faster than ack.
- Multi-line pattern searches.
- Colors highlight of tokens and strings matching.
- Recursive searches: Support of language filters and pruning directories.
- Standard searches: through Boyer–Moore and Posix Regex.
- Code Tokenizer: Searches as prefix, infix, suffix and edit distance (Levenshtein distance).
- Context-aware filters distinguish among code, comments and literals in different languages.
- Languages support for Awk, C, Cpp, Chapel, Coffee, Csharp, Css, CMake, D, Erlang, Fsharp, Go, Haskell, Html, Java, Javascript, Latex, Lua, Make, OCaml, ObjectiveC, Perl, PHP, Python, Ruby, Scala, Tcl, Text, Shell, Verilog, VHDL, Vim.
- Semantic searches through wildcards and combinators. _, _1, _2…, $, $1, $2…, ANY, KEY, STR, CHR, NUM, HEX, OCT, OR. E.g. “_1(_1 && $)” search for move constructors, “struct OR class _ { OR : OR <” search for class declarations.
- Customizable output with custom format string, XML and JSON back-ends.
From the jq website:
jq is like sed for JSON data – you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text.
https://github.com/laravel/envoy ᔥ
Composer has really changed the game for the PHP project ecosystem in my opinion. It makes installing and using a tool like Envoy much more attractive to me.
https://github.com/phanan/htaccess/blob/master/README.md
A collection of useful .htaccess snippets, all in one place. I decided to create this repo after getting so tired (and bored) with Googling everytime there’s a need of forcing www for my new website.
I sent this straight to two of the engineers supporting our apps at work.