Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | :tada: |
Version tag | :bookmark: |
New feature | :sparkles: |
Bugfix | :bug: |
From: https://www.reddit.com/r/programming/comments/8jjq33/11_best_programming_fonts/dz0xxs5/ | |
------ | |
o0O s5S z2Z !|l1Iij {([|})] .,;: ``''"" | |
a@#* vVuUwW <>;^°=-~ öÖüÜäÄßµ \/\/ | |
the quick brown fox jumps over the lazy dog | |
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG | |
0123456789 &-+@ for (int i=0; i<j; ++i) { } |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | :tada: |
Version tag | :bookmark: |
New feature | :sparkles: |
Bugfix | :bug: |
/* | |
* Copyright (c) 2013, Arno Moonen <info@arnom.nl> | |
* | |
* Permission is hereby granted, free of charge, to any person | |
* obtaining a copy of this software and associated documentation | |
* files (the "Software"), to deal in the Software without | |
* restriction, including without limitation the rights to use, copy, | |
* modify, merge, publish, distribute, sublicense, and/or sell copies | |
* of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: |
// https://web.archive.org/web/20141119215047/http://jsperf.com/javascript-quicksort-comparisons | |
// based on work from Vladimir Yaroslavskiy: https://web.archive.org/web/20151002230717/http://iaroslavski.narod.ru/quicksort/DualPivotQuicksort.pdf | |
var dualPivotQuicksort = (function (Math, toString, undefined) { | |
'use strict'; | |
function swap(arr, i, j) { | |
var temp = arr[i]; | |
arr[i] = arr[j]; | |
arr[j] = temp; | |
} | |
function dualPivotQuicksort(arr, comp, left, right, div) { |
public class LogicalOperators { | |
/* | |
* TRUTH LOGIC | |
* | |
* X & Y | |
* (AND) | |
* | |
* AND is Only True IF BOTH OPERANDS ARE TRUE | |
* --------------------------------- |
112 1 3 java.lang.AbstractStringBuilder::newCapacity (39 bytes) | |
@ 31 java.lang.AbstractStringBuilder::hugeCapacity (28 bytes) | |
@ 11 java.lang.OutOfMemoryError::<init> (5 bytes) don't inline Throwable constructors | |
112 2 3 java.lang.String::hashCode (55 bytes) | |
113 3 3 java.lang.String::equals (81 bytes) | |
114 4 3 java.lang.Object::<init> (1 bytes) | |
114 5 3 java.lang.String::indexOf (70 bytes) | |
@ 66 java.lang.String::indexOfSupplementary (71 bytes) callee is too large | |
114 9 n 0 java.lang.System::arraycopy (native) (static) | |
114 7 3 java.lang.Math::min (11 bytes) |
USE [Foo] | |
GO | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
CREATE TABLE [dbo].[jhi_persistent_audit_event]( | |
[event_id] [bigint] IDENTITY(1,1) NOT NULL, |
Notes from Coursera course 'Functional Programming Principles in Scala": | |
https://class.coursera.org/progfun-004 | |
✔ Week 1: Functions & Evaluations @done (14-05-01 17:20) | |
✔ Lecture 1.1 - Programming Paradigms (14:32) @done (14-04-27 17:54) | |
3 paradigms: imperative, functional, logic | |
OO: orthogonal | |
imperative: |
[ | |
{ | |
"userID": "ethel.price@example.com", | |
"firstName": "Ethel", | |
"lastName": "Price", | |
"viewEdit": "" | |
}, | |
{ | |
"userID": "claudine.neal@example.com", |
import java.io.ByteArrayInputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.OutputStreamWriter; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.security.MessageDigest; | |
import java.text.SimpleDateFormat; | |
import java.util.Calendar; | |
import java.util.Date; |