• 0 Posts
  • 58 Comments
Joined 3 years ago
cake
Cake day: July 6th, 2023

help-circle

  • KRAW@linux.communitytoProgramming@programming.devProgramming is art
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    2
    ·
    14 days ago

    I certainly don’t disagree with the points made in the video. It in fact points out something related to what I’m saying. He states he notices that people that claim something is not art are often gatekeeping something from becoming “elevated.” I’m extending the converse argument: many people trying to claim something is art are trying to elevate it to a new status.

    My problem with calling programming art is not that I don’t think programming is art, but rather that I think that label is not useful in this context. Programming is something that is very much valued without that label. Thus adding the label is just an attempt to tack on unneeded elevation to the craft. In some ways the video supports my viewpoint. The debate over what is art is a bit tired. It’s worth having, but personally I don’t think it is needed in this case.


  • KRAW@linux.communitytoProgramming@programming.devProgramming is art
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    16
    ·
    15 days ago

    I honestly think trying to define programming as art is just an attempt to unnecessarily elevate it. Programming is utilitarian. It is meant for a specific practical purpose. It does not reveal a shared human experience the way a movie, book, or game does. I have no need to convince myself, a professional software engineer of this because I am perfectly happy accepting that what I do is useful and do not need to try to put myself in a category with artists.

    All the author is saying is that people enjoy programming. I also enjoy eating. Is that an art? I even have my own “eating style” in that I like to eat food in specific order, combine two items into one bite, the way I build a bite, etc. But I’d never try to elevate it because I’m a normal person who doesn’t waste brainpower trying to make myself feel special.




  • KRAW@linux.communitytoSelfhosted@lemmy.worldKittygram v1.1 has released
    link
    fedilink
    English
    arrow-up
    21
    ·
    edit-2
    4 months ago

    Just fyi, I tried one your instance. Searched a user, clicked a result, and got an error.

    Error
    
    ./app.lua:134: attempt to concatenate field 'username' (a nil value)
    
    Traceback
    
    stack traceback:
    	./app.lua:134: in function 'handler'
    	...ittygram/lua_modules/share/lua/5.1/lapis/application.lua:185: in function 'resolve'
    	...ittygram/lua_modules/share/lua/5.1/lapis/application.lua:216: in function <...ittygram/lua_modules/share/lua/5.1/lapis/application.lua:214>
    	[C]: in function 'xpcall'
    	...ittygram/lua_modules/share/lua/5.1/lapis/application.lua:214: in function 'dispatch'
    	/apps/kittygram/lua_modules/share/lua/5.1/lapis/nginx.lua:231: in function 'serve'
    	content_by_lua(nginx.conf.compiled:92):2: in main chunk
    







  • Where are the outraged Christians trying to take their religion back?

    There is nothing to “take back.” True followers of Christ see through these extremists in government as easily as they see through a some snake-worshipping Christian cult. Christians have always known there will be many that will pervert the truth, so they are not surprised. The problem is people like you just assume they are sitting around endorsing this behavior the media makes it seem all Chritians endorse this behavior, but the challenge is the same as always: true Christians do not have the wealth and power to control political/religious messaging around the world. It kind of goes against some key points in their theology.







  • The amount of CPU time compiling code is usually negligible compared to CPU time at runtime. Your comparison only really works if you are comparing against something like Rust, where less bugs are introduced due to certain guarantees by the language.

    Regarding “language constructs” it really depends on what you mean. For example using numpy in python is kind of cheating because numpy is implemented in C. However using something like the algorithm libraries in Rust woulf be considered fair game since they are likely written in Rust itself.