Mawoka, to 3DPrinting
@Mawoka@mastodon.online avatar

I don't have enough time to keep up with all my projects: , , , , , and . I'd really appreciate having a helping hand regarding @classquiz who can take on some small(ish) issues I've been aware of for months, but at the time, I am focused on other projects (also in the regard of coding): There's @homeassistant and .

lefebvre, to programming
@lefebvre@hachyderm.io avatar
rochacbruno, to python
@rochacbruno@social.rochacbruno.com avatar

I wish I could stay on the GOOD line only, but my coworkers decided that we are crossing the EVIL line.
Maybe I am the only one who doesn't own a wide screen display, and maybe I am the only one using font-size 18.


javajuggler, to programming

hello my username is JavaJuggler i am a programmer and i love to create things that help people in their daily lives. i am the creator and developer of https://chat-to.dev which is a site where programmers of all levels can create chat rooms to talk, share, teach and learn things related to programming. with this i decided to invite you to visit my site and enjoy all the features it contains. give me feedback if you visit my site. thanks

noellemitchell, to webdev
@noellemitchell@mstdn.social avatar

I really should be learning CSS faster 😅 :blobcatfearful:

My Neocities blog looks really plain at the moment. :blobcatamused:

64bithero, to python
@64bithero@mstdn.games avatar

Finally solved the python highlighting issue in Zed :D . Great way to spend a Saturday I know ..
#developer #zed #coding #python

iammannyj, to programming
@iammannyj@fosstodon.org avatar

Basic programming language celebrates its 60th birthday

The first Basic interpreter went live in May 1964. This was intended to make it easier to learn programming. However, the computers to go with it were not available until much later.

Basic is the abbreviation for "Beginner's All-Purpose Symbolic Instruction Code". In other words, it is a general-purpose programming language for beginners.

https://www.digitec.ch/en/page/basic-programming-language-celebrates-its-60th-birthday-32957

stevensanderson, to Excel
@stevensanderson@mstdn.social avatar

This VBA macro saves an Excel worksheet as a PDF. It sets and sorts the data, creates a temporary sheet with headers, formats and aligns the data, and adjusts column widths. The macro defines the PDF path, deletes any existing file, sets page orientation and footer, exports the sheet to PDF, deletes the temporary sheet, and shows a message with the PDF path. Modify to your needs if you find it useful.

noellemitchell, to Blog
@noellemitchell@mstdn.social avatar

Might work on my today 😄 :apusheencomputer:

https://noellesbookshelf.neocities.org

stvfrnzl, to Blog
@stvfrnzl@mastodon.online avatar

Five years ago was my graduation from #CodingBootcamp on this very day.

I looked back and wrote a GIANT #blog post: https://stevefrenzel.dev/posts/from-boot-camp-to-blog-five-years-in-the-tech-industry/

Sit back, relax and enjoy the ride. #WebDev #Fullstack #Coding #Frontend #Backend #HTML #CSS #JavaScript

swiftcraft, to iOS
@swiftcraft@hachyderm.io avatar

🌟Don't miss @dimsumthinking keynote session at !

Explore the intersection of mathematics and Swift development, and gain insights into Macros, Models, and ML.

https://youtu.be/sr1l3Ke6Uao

Secure your spot now! https://swiftcraft.uk/tickets 🚀

stevensanderson, to programming
@stevensanderson@mstdn.social avatar

🎉 New Post Alert! 🎉

Counting words in a string is a fundamental task in data analysis.

  1. Base R: Use strsplit(), a straightforward method to split strings and count words.

  2. stringr: The str_split() function from the stringr package makes the code more readable.

  3. stringi: For powerful and efficient string manipulation, stri_split_regex() from the stringi package is your go-to.

Happy coding! 🚀

#R

Post: https://www.spsanderson.com/steveondata/posts/2024-05-16/

kaiserkiwi, to Symfony
@kaiserkiwi@corteximplant.com avatar

My "resting" heart rate while doing a update :blobcatbatupsidedown:

kaiserkiwi,
@kaiserkiwi@corteximplant.com avatar

And nothing worked. As expected. This software is just so frustrating.

The time window is over again. I hope this time the backup works properly.

stevensanderson, to programming
@stevensanderson@mstdn.social avatar

After I update my #R Package TidyDensity there will be 176 functions...that's a lot of code I wrote. This is just a reflection. Right now it is 172.

#R

stevensanderson, to programming
@stevensanderson@mstdn.social avatar

🔎 Selecting Columns Containing a Specific String in R: A Quick Guide 🚀

Hey R users! Need to select columns by a specific string? Here's how in base R, stringr, stringi, dplyr, and with a bonus from data.table.

🆒 R
✅ grepl
📦 stringr
📦 stringi
📦 dplyr

Bonus: 📦 data.table
library(data.table)
df_price <- df[, names(df) %like% "price"]

Happy coding! 🚀

Post: https://www.spsanderson.com/steveondata/posts/2024-05-15/

#R

image/png
image/png
image/png

kubikpixel, (edited ) to rust
@kubikpixel@chaos.social avatar

Is today the day of the crab and is that a good thing? Yes, it means that the chainring is now number one! 🦀🎉

⚙️ Announcing Rust 1.0
https://blog.rust-lang.org/2015/05/15/Rust-1.0.html


ArneBab, (edited ) to random German
@ArneBab@rollenspiel.social avatar

define-typed: a static type syntax-rules macro for to create API contracts and help the JIT compiler create more optimized code:

https://www.draketo.de/software/guile-snippets#define-typed

Improved thanks to feedback from Vivien and Zelphir in the Guile User mailing list.

Just 26 lines to get argument and return value typing without changing Guile.

I love the flexibility of ❤️

swiftcraft, to programming
@swiftcraft@hachyderm.io avatar

🌟Exclusive offer for job seekers!🎉

Dive into the world of Swift development at SwiftCraft's main conference for just £90 + workshops or tutorials for an additional £90 each!

Find out more and apply! https://swiftcraft.uk/jobseekers

GurgleApps, to RaspberryPi
@GurgleApps@mastodon.social avatar

If you're looking for a gift or a project see our Word Clock kits. Fun to build & a joy to own. We're also selling
@RaspberryPi_org picos and parts for your clock & lets not forget the snazzy white faceplate. https://gurgleapps.etsy.com/uk/listing/1689755114/color-word-clock-kit-operated-by-wifi

image/jpeg

stevensanderson, to programming
@stevensanderson@mstdn.social avatar

Want to check duplicate values across columns of a data.frame? Well you can do that in a basic way with TidyDensity and the check_duplicate_rows() function, or you can go through todays blog post for some other ideas with and

#R

Post: https://www.spsanderson.com/steveondata/posts/2024-05-14/

image/png

kaiserkiwi, to webdev
@kaiserkiwi@corteximplant.com avatar

PSA for my fellow ​s:

If you ever get the "offer" to work with 6, run. Run as fast as you can. There is nothing out there that is more of a developer nightmare than this pile of junk.

95% of my gray hair comes only from Shopware.

stevensanderson, to programming
@stevensanderson@mstdn.social avatar

Discover essential techniques to check for column existence in R data frames!

Use %in% with names() or colnames(), explore dynamic checks with exists() and within(), or identify patterns with grepl(). Experiment with these methods in your projects.

Post: https://www.spsanderson.com/steveondata/posts/2024-05-13/

#R

image/png

kaiserkiwi, to Laravel
@kaiserkiwi@corteximplant.com avatar

That made me chuckle :D

#Laravel #Statamic #PHP #Coding

skybert, to Java
@skybert@emacs.ch avatar

I know I'll get more geek points if I write Java code like:

pConf.getProfiles().forEach(<br></br>    p -> mProfileURIMap.put(p.getId(), p.getURI()));<br></br>

But I still think nothing beats a good old loop:

for (ProfileConf profileConf : pConf.getProfiles()) {<br></br>  mProfileURIMap.put(profileConf.getId(), profileConf.getURI());<br></br>}<br></br>

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • InstantRegret
  • magazineikmin
  • cisconetworking
  • khanakhh
  • Youngstown
  • rosin
  • mdbf
  • slotface
  • Durango
  • ngwrru68w68
  • thenastyranch
  • kavyap
  • DreamBathrooms
  • megavids
  • cubers
  • osvaldo12
  • normalnudes
  • GTA5RPClips
  • everett
  • ethstaker
  • modclub
  • tacticalgear
  • provamag3
  • Leos
  • anitta
  • tester
  • lostlight
  • All magazines