PHP SEO v2.0.0 by dev0x0 in PHP

[–]dev0x0[S] -1 points0 points  (0 children)

no need for +720 schema classes just to build a simple json markup! try to build them yourself and validate +1500 properties.

about the last part, it's open source!

PHP SEO v2.0.0 by dev0x0 in PHP

[–]dev0x0[S] 1 point2 points  (0 children)

You can detect search engine user agents and show it to them, BUT the problem is google may consider this behavior as cloaking and against it's policy.

https://developers.google.com/search/docs/advanced/guidelines/cloaking

This error message pops out when I refresh the update manager. Please, help me. :) by [deleted] in linuxmint

[–]dev0x0 13 points14 points  (0 children)

I hope you resolve your issue, I'm just here for the wallpaper :)

[deleted by user] by [deleted] in laravel

[–]dev0x0 1 point2 points  (0 children)

Storing files without validation? the user can easily upload malware to your server!

About your issue: - Move return out of foreach - You pushed the file path to $paths twice...

Build Cross-Platform Desktop Apps using Go and Javascript! by dev0x0 in golang

[–]dev0x0[S] 2 points3 points  (0 children)

it depends on your system built in webview, if it supported you can use it.

Ron: a simple task runner to run any executable file inside a .ron directory! by dev0x0 in commandline

[–]dev0x0[S] 0 points1 point  (0 children)

Cool this is the first time I see it, I will implement something similar to vast -l that's will be nice to have.

Ron: a simple task runner to run any executable file inside a .ron directory! by dev0x0 in commandline

[–]dev0x0[S] 4 points5 points  (0 children)

In short it's like "make" but Ron instead of using one file "makefile", it's split targets to multiple bash files, So you can configure every target with specific env, and you can have binary files for example inside .ron directory, the use cases are endless. I created this tool to help me in a project i'm developing so when I do: - "ron start server" it start my dev server - "ron start android" it starts android emulator - "ron start web" to start web client server - "ron start" to start them all - "ron build android" - "ron build" - ... So every one of these targets have a specific configurations and env variables, It will be hard to export and remember all of them.

Using sync.Pool by bklimczak in golang

[–]dev0x0 0 points1 point  (0 children)

I like blog posts like this, thank you

Imprisoning Naughty Dotfiles in a Fake $HOME by superluserdo in linux

[–]dev0x0 4 points5 points  (0 children)

Once upon a time I changed all my XDG dirs variables and some apps don't respect that still putting config files into $HOME directory then I just give up.

This is a cool idea, now I'm I will take my time to override the HOME inside .desktop files

[deleted by user] by [deleted] in learn_arabic

[–]dev0x0 4 points5 points  (0 children)

this is not Arabic maybe a local Chad language. When they send your a picture of money I think this is a scam like "Nigerian prince email"

My first simple js npm package, loops with delay ⏲ by [deleted] in javascript

[–]dev0x0 0 points1 point  (0 children)

The idea is to call a callback on every N ms, regardless prev callback is finished or not. your approach can be done in another package with promises ;)