See character.construction/emoji-vs-text for more up-to-date listings.
| Text (U+FE0E) | Default | Emoji (U+FE0F) | Name |
|---|---|---|---|
| 😀︎ | 😀 | 😀️ | GRINNING FACE |
| 😁︎ | 😁 | 😁️ | GRINNING FACE WITH SMILING EYES |
| 😂︎ | 😂 | 😂️ | FACE WITH TEARS OF JOY |
| 🤣︎ | 🤣 | 🤣️ | ROLLING ON THE FLOOR LAUGHING |
| // Logiops (Linux driver) configuration for Logitech MX Master 3. | |
| // Includes gestures, smartshift, DPI. | |
| // Tested on logid v0.2.3 - GNOME 3.38.4 on Zorin OS 16 Pro | |
| // What's working: | |
| // 1. Window snapping using Gesture button (Thumb) | |
| // 2. Forward Back Buttons | |
| // 3. Top button (Ratchet-Free wheel) | |
| // What's not working: | |
| // 1. Thumb scroll (H-scroll) | |
| // 2. Scroll button |
| <?php | |
| /** | |
| * Plugin name: HTTP2 Push scripts | |
| * Author: Tom J Nowell | |
| */ | |
| function tomjn_get_dep_url( /*\WP_Dependency*/ $dep ) { | |
| global $wp_version; | |
| $relative = str_replace( site_url(), '', $dep->src ); | |
| $ver = $dep->ver; |
| # all imports | |
| from IPython.display import Javascript | |
| from google.colab import output | |
| from base64 import b64decode | |
| from io import BytesIO | |
| !pip -q install pydub | |
| from pydub import AudioSegment | |
| RECORD = """ | |
| const sleep = time => new Promise(resolve => setTimeout(resolve, time)) |
See character.construction/emoji-vs-text for more up-to-date listings.
| Text (U+FE0E) | Default | Emoji (U+FE0F) | Name |
|---|---|---|---|
| 😀︎ | 😀 | 😀️ | GRINNING FACE |
| 😁︎ | 😁 | 😁️ | GRINNING FACE WITH SMILING EYES |
| 😂︎ | 😂 | 😂️ | FACE WITH TEARS OF JOY |
| 🤣︎ | 🤣 | 🤣️ | ROLLING ON THE FLOOR LAUGHING |
| // Templates as first-class citizens in C++11 | |
| // Example code from http://vitiy.info/templates-as-first-class-citizens-in-cpp11/ | |
| // Written by Victor Laskin (victor.laskin@gmail.com) | |
| #include <iostream> | |
| #include <algorithm> | |
| #include <functional> | |
| #include <vector> | |
| #include <tuple> |
| // List comprehension in C++11 in form of SQL-like syntax | |
| // Example code from http://vitiy.info/cpp11-writing-list-comprehension-in-form-of-sql/ | |
| // Written by Victor Laskin (victor.laskin@gmail.com) | |
| #include <iostream> | |
| #include <functional> | |
| #include <vector> | |
| #include <future> | |
| #include <algorithm> | |
| using namespace std; |
| #!/bin/sh | |
| binaries=( | |
| awscli | |
| trash | |
| tree | |
| git | |
| mosh | |
| tmux | |
| screen | |
| zsh |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.