startfunction
startfunction
StartFunction
297 posts
Don't wanna be here? Send us removal request.
startfunction · 13 days ago
Text
Exploring the colorful Gamla Stan, Stockholm's Old Town
0 notes
startfunction · 1 month ago
Text
Spring Photo Editing: Create Stunning Flower Shots with Capture One
0 notes
startfunction · 1 month ago
Text
The Mesmerizing Stillness of Urban Photography
0 notes
startfunction · 1 month ago
Text
Cline is an open-source AI coding assistant designed for large-scale tasks, operating autonomously. It excels in code quality, context awareness, and speed. But there's a price to pay for it.
1 note · View note
startfunction · 2 months ago
Text
Choosing the Best AI Coding Assistant: Cursor might be the most balanced tool
🚀 AI Coding Assistants: Is Cursor the Most Balanced Option in 2025? While GitHub Copilot leans towards inline completions, Cline is heavy on autonomous coding. What if you need something in between? Cursor brings a unique balance, combining powerful AI code suggestions with a great chat experience thanks to its context awareness. I review it from usability and customization to its context awareness and code generation. Is Cursor as good as they say? 🔗 Read the full review in the blog post. What’s your go-to AI coding assistant in 2025? Let’s discuss! 👇 #AI #Coding #SoftwareDevelopment
0 notes
startfunction · 2 months ago
Text
TypeScript: make selected properties optional with Partial & Omit
I recently needed to construct a new type in #TypeScript making certain properties optional without modifying the original We can do this with Partial & Omit and with generics, turn it into a utility type! #100daysofcode #DEVcommunity
When you use the utility Partial on a type, it will make all the type properties optional. Let’s see how we can compose this utility with another one, Omit, to make optional only certain properties of this type. We’ll finally create a utility type using TypeScript generics to apply this on any type we want. Make all properties of a type optional The Partial and Omit utilities are well known in…
0 notes
startfunction · 2 months ago
Text
How to hide JavaScript's console.log output in Jest tests
I recently ran into a codebase that had many console.log() polluting Jest tests output resulting in a confusing mess. Here's how I got rid of them. #100daysofcode #DEVcommunity
I was working today in a codebase that had many intentional console.log output in all environments but production so they were showing up in Jest tests output. It would have been tedious to go and remove them one by one and so I devised this simple setup to suppress all console.log output at once while Jest is running. Configuring Jest This trick relies on Jest’s native ability to mock…
0 notes
startfunction · 4 months ago
Text
10 Best Views in Hamburg for Stunning Photos
One of the reasons why Hamburg is so photogenic, is that it’s a complex mix of nature, art, modern and ancient architecture, and if all that wasn’t enough, it has the harbor with its unique maritime vibe. Let’s see some great instagrammable locations around Hamburg that are a dream for those who love to collect the best views of a city! Dockland at sunset Dockland is one of Hamburg’s must-visit…
0 notes
startfunction · 6 months ago
Text
Potsdam in a day: visiting the Sanssoucci park
0 notes
startfunction · 7 months ago
Text
Supporting Your Team Through Fall and Winter
As the leaves get golden and daylight hours shrink, many of us feel the impact of seasonal changes on our sleep, mood, and productivity. Fall and winter present unique challenges, particularly for remote workers. For this reason, it’s important for managers to support your team for their well-being and to keep sustainable productivity. Common Hurdles During the Seasonal Change It’s not magic to…
0 notes
startfunction · 7 months ago
Text
Faster JavaScript & TypeScript compilation with SWC in WordPress
Introduction Let’s explore how to use the high-performance SWC (Speedy Web Compiler) to compile JavaScript & TypeScript assets for WordPress plugins and themes. SWC is a modern alternative to Babel, offering faster compilation, simpler configuration, and native support for both TypeScript and JSX. This is particularly useful for developing custom functionality like Gutenberg blocks. Why…
0 notes
startfunction · 8 months ago
Text
Setting Up Nginx for WordPress on macOS
While I’ve worked with WordPress sites running on Nginx in the past, I’d never configured Nginx from scratch on macOS. I wanted to see how easy to configure it is in comparison to Apache. Here’s the lightweight configuration to run Nginx on macOS with PHP and MariaDB. We’ll also see quickly why Nginx is a faster choice for WordPress local development. What’s Nginx and Why Is It Better Than…
0 notes
startfunction · 11 months ago
Text
WordCamp Europe 2024
Tumblr media
View On WordPress
0 notes
startfunction · 1 year ago
Text
How to write a competitive tech resume to get that interview you want
When you’re job hunting is important to craft your tech resume in a way that passes the ATS scanner, a software that checks if your resume is a good match for the job, and also to make it easy to understand to recruiters. Let’s see some tips on how to improve your tech resume to get you that job you want! Continue reading Untitled
Tumblr media
View On WordPress
0 notes
startfunction · 3 years ago
Text
How to ensure that TypeScript definition files are in the final build
How to ensure that TypeScript definition files are in the final build
While working recently on an NPM library built with Rollout, I noticed that the folder structure changed, and some TypeScript definition files, the .d.ts ones, weren’t in the final build where they were supposed to be. After fixing this, I created an integrity checker that ensured that all TypeScript definition files were there they should be and were run by a GitHub Action after the final…
Tumblr media
View On WordPress
0 notes
startfunction · 3 years ago
Text
How micro frontends can make or break app development
How micro frontends can make or break app development
Micro frontends are an architecture inspired by microservices proposing that web apps can be build and thought of as a composition of smaller apps, each one specialized in a certain feature and owned by a team that focuses in the feature offered. Since they’re independent apps, this also means that they can be built using different JavaScript technologies, for example, one app could use React,…
Tumblr media
View On WordPress
0 notes
startfunction · 3 years ago
Text
New BuddyPress 1.1 Theme Structure
New BuddyPress 1.1 Theme Structure
Andy Peatling reports at that the BuddyPress 1.1 will use only one theme for the home and member areas instead of the two that are currently required. Old themes will still work.
View On WordPress
0 notes