reddit_programming | Technologies

Telegram-канал reddit_programming - Reddit Programming

251

I will send you newest post from subreddit /r/programming

Subscribe to a channel

Reddit Programming

Cell-Based Architecture Adoption Guidelines
https://www.reddit.com/r/programming/comments/1gmleav/cellbased_architecture_adoption_guidelines/

submitted by /u/rgancarz (https://www.reddit.com/user/rgancarz)
[link] (https://www.infoq.com/articles/cell-based-architecture-adoption-guidelines/) [comments] (https://www.reddit.com/r/programming/comments/1gmleav/cellbased_architecture_adoption_guidelines/)

Читать полностью…

Reddit Programming

Mastering Design Patterns in JavaScript: Part 6 — The Adapter Pattern
https://www.reddit.com/r/programming/comments/1gmgsxn/mastering_design_patterns_in_javascript_part_6/

submitted by /u/HolidayCartoonist323 (https://www.reddit.com/user/HolidayCartoonist323)
[link] (https://codexstoney.medium.com/mastering-design-patterns-in-javascript-part-6-the-adapter-pattern-dc899a09f7d7?sk=65208d7002bae50053b74230130b13cd) [comments] (https://www.reddit.com/r/programming/comments/1gmgsxn/mastering_design_patterns_in_javascript_part_6/)

Читать полностью…

Reddit Programming

Weekly JavaScript Roundup: Friday Links 10, November 8, 2024
https://www.reddit.com/r/programming/comments/1gmfc03/weekly_javascript_roundup_friday_links_10/

submitted by /u/jsdevspace (https://www.reddit.com/user/jsdevspace)
[link] (https://jsdev.space/friday/friday-10/) [comments] (https://www.reddit.com/r/programming/comments/1gmfc03/weekly_javascript_roundup_friday_links_10/)

Читать полностью…

Reddit Programming

Wabe - Your TypeScript backend as a service is on Product Hunt
https://www.reddit.com/r/programming/comments/1gmdm24/wabe_your_typescript_backend_as_a_service_is_on/

submitted by /u/mrpalixir (https://www.reddit.com/user/mrpalixir)
[link] (https://www.producthunt.com/posts/wabe) [comments] (https://www.reddit.com/r/programming/comments/1gmdm24/wabe_your_typescript_backend_as_a_service_is_on/)

Читать полностью…

Reddit Programming

The Ultimate Software Architect Knowledge Map
https://www.reddit.com/r/programming/comments/1gmcgrd/the_ultimate_software_architect_knowledge_map/

submitted by /u/Suspicious_Market561 (https://www.reddit.com/user/Suspicious_Market561)
[link] (https://blog.bytebytego.com/p/ep128-the-ultimate-software-architect) [comments] (https://www.reddit.com/r/programming/comments/1gmcgrd/the_ultimate_software_architect_knowledge_map/)

Читать полностью…

Reddit Programming

Difficulties with Last.fm API: No albums found for artist
https://www.reddit.com/r/programming/comments/1gmb2si/difficulties_with_lastfm_api_no_albums_found_for/

<!-- SC_OFF -->I'm working on a music app that uses the Last.fm API to search for information about artists, albums, and songs. I'm having trouble trying to get albums from a specific artist. Logs: I have reviewed the logs and here are the relevant messages: 2024-11-03 18:02:16.531 15537-15537 ArtistAlbumsViewModel com.example.barratrasparente1 E No albums found: ArtistInfoResponse(artist=ArtistInfo(name=Ariana Grande, url=https://www.last.fm/music/Ariana+Grande, albums=null)) 2024-11-03 18:02:16.544 15537-15537 ArtistAlbumsScreen com.example.barratrasparente1 E Error loading albums: No albums found for the artist. Here is a summary of some parts of my code: API interface: kotlin interface LastFmApi { @GET("2.0/") suspend fun getArtistAlbums( @Query("method") method: String = "artist.getinfo", @Query("artist") artist: String, @Query("api_key") apiKey: String = "YOUR_API_KEY", @Query("format") format: String = "json" ): ArtistInfoResponse } ViewModel: kotlin class ArtistAlbumsViewModel : ViewModel() { fun fetchArtistAlbums(artistName: String) { viewModelScope.launch { val response = RetrofitInstance.api.getArtistAlbums(artist = artistName) if (response.artist.albums != null) { // Procesar álbumes } else { // Manejo de error } } } } Function call: Kotlin LaunchedEffect(artistName) { Log.d("ArtistAlbumsScreen", "Llamando a fetchArtistAlbums para el artista: $artistName") viewModel.fetchArtistAlbums(artistName) } <!-- SC_ON --> submitted by /u/Winter_Ice_9209 (https://www.reddit.com/user/Winter_Ice_9209)
[link] (https://github.com/camachomorales/music-player-android.git) [comments] (https://www.reddit.com/r/programming/comments/1gmb2si/difficulties_with_lastfm_api_no_albums_found_for/)

Читать полностью…

Reddit Programming

How to Use Retrieval-Augmented Generation (RAG) for Implementing Permissions in LLM/AI Applications
https://www.reddit.com/r/programming/comments/1gmaurr/how_to_use_retrievalaugmented_generation_rag_for/

submitted by /u/odd_sherlock (https://www.reddit.com/user/odd_sherlock)
[link] (https://www.permit.io/blog/building-ai-applications-with-enterprise-grade-security-using-fga-and-rag) [comments] (https://www.reddit.com/r/programming/comments/1gmaurr/how_to_use_retrievalaugmented_generation_rag_for/)

Читать полностью…

Reddit Programming

Hunting for Gems
https://www.reddit.com/r/programming/comments/1gm8dg9/hunting_for_gems/

submitted by /u/stackoverflooooooow (https://www.reddit.com/user/stackoverflooooooow)
[link] (https://www.railsexplained.com/pages/hunting-for-gems/) [comments] (https://www.reddit.com/r/programming/comments/1gm8dg9/hunting_for_gems/)

Читать полностью…

Reddit Programming

Making a Social Network - xpress.wtf
https://www.reddit.com/r/programming/comments/1gm37rg/making_a_social_network_xpresswtf/

submitted by /u/stagas (https://www.reddit.com/user/stagas)
[link] (https://www.youtube.com/watch?v=SnklE0eQhTc) [comments] (https://www.reddit.com/r/programming/comments/1gm37rg/making_a_social_network_xpresswtf/)

Читать полностью…

Reddit Programming

Im 28years old. I'm to old to start coding?
https://www.reddit.com/r/programming/comments/1glmc7v/im_28years_old_im_to_old_to_start_coding/

<!-- SC_OFF -->I want to start coding couse I feel I can be used full creating stuff out of my mind and helping people out with projects to earn money. Im too old to start? And I'm not very good with math <!-- SC_ON --> submitted by /u/Sinrespetopr (https://www.reddit.com/user/Sinrespetopr)
[link] (http://help.com/) [comments] (https://www.reddit.com/r/programming/comments/1glmc7v/im_28years_old_im_to_old_to_start_coding/)

Читать полностью…

Reddit Programming

Pkl: Apple's New Configuration Language That Could Replace JSON and YAML
https://www.reddit.com/r/programming/comments/1gllvlz/pkl_apples_new_configuration_language_that_could/

submitted by /u/Practical-Ideal6236 (https://www.reddit.com/user/Practical-Ideal6236)
[link] (https://www.trevorlasn.com/blog/pkl-apple-new-configuration-language) [comments] (https://www.reddit.com/r/programming/comments/1gllvlz/pkl_apples_new_configuration_language_that_could/)

Читать полностью…

Reddit Programming

Hacker News frontpage as a print newspaper that you can personalize
https://www.reddit.com/r/programming/comments/1glkxh1/hacker_news_frontpage_as_a_print_newspaper_that/

submitted by /u/mahin1384 (https://www.reddit.com/user/mahin1384)
[link] (https://yourhackernews.com/) [comments] (https://www.reddit.com/r/programming/comments/1glkxh1/hacker_news_frontpage_as_a_print_newspaper_that/)

Читать полностью…

Reddit Programming

IMC Prosperity 2 Writeup
https://www.reddit.com/r/programming/comments/1glhbq8/imc_prosperity_2_writeup/

submitted by /u/david-teather (https://www.reddit.com/user/david-teather)
[link] (https://dteather.com/blogs/imc-prosperity-2/) [comments] (https://www.reddit.com/r/programming/comments/1glhbq8/imc_prosperity_2_writeup/)

Читать полностью…

Reddit Programming

Visualizing binary files with ImHex's DSL, the "pattern language"
https://www.reddit.com/r/programming/comments/1glae25/visualizing_binary_files_with_imhexs_dsl_the/

submitted by /u/shot-master (https://www.reddit.com/user/shot-master)
[link] (https://xy2i.blogspot.com/2024/11/using-imhexs-pattern-language-to-parse.html) [comments] (https://www.reddit.com/r/programming/comments/1glae25/visualizing_binary_files_with_imhexs_dsl_the/)

Читать полностью…

Reddit Programming

How I organized my time as a full-time CTO
https://www.reddit.com/r/programming/comments/1gl5irh/how_i_organized_my_time_as_a_fulltime_cto/

submitted by /u/gregorojstersek (https://www.reddit.com/user/gregorojstersek)
[link] (https://newsletter.eng-leadership.com/p/how-i-organized-my-time-as-a-full) [comments] (https://www.reddit.com/r/programming/comments/1gl5irh/how_i_organized_my_time_as_a_fulltime_cto/)

Читать полностью…

Reddit Programming

How to make select in WinSock exceed the 64-socket limit
https://www.reddit.com/r/programming/comments/1gmktol/how_to_make_select_in_winsock_exceed_the_64socket/

submitted by /u/stackoverflooooooow (https://www.reddit.com/user/stackoverflooooooow)
[link] (https://www.pixelstech.net/article/1730433482-How-to-make-select-in-WinSock-exceed-the-64-socket-limit) [comments] (https://www.reddit.com/r/programming/comments/1gmktol/how_to_make_select_in_winsock_exceed_the_64socket/)

Читать полностью…

Reddit Programming

Is Linux Really Taking Over? How the Open-Source OS Captured 4.5% of the Desktop Market in 2024
https://www.reddit.com/r/programming/comments/1gmgmqq/is_linux_really_taking_over_how_the_opensource_os/

submitted by /u/btccit (https://www.reddit.com/user/btccit)
[link] (https://sht.ac/oj1Ni1) [comments] (https://www.reddit.com/r/programming/comments/1gmgmqq/is_linux_really_taking_over_how_the_opensource_os/)

Читать полностью…

Reddit Programming

Solving a DojoCode challenge in freefall!
https://www.reddit.com/r/programming/comments/1gmdzmc/solving_a_dojocode_challenge_in_freefall/

submitted by /u/DojoCodeOfficial (https://www.reddit.com/user/DojoCodeOfficial)
[link] (https://youtu.be/jAfJBImnwaU?si=vMaUTR_pssHV-4u_) [comments] (https://www.reddit.com/r/programming/comments/1gmdzmc/solving_a_dojocode_challenge_in_freefall/)

Читать полностью…

Reddit Programming

Cyber Security: A Pre-War Reality Check - Bert Hubert's writings
https://www.reddit.com/r/programming/comments/1gmdinx/cyber_security_a_prewar_reality_check_bert/

submitted by /u/Alexander_Selkirk (https://www.reddit.com/user/Alexander_Selkirk)
[link] (https://berthub.eu/articles/posts/cyber-security-pre-war-reality-check/) [comments] (https://www.reddit.com/r/programming/comments/1gmdinx/cyber_security_a_prewar_reality_check_bert/)

Читать полностью…

Reddit Programming

I created a cloud bogosort, so if you have a scratcher account you can partake in the journey for the first completed bogosort.
https://www.reddit.com/r/programming/comments/1gmbshe/i_created_a_cloud_bogosort_so_if_you_have_a/

submitted by /u/Frequent-Yard3050 (https://www.reddit.com/user/Frequent-Yard3050)
[link] (https://scratch.mit.edu/projects/1093429026/) [comments] (https://www.reddit.com/r/programming/comments/1gmbshe/i_created_a_cloud_bogosort_so_if_you_have_a/)

Читать полностью…

Reddit Programming

The web's clipboard, and how it stores data of different types
https://www.reddit.com/r/programming/comments/1gmazid/the_webs_clipboard_and_how_it_stores_data_of/

submitted by /u/fagnerbrack (https://www.reddit.com/user/fagnerbrack)
[link] (https://alexharri.com/blog/clipboard) [comments] (https://www.reddit.com/r/programming/comments/1gmazid/the_webs_clipboard_and_how_it_stores_data_of/)

Читать полностью…

Reddit Programming

Initial CUDA Performance Surprises
https://www.reddit.com/r/programming/comments/1gmabnx/initial_cuda_performance_surprises/

submitted by /u/alexeyr (https://www.reddit.com/user/alexeyr)
[link] (https://probablydance.com/2024/10/07/initial-cuda-performance-lessons/) [comments] (https://www.reddit.com/r/programming/comments/1gmabnx/initial_cuda_performance_surprises/)

Читать полностью…

Reddit Programming

gccrs: An alternative compiler for Rust
https://www.reddit.com/r/programming/comments/1gm7rku/gccrs_an_alternative_compiler_for_rust/

submitted by /u/JRepin (https://www.reddit.com/user/JRepin)
[link] (https://blog.rust-lang.org/2024/11/07/gccrs-an-alternative-compiler-for-rust.html) [comments] (https://www.reddit.com/r/programming/comments/1gm7rku/gccrs_an_alternative_compiler_for_rust/)

Читать полностью…

Reddit Programming

GitCase: A Secure Way to Build and Share Your Developer Portfolio
https://www.reddit.com/r/programming/comments/1gm2s0l/gitcase_a_secure_way_to_build_and_share_your/

submitted by /u/Electrical-Mixture18 (https://www.reddit.com/user/Electrical-Mixture18)
[link] (https://gitcase.dev/) [comments] (https://www.reddit.com/r/programming/comments/1gm2s0l/gitcase_a_secure_way_to_build_and_share_your/)

Читать полностью…

Reddit Programming

ChatGPT as an Technical Founder?
https://www.reddit.com/r/programming/comments/1glm1sc/chatgpt_as_an_technical_founder/

<!-- SC_OFF -->So, being that I have been unable to find a TF, could I actually use ChatGPT to build a website and an App based on my needs? Not asking for a how to, just if it can be done. TIA <!-- SC_ON --> submitted by /u/thesigningcircle (https://www.reddit.com/user/thesigningcircle)
[link] (http://nothingtoseehere.com/) [comments] (https://www.reddit.com/r/programming/comments/1glm1sc/chatgpt_as_an_technical_founder/)

Читать полностью…

Reddit Programming

Prompting AI for coding is not really efficient (mostly)
https://www.reddit.com/r/programming/comments/1gllj7t/prompting_ai_for_coding_is_not_really_efficient/

<!-- SC_OFF -->I am trying to utilize AI for my daily coding especially for REST API. Let say I have a function that involve: 1) extracting jwt from header, 2) encrypt/decrypt some data using external hash function, 3) writing into database using ORM, and 4) return http response and error handling. I have to explain everything on the prompt (which is a hard task compared to writing a plain code), includes where to import the external function it really hard get inconsistent answer everytime I ask the GPT. Do you think I am using AI on the wrong use case? If yes, then what is the use case AI for coding? I experience that writing code directly on to programming language takes less energy than explaining everything to GPT (sometimes I need to adjust the code manually after the GPT response) <!-- SC_ON --> submitted by /u/rioriorioooo (https://www.reddit.com/user/rioriorioooo)
[link] (https://chatgpt.com/) [comments] (https://www.reddit.com/r/programming/comments/1gllj7t/prompting_ai_for_coding_is_not_really_efficient/)

Читать полностью…

Reddit Programming

Supervisores y Árboles de Supervisión en #Elixir
https://www.reddit.com/r/programming/comments/1glhjqr/supervisores_y_%C3%A1rboles_de_supervisi%C3%B3n_en_elixir/

submitted by /u/emanuelpeg (https://www.reddit.com/user/emanuelpeg)
[link] (https://emanuelpeg.blogspot.com/2024/11/supervisores-y-arboles-de-supervision.html) [comments] (https://www.reddit.com/r/programming/comments/1glhjqr/supervisores_y_%C3%A1rboles_de_supervisi%C3%B3n_en_elixir/)

Читать полностью…

Reddit Programming

My Experience as a MIT Battlecode 2024 Finalist
https://www.reddit.com/r/programming/comments/1glhbij/my_experience_as_a_mit_battlecode_2024_finalist/

submitted by /u/david-teather (https://www.reddit.com/user/david-teather)
[link] (https://dteather.com/blogs/battlecode24/) [comments] (https://www.reddit.com/r/programming/comments/1glhbij/my_experience_as_a_mit_battlecode_2024_finalist/)

Читать полностью…

Reddit Programming

Exploring Postgres's arena allocator by writing an HTTP server from scratch
https://www.reddit.com/r/programming/comments/1gl9t7e/exploring_postgress_arena_allocator_by_writing_an/

submitted by /u/alexeyr (https://www.reddit.com/user/alexeyr)
[link] (https://www.enterprisedb.com/blog/exploring-postgress-arena-allocator-writing-http-server-scratch) [comments] (https://www.reddit.com/r/programming/comments/1gl9t7e/exploring_postgress_arena_allocator_by_writing_an/)

Читать полностью…

Reddit Programming

After getting backlash for my AI tool that generates commit messages, I tried to improve it
https://www.reddit.com/r/programming/comments/1gl574j/after_getting_backlash_for_my_ai_tool_that/

submitted by /u/TheGreaT1803 (https://www.reddit.com/user/TheGreaT1803)
[link] (https://github.com/jnsahaj/lumen) [comments] (https://www.reddit.com/r/programming/comments/1gl574j/after_getting_backlash_for_my_ai_tool_that/)

Читать полностью…
Subscribe to a channel