Can They be treated as images?

|
Jamerive 2022-09-14 01:03:26
Let’s stop reinventing the wheel, let’s use asm!😂
smol_mazunki 2022-09-14 01:03:41
abstraction levels is NOT the same as reinventing the wheel
Jamerive 2022-09-14 01:03:50
Or better, let’s use binary
Kueppo 2022-09-14 01:04:16
smol_mazunki 2022-09-14 01:02:53
emoji ARE icons

mostly of a standard today, that’s what I said, most of the programming languages today support unicodes, even awk wants to support unicodes.

Kueppo 2022-09-14 01:04:40
raku is doing it bad(When I say ‘bad’ it means it is incredible), even operators are unicode chars.
Jamerive 2022-09-14 01:05:06
smol_mazunki 2022-09-14 01:03:41
abstraction levels is NOT the same as reinventing the wheel

How come is it not?

Kueppo 2022-09-14 01:06:22
smol_mazunki 2022-09-14 01:01:19
btw regarding all available bins in path i use whichall which is a wrapper around:
for prog in “$@”; do
while read -d’:’ -r path; do
[ -e “${path}” ] && find “${path}” -name “${prog}*”
done <<< “$PATH”
done

we have a nice command builtin.

smol_mazunki 2022-09-14 01:06:59
https://www.cs.utexas.edu/users/EWD/transcriptions/EWD03xx/EWD303.html
smol_mazunki 2022-09-14 01:07:10
https://www.cs.utexas.edu/users/EWD/transcriptions/EWD06xx/EWD667.html
smol_mazunki 2022-09-14 01:07:19
had to find them, lol
smol_mazunki 2022-09-14 01:07:30
Jamerive 2022-09-14 01:05:06
How come is it not?

essentially ^

Jamerive 2022-09-14 01:07:34
What is that?
smol_mazunki 2022-09-14 01:07:47
Kueppo 2022-09-14 01:06:22
we have a nice command builtin.

does command provide all available bins in all regions of PATH?

Jamerive 2022-09-14 01:07:50
smol_mazunki 2022-09-14 01:07:30
essentially ^

In the purest form, they are

smol_mazunki 2022-09-14 01:08:37
Jamerive 2022-09-14 01:07:50
In the purest form, they are

would you argue creating a cake is the same as making up a new way to grow crops?

Kueppo 2022-09-14 01:08:40
smol_mazunki 2022-09-14 01:02:53
emoji ARE icons

Even colored emoji?

Kueppo 2022-09-14 01:08:55
Obviously no I think.
smol_mazunki 2022-09-14 01:09:07
Kueppo 2022-09-14 01:08:40
Even colored emoji?

fonts is one thing (a representation of a codepoint), icons/emoji is another (a named codepoint)

Jamerive 2022-09-14 01:09:24
smol_mazunki 2022-09-14 01:08:37
would you argue creating a cake is the same as making up a new way to grow crops?

What is the point of this…

Jamerive 2022-09-14 01:10:03
Kueppo 2022-09-14 01:08:40
Even colored emoji?

Not icons perse. Can They be treated as images?

smol_mazunki 2022-09-14 01:10:13
emoji and icons are specifically boolean values given to different codepoints under unicode
smol_mazunki 2022-09-14 01:10:41
Jamerive 2022-09-14 01:09:24
What is the point of this…

reinventing the wheel means you’re creating the same tool again, with the same purpose, and the same features

Jamerive 2022-09-14 01:10:54
Nerd fonts does not have emoji I think
smol_mazunki 2022-09-14 01:11:13
an abstraction layer USES the underlying tools at disposition in order to make another (potentially better) interface
smol_mazunki 2022-09-14 01:11:22
essentially abstraction layers turn tools into libraries
smol_mazunki 2022-09-14 01:11:41
Jamerive 2022-09-14 01:10:54
Nerd fonts does not have emoji I think

there’s very few font sets which cover the whole unicode universe

smol_mazunki 2022-09-14 01:12:08
unifont and noto cover /most/ areas, except the private regions
smol_mazunki 2022-09-14 01:12:33
emoji support is quite common in many fonts, including noto (not sure about unifont)
Jamerive 2022-09-14 01:12:58
smol_mazunki 2022-09-14 01:11:13
an abstraction layer USES the underlying tools at disposition in order to make another (potentially better) interface

So using the same tools in the same order without the layer is the same.

Jamerive 2022-09-14 01:13:32
smol_mazunki 2022-09-14 01:12:33
emoji support is quite common in many fonts, including noto (not sure about unifont)

I have seen only in a few and mainly in the onea used on mobile

Jamerive 2022-09-14 01:14:26
I am just curious, I wonder what is reinventing the wheel is and if you think that if it is necesarily bad.
smol_mazunki 2022-09-14 01:14:45
Jamerive 2022-09-14 01:13:32
I have seen only in a few and mainly in the onea used on mobile

not sure what fonts you’ve used, but i mostly use noto-emoji for emoji

smol_mazunki 2022-09-14 01:15:06
nerdfonts mostly add icons (not the same as emoji, although iirc all emoji are also qualified as icons)
Jamerive 2022-09-14 01:15:12
smol_mazunki 2022-09-14 01:14:45
not sure what fonts you’ve used, but i mostly use noto-emoji for emoji

Noto is a font designed for mobile for what I recall

smol_mazunki 2022-09-14 01:15:23
Jamerive 2022-09-14 01:14:26
I am just curious, I wonder what is reinventing the wheel is and if you think that if it is necesarily bad.

i don’t think it’s bad

|