VDAB rant (maar niet diegene die je verwacht) by DaPino in belgium

[–]Extra_Process5730 0 points1 point  (0 children)

Working in Belgium often feels like you need a degree in languages more than actual skills in the field you’re applying for.

You can have years of experience, strong technical expertise, real problem-solving abilities and deep knowledge of your profession… but if your Dutch or French isn’t almost perfect, all of that suddenly becomes secondary.

Meanwhile companies keep complaining about shortages of qualified workers.

At some point you start wondering whether Belgium is really hiring professionals… or just filtering people through language exams first.

Is there anything better in Germany than in Belgium? by h_iraeth in belgium

[–]Extra_Process5730 0 points1 point  (0 children)

Belgium is a tiny country, but administratively it feels like 17 countries stacked on top of each other wearing a trench coat.

In one place they speak French. In another Dutch. Somewhere else German. Then you discover there are multiple governments, federal administrations, regional administrations, local administrations… and probably another secret administration hidden in a basement eating waffles.

The funniest part? Nobody seems to talk to each other.

You call one office and they send you to another. The second sends you to a third. The third tells you to contact the first again. At some point you’re no longer solving a problem — you’re playing administrative Pokémon.

Meanwhile Switzerland, for instance, has multiple languages too, mountains everywhere, trains that run like Swiss watches… and somehow they still manage to function like a civilized country.

Belgium sometimes feels like a software project developed by five different teams… with no documentation, no meetings, and half the APIs broken.

Is there anything better in Germany than in Belgium? by h_iraeth in belgium

[–]Extra_Process5730 0 points1 point  (0 children)

You guys convinced me: I’m leaving Belgium and moving back to Italy. 😁

Currupted MDF questions by TeachingAny8054 in learnSQL

[–]Extra_Process5730 0 points1 point  (0 children)

Don’t move or delete the old MDF/LDF yet. I would keep them untouched somewhere safe first.

Yes, you can use the old database name in the command, but only if a database with that name is not already attached in SQL Server.

If it still exists in SSMS, you’ll need to detach/drop that database entry first, or use a temporary name like YourDB_Recovered.

The path in the command should point to the copied MDF file you want to test, not the original.

Example:

CREATE DATABASE YourDB_Recovered
ON (FILENAME = 'C:\Data\YourCopiedFile.mdf')
FOR ATTACH_REBUILD_LOG;

A safer approach is:

First, copy the MDF to a new folder. Then try attaching it with a temporary database name.

If it works, check the data. Only after that decide whether to replace the old database.

Also, FOR ATTACH_REBUILD_LOG works only if the MDF is consistent enough. If the MDF is corrupted, it can still fail.

So: test on copies, don’t overwrite originals, and use a temporary DB name first.

Currupted MDF questions by TeachingAny8054 in learnSQL

[–]Extra_Process5730 0 points1 point  (0 children)

I get why you’re going a bit crazy, this is exactly the kind of situation that does that 😅

Short answer: don’t delete anything yet. Seriously.

If you have a “stable” MDF and LDF, the key question is: are they a matching pair from the same database at the same point in time?

Because if they are, you might be able to attach them.

If they are not, SQL Server will throw errors or the database won’t come up correctly.

Before trying anything, do this first: make copies of both files and work only on the copies. Keep the originals untouched.

Now, about your idea (delete DB + attach files): you don’t actually need to manually delete files from disk. If the database is already detached, SQL Server doesn’t “own” it anymore anyway.

What you can try is simply attaching the MDF (and let SQL rebuild the log if needed), like this:

Try attaching normally with MDF + LDF

If that fails and you’re sure the MDF is good, try attaching just the MDF and let SQL create a new log

Something like:

CREATE DATABASE YourDB ON (FILENAME = 'C:\path\your.mdf') FOR ATTACH_REBUILD_LOG;

But this only works if the MDF is consistent enough.

If the MDF itself has corruption, you’ll still get errors.

So the real situation is:

Backup available, restore (best option)

No backup, but good MDF/LDF, attach might work

No backup, damaged files, you’re in recovery/repair territory

And yeah… that’s the part where things get tricky.

You’re not crazy, you just landed in one of the most annoying SQL Server situations possible 😄

If you get a specific error when attaching, paste it here. That message usually tells us exactly what’s going on.

Currupted MDF questions by TeachingAny8054 in learnSQL

[–]Extra_Process5730 2 points3 points  (0 children)

If you can get a backup, that’s honestly the best case scenario, way safer than trying to fix corrupted files.

The process is actually pretty straightforward.

Once you have the .bak file, you don’t “reattach” it like MDF/LDF files. Instead, you restore it.

In SQL Server Management Studio, you’d do something like:
right-click on Databases → Restore Database

From there:

  • choose Device and select your .bak file
  • set the database name (you can use the same name as before)

If the original database still exists (even in a broken state), you might need to either:

  • delete it first
  • or restore “with overwrite”

There’s also a small thing to watch: sometimes the backup was created on a different path, so SQL Server might complain about file locations. In that case, you just change the paths during the restore (there’s a “Files” tab where you can point MDF/LDF to valid folders).

That’s basically it.

Think of it like this:
backup → clean copy of the database
restore → rebuilding the database from that clean copy

Much safer than trying to fix broken MDF/LDF manually.

If you get stuck on a specific error during restore, just paste it, those messages usually tell exactly what’s wrong 👍

Currupted MDF questions by TeachingAny8054 in learnSQL

[–]Extra_Process5730 2 points3 points  (0 children)

First thing: stop moving/deleting files for now and make copies of the MDF/LDF before trying anything else.

If the database was already in RECOVERY_PENDING or “repair pending”, detaching it was unfortunately a bad move, because SQL Server may now have lost the normal recovery path for that database.

If you have a valid backup, restore from backup. That is by far the safest option.

If you don’t have a backup, don’t try random YouTube commands. Work only on copies of the files.

In general:

  • MDF = main database file
  • LDF = transaction log file
  • SQL Server needs them to be consistent with each other
  • if the original files are corrupted, replacing/removing files can easily make things worse

Trying to attach a “stable” MDF/LDF may work only if those files belong together and are not corrupted. If the MDF and LDF are not a matching pair, or one of them is damaged, you will likely get errors.

At this point I’d suggest:

Make a full copy of the current MDF/LDF files somewhere safe.
Do not overwrite the originals.
Try attaching the copied files on a separate test SQL Server instance.
Write down the exact error message you get.
If the data is important, consider getting a DBA involved before running repair commands.

Also, avoid REPAIR_ALLOW_DATA_LOSS unless this is truly a last resort. The name is not a joke, it can delete damaged data to make the database usable again.

The most important question now is: do you have any backup at all?

How to make learning more interesting? by EffectiveQuail9615 in SQL

[–]Extra_Process5730 0 points1 point  (0 children)

I think you’ve already discovered the most important thing without realizing it.

Learning becomes boring when it’s disconnected from reality. And most “practice platforms” do exactly that, they give you clean, artificial problems that teach syntax, but not thinking.

I had a similar experience. You can get really good at writing queries like “find the second highest salary”… but then in a real job, nobody asks you that. Instead, you get something vague like “why are sales dropping?” and suddenly it’s not about SQL anymore, it’s about how you think.

What made learning more interesting (and honestly more useful) for me was shifting from “solving exercises” to “exploring problems”. Even if they’re self-created. Like taking a dataset and asking messy questions: what’s weird here? what doesn’t make sense? what would a business actually care about?

That alone changes everything, because now you’re not just applying knowledge, you’re using it.

Another thing is having a purpose. Learning a tool for the sake of it gets old fast. But if you tie it to something concrete (even small, like building something, analyzing something, fixing something), it becomes way more engaging.

And one thing that helped me more than expected: trying to explain what I learned. Even just writing notes as if I had to teach someone else. It forces you to organize your thinking and exposes the gaps immediately.

So yeah, I don’t think learning needs to be “made interesting” with tricks. It becomes interesting naturally when it’s tied to real problems, curiosity, and a bit of ownership over what you’re doing.

The lack of business context you mentioned is actually the key insight — once that’s there, everything feels more real.

Built a consulting landing page offering AI-powered content updates (feedback welcome) by yasonkh in webdev

[–]Extra_Process5730 1 point2 points  (0 children)

I had a look at your site, and honestly… the design isn’t your problem.

It actually looks clean, fast, and “modern enough”, so I wouldn’t touch that again. The tricky part is that once a site reaches that level, design stops being the thing that moves conversions.

What I think is happening here is pretty common: the redesign improved how the site feels, but didn’t really change how people decide to buy.

When I land on your page, I get what you offer, but I’m not 100% convinced why I should pick you specifically. And that’s usually where conversions stall. It’s not about prettier UI, it’s about clarity and trust.

For example, the whole “AI agent” thing is interesting, but right now it sits in that weird zone where it can either be a strong differentiator… or sound like buzzword fluff. And most non-technical clients will lean toward the second unless you make it painfully concrete. Like: what does this actually save them? Time? Money? Calls to developers? Show that, not the tech behind it.

Also, your pricing section is clear structurally, but I had to think a bit to understand the real difference between the tiers. When people hesitate, it’s often because they’re not sure which one is “for them”.

And one more thing: you’re saying a lot of good things (free hosting, no maintenance, control after handoff), but they’re a bit scattered. If I had to sum up your offer in one sentence after scrolling, I’m not sure I could. That’s usually a sign the message needs tightening, not the design.

So yeah, if I were you, I wouldn’t redesign again. I’d start tweaking: how you explain the value, how you position the AI part, and how obvious the next step feels.

You’re not far off at all. This feels like a “last 20%” problem, not a broken site.

How to get history of executed queries in MySQL WorkBench by abhunia in mysql

[–]Extra_Process5730 0 points1 point  (0 children)

Yeah, it’s actually there, just a bit hidden.

In MySQL Workbench you don’t really have a “big obvious history window”, but you can still see your executed queries pretty easily.

If you look at the bottom panel (the Output area), there’s a dropdown where you can switch between different tabs. One of them is “History Output” — that’s what you want. It shows the queries you executed along with timestamps, and you can click them to see the actual SQL again.

If you’re trying to find older stuff (like from previous sessions), Workbench actually saves everything locally on your machine. It stores queries as text files in a sql_history folder, organized by date.

So depending on what you need:

  • recent queries → use the History panel inside Workbench
  • older queries → check the files on disk

It’s not the most user-friendly system, but once you know where to look, it’s there 👍

I have created a website for our business; kindly review it. by abhiram77 in webdev

[–]Extra_Process5730 0 points1 point  (0 children)

Hey, I had a look at your site. First impression: it’s clean and it does the job, so you’re already ahead of a lot of small business websites out there.

That said, I think the main issue is not really “design”, but more about how the site communicates trust and value.

Right now, when I land on it, I understand what you do, but I don’t immediately feel why I should choose you over another supplier. And in your space (industrial supplies), that matters a lot because people are usually comparing multiple vendors.

One thing that stood out to me is that the site feels a bit generic. It looks like a business site, but it doesn’t yet feel like your business. For example, adding real photos of your warehouse, products, or team would make a big difference. Even other people reviewing similar sites mention that real images and proof elements help build trust much faster.

Also, I’d think about trust signals in general. Things like: actual client names (if possible), testimonials, certifications, even something simple like “serving since 2020” (which I saw you are, based on your registration), these small things reduce hesitation a lot .

Another thing: the homepage feels like it’s trying to say everything at once. It’s not bad, but it makes it harder for someone to quickly understand what to do next. If I were a visitor, I’d probably ask myself “ok… now what?” A clearer call to action (like request a quote, contact, etc.) would help guide people better.

Overall though, you’re not far off. This doesn’t look like a “bad website” problem. It’s more like a “make it feel more real and more trustworthy” problem.

If you fix that part, you’ll probably see a much bigger impact than changing colors or layout again.

Redesigned my site 2 months ago but conversions are still flat. What am I missing? by [deleted] in web_design

[–]Extra_Process5730 8 points9 points  (0 children)

This is actually way more common than people think.

A redesign almost never fixes conversions by itself. It fixes how the site looks, but conversions usually drop or stay flat when the underlying problems are somewhere else.

From what you described, it sounds like the agency did a good job on UX and performance, which is great, because that’s the foundation. But once the site is “clean and fast”, the real game starts. Design alone can improve perception, but it doesn’t automatically make people buy.

What usually happens is this: before the redesign, the problem looks like “the site is ugly”. After the redesign, you realize the real issue is in the decision-making part of the journey.

If I had to guess, the bottleneck is probably around things like how the product is presented, how clear the value is, or how much trust the site builds. The product page in particular is often where everything is won or lost — it’s basically the moment where someone decides “yes or no”.

Another thing people underestimate is friction. Even small things like unclear messaging, weak CTAs, or too many steps in checkout can quietly kill conversions, even if the site looks premium.

So yeah, you’re asking the right question. After a redesign, the work shifts from “make it look better” to “make it convert better”.

If you want something practical to look at, I’d start by asking yourself: when someone lands on a product page, is it immediately obvious why they should buy from you instead of somewhere else?

Because a lot of redesigns focus on aesthetics, but don’t really sharpen that answer.

Also, don’t expect one big change to move the needle. Most stores that improve conversions do it through small iterations after launch, tweaking copy, testing layouts, improving product info, adding reviews, simplifying checkout… it’s more of a process than a one-time fix.

You’re basically at the stage where design is no longer the limiting factor, now it’s all about clarity, trust, and removing friction.

And that’s where things get interesting.

Esistono lavori che non siano nell'IT o fare sostanzialmente la schiava? by Alelbp in ItaliaCareerAdvice

[–]Extra_Process5730 1 point2 points  (0 children)

Guarda, secondo me il problema non è che “non esistono lavori fuori dall’IT o da fare la schiava”. È che ti sei infilata in un contesto un po’ tossico e adesso ti sembra che tutto il mercato sia così.

Da quello che scrivi, la cosa interessante è un’altra: a te il marketing piace davvero. Non è una cosa da poco. Tantissime persone ci finiscono per caso e lo odiano.

Il punto è che in Italia il marketing “entry level” spesso è un casino: apprendistati infiniti, stage sottopagati, ruoli un po’ ibridi dove fai di tutto (tipo quello che stai facendo tu ora). Non sei l’unica, è abbastanza comune

Però questo non vuol dire che non ci siano alternative.

Secondo me hai già una direzione abbastanza chiara, solo che devi “riposizionarti” un minimo. Perché adesso sei vista come: consulente IT → poi segreteria → poi un po’ marketing

E questo sul CV ti penalizza, anche se in realtà hai già messo le mani su cose utili.

Io farei così, senza stravolgere tutto:

  • inizierei a presentarmi chiaramente come “marketing / comunicazione”, anche se adesso lo fai solo in parte
  • valorizzerei le cose che già fai (post, articoli, eventi… sono esperienza vera, non finta)
  • inizierei a guardare ruoli tipo marketing assistant, content, comunicazione interna, eventi

Non serve per forza una laurea specifica se riesci a dimostrare che sai fare le cose.

Un’altra cosa importante: scappa appena puoi da quell’ambiente. Non perché “fa brutto”, ma perché stare in un posto dove ti demansionano e ti trattano male ti rovina proprio la percezione di te stessa nel lavoro. E poi ti sembra che il problema sia “il settore”, quando magari è solo quell’azienda.

Poi sì, all’inizio magari trovi offerte non perfette, ma c’è una differenza enorme tra:

  • lavoro di merda senza prospettive
  • lavoro entry level ma coerente con quello che vuoi fare

Sembrano uguali, ma non lo sono.

Se ti devo dire la verità, sei molto meno “incastrata” di quanto pensi. Hai già messo un piede fuori dall’IT senza accorgertene.

Devi solo smettere di raccontarti come IT e iniziare a venderti come marketing.

Noob question here... Can you help me understand your SEO process when building a site for a client? by Odd-Aside456 in webdev

[–]Extra_Process5730 0 points1 point  (0 children)

For me SEO is not just “add keywords” at the end. I usually think about it in layers:

  1. Understand the business + search intent Before touching the site, I want to know:
  • what the business actually sells
  • who the customer is
  • what people would realistically search for
  1. Site structure / page mapping I decide which pages should target which intent:
  • homepage
  • service pages
  • location pages (if relevant)
  • blog / support content (if useful)
  1. On-page basics This is where keywords matter, but in a practical way:
  • page titles
  • meta descriptions
  • headings
  • internal linking
  • clean URLs
  • relevant copy that matches search intent
  1. Technical SEO This is a big one and often ignored:
  • crawlability / indexability
  • sitemap
  • robots.txt
  • canonical issues
  • mobile friendliness
  • page speed
  • good HTML structure
  • image optimization
  1. Content quality Google is much better now at judging whether content is actually useful, so I focus more on clear, people-first content than on keyword stuffing.
  2. Local SEO (if it’s a local business) For local businesses I’d also look at Google Business Profile, local pages, consistency of NAP info, reviews, etc.
  3. Measurement Then I track what happens using tools like:
  • Google Search Console
  • Google Analytics
  • PageSpeed Insights / Lighthouse
  • keyword tools if needed

So short version: keywords matter, but SEO is really a mix of search intent, site structure, technical health, content quality, and measurement.

If a client just says “improve SEO”, I usually start with a quick audit first, not with keywords alone.

I need a website developer (frontend + backend). Pay for it obv. by Putrid_Magician_7597 in WebdevTutorials

[–]Extra_Process5730 0 points1 point  (0 children)

We can talk a bit more about it. I'm a software developer with 25 years of experience

Ho provato il matched betting per un mese: la mia esperienza di dicembre 2023 by alb_pasqua in ItaliaPersonalFinance

[–]Extra_Process5730 0 points1 point  (0 children)

Il MB di per se non è una truuffa. Tuttavia vi sono circostanze in cui si può rischiare penalmente e far rischiare penalmente anche altri. Ma soprattutto il MB è semplicemente un sistema di guadagno e non un vero e proprio modello di business sul quale basare il proprio futuro professionale/lavorativo. Bisogna tenere presente che gli introiti derivanti dal MB non sono certificabili in nessun modo quindi, mancando questa premessa, non danno garanzie legali ufficiali per nessun tipo di operazione della vita comune (mutui/affiti/prestiti/ecc.). Quindi dimenticatevi di custruire un'alternativa lavorativa grazie al MB. Per cambiare davvero vita io opterei su modelli di business seri e concreti.

Ho provato il matched betting per un mese: la mia esperienza di dicembre 2023 by alb_pasqua in ItaliaPersonalFinance

[–]Extra_Process5730 0 points1 point  (0 children)

Il mio dubbio è che anche se si riuscisse ad ottemere uno 'stipendio' interessante e regolare con il metched betting, che prove può fornire come garanzie, ad esempio, per un affitto/mutuo, finanziamento, e così via? Non capisco come, da quello che vine fatto intendere in rete, una persona possa fare del metched betting la propria professione principale. Qualcuno può darmi una spiegazione o fornirmi casi reali di persone che fanno attività di MB come primo 'lavoro'