Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
| from sdf import * | |
| s = tetrahedron(0.75) | |
| s = s.translate(Z * -3) | s.translate(Z * 3) | |
| f = sphere(3).union( | |
| s.orient(X), s.orient(Y), s.orient(Z), | |
| s.orient(X+Y), s.orient(Y+Z), s.orient(X+Y+Z), | |
| k=1 | |
| ) | |
| d = box((30, 30, 2)).translate(Z*-2) |
| //author: http://github.com/wongoo | |
| //date: 20190717 | |
| package rsautil | |
| import ( | |
| "bytes" | |
| "crypto" | |
| "crypto/rand" | |
| "crypto/rsa" |
| #cloud-config | |
| # Option 1 - Full installation using cURL | |
| package_update: true | |
| package_upgrade: true | |
| groups: | |
| - docker | |
| system_info: |
| #! /usr/bin/env python3 | |
| # ~*~ utf-8 ~*~ | |
| import mailbox | |
| import bs4 | |
| def get_html_text(html): | |
| try: | |
| return bs4.BeautifulSoup(html, 'lxml').body.get_text(' ', strip=True) | |
| except AttributeError: # message contents empty |
| // getMacAddr gets the MAC hardware | |
| // address of the host machine | |
| func getMacAddr() (addr string) { | |
| interfaces, err := net.Interfaces() | |
| if err == nil { | |
| for _, i := range interfaces { | |
| if i.Flags&net.FlagUp != 0 && bytes.Compare(i.HardwareAddr, nil) != 0 { | |
| // Don't use random as we have a real address | |
| addr = i.HardwareAddr.String() | |
| break |
| 1) nano /etc/ssh/sshd_config | |
| 2) Add this line'HostKey /etc/ssh/ssh_host_ed25519_key' | |
| 3) ssh-keygen -q -f /etc/ssh/ssh_host_ed25519_key -N "" -t ed25519 | |
| 4) /etc/init.d/dropbear force-reload |
| package main | |
| import "fmt" | |
| // Constant definitions | |
| const MaxUint = ^uint(0) | |
| const MinUint = 0 | |
| const MaxInt = int(^uint(0) >> 1) | |
| const MinInt = -MaxInt - 1 |
| server { | |
| listen 80; | |
| server_name cors.tjvr.org; | |
| root /usr/share/nginx/html; | |
| index index.html; | |
| client_max_body_size 1m; | |
| client_body_buffer_size 64k; |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |