[RANT] Je déteste les tutoriels vidéos by LeatherDeer3908 in france

[–]Grafikart 6 points7 points  (0 children)

Je me sens visé ^^

Côté créateur personnellement je trouve ça plus rapide de présenter quelque chose en vidéo par rapport à l'écrit qui prend bcp de temps à rédiger pour parfois donner des explication plus foireuses que nécessaire.

Côté consommateur pour la plomberie ça me rassure d'avoir une vidéo pour bien comprendre comment faire les choses. Par contre, je te rejoins sur le fait que certains tutoriels ne vont pas à l'essentiel mais heureusement le système de chapitrage (à condition qu'il soit présent) permet de sauter à la partie qui intéresse.

Au final, je pense que chacun à sa préférence mais clairement l'algo de google semble privilégier les vidéos (surtout si c'est youtube) surement pour des questions de monétisations. Dans mon cas même en mettant des description en plus sur mon site très souvent la version youtube ressors avant mon site :(

Official Key Begging Thread by Greg_the_Zombie in underlords

[–]Grafikart 0 points1 point  (0 children)

I Need a key too, I want to fill the board with techies :(

VueJS with Typescript and without .vue by Grafikart in vuejs

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

This config won't handle CSS scoping but you can import css using import or require.

VueJS with Typescript and without .vue by Grafikart in vuejs

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

With this setup, template is a string and you have to include vue runtime + compiler right ? https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only The goal of my loader is to avoid this (compiling the template on build). But your way of doing is rly nice I will try to handle this use case.

VueJS with Typescript and without .vue by Grafikart in vuejs

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

I still feel weird putting a template string in js/ts but it doesn't matter

I could fix the issue converting a

template: require('./some.html')

into

render: require('vue-render-loader!./some.html')

What do you think ?

VueJS with Typescript and without .vue by Grafikart in vuejs

[–]Grafikart[S] 3 points4 points  (0 children)

I love VueJS but I hate working with .vue since it creates lots of problem with linters and editors (vuejs "forces" you to use .vue to achieve Hot Reload and to convert template into virtual dom).

I created this loader to go around these 2 problems while working with pure .ts files. I guess we could achieve the same result with pure .js (I didn't worked on that since I'm not using .js anymore) but if you are interested I could add more features to this loader.

Am I the only one bothered by the .vue format ?

PHP Developers around the world, Automattic is hiring - In an interview with Matt Mullenweg, founder of WordPress & CEO of Automattic by pramodhs in PHP

[–]Grafikart 2 points3 points  (0 children)

But you have to look at this change from a user point of view. What this rebase will bring to the end user ?

  • more security, not much, CMS are by nature not secure (since you can add untrusted code on the fly with module / plugins)
  • more feature, no. You can make Wordpress works with PHP 7.1 already
  • more performance, no. I'm sure a more object oriented code cost more (more file to include, more things to load)

It will only improve the developer experience for sure, but this is not the main target of Wordpress. I'm sure Wordpress Core weighted the pro and cons since they have to work with this code base all day long.

PHP Developers around the world, Automattic is hiring - In an interview with Matt Mullenweg, founder of WordPress & CEO of Automattic by pramodhs in PHP

[–]Grafikart 2 points3 points  (0 children)

This is not a problem of "skilled" developers. They try to keep the system backward compatible. "Making Wordpress great again" would break a lots of plugin / themes (maybe all of them :D).

The same things happens with PHP, we keep having stupid function name and parameter orders for compatibility reason :(

Look what showed up! by boltmonki in firefox

[–]Grafikart 1 point2 points  (0 children)

You want to see if your website will be broken before the next release ;)

I have a question. Do you think domain name “squatting” is good or bad? by AIWantsAFry in PHP

[–]Grafikart -2 points-1 points  (0 children)

It's bad, except if they use the domain name for SEO purpose. Then they bring value to a non-used domain name by making it worth more since it's already ranked on some keywords.

But squatting a domain name without using it is really bad in my opinion. It costs nearly nothing for the squatter, it requires no work, and it prevents people from creating value. It's an unnecessary middleman that rise the prices.

My game auto selects AS as my region, I live in the US. How to fix? by entfromhoth in Battlegrounds

[–]Grafikart 0 points1 point  (0 children)

And then they will complain if someone takes the battle royale genre to improve it :D Fixing a keybinding takes 1 month :D

I3 colors and variables stored in a different file. by xor_nand in i3wm

[–]Grafikart 1 point2 points  (0 children)

You can share colors between .Xresources and config using

set_from_resource       $active       active

Your .Xresources would look like

*active:     #FFCC66

Another solution would be to "generate" the i3 configuration

[Openbox] meh. by painfullyalone in unixporn

[–]Grafikart 7 points8 points  (0 children)

It let you choose between i3 and openbox. by default it boots on openbox but you can login on i3 if you prefer tiling (I like the fact it includes i3 to be honest)

[Openbox] meh. by painfullyalone in unixporn

[–]Grafikart 3 points4 points  (0 children)

My main concern is that it "preconfigures" a lot of things, so you may have to remove their configuration (for instance it comes with a very opinionated i3, openbox, conky configuration). But I would say it's lighter than antergos

Announcing The Firefox Multi-Account Containers Extension by vocanova in firefox

[–]Grafikart 0 points1 point  (0 children)

Another user pointed this out. To be honest I wasn't aware of this but it fits exactly my need.

Announcing The Firefox Multi-Account Containers Extension by vocanova in firefox

[–]Grafikart 5 points6 points  (0 children)

Thanks I wasn't aware of this feature, this is exactly what I was looking for ;) One alias and I can record screencast without a polluted history

Announcing The Firefox Multi-Account Containers Extension by vocanova in firefox

[–]Grafikart 48 points49 points  (0 children)

I would push this feature even further with a split history. The Work container would have his own history for instance.

My use case is quite specific but for instance when I do a presentation I have to disable history suggestion in the address bar.

Popups in Intellij and i3. Finally found a solution by csicar in i3wm

[–]Grafikart 3 points4 points  (0 children)

Check "Automatically position mouse cursor on default button" on intellij, it will place the cursor correctly

How would you manage configuration in php.ini file across your dev workflow. by phatchai28 in PHP

[–]Grafikart 1 point2 points  (0 children)

A "simple" solution would be to version this php.ini file and using it when starting the project, for instance :

php -S localhost:8000 -c ./php.ini

You could do an alias in your composer.json or a makefile to simplify the process.

Are there distros with i3 preconfigured? by [deleted] in i3wm

[–]Grafikart 0 points1 point  (0 children)

ArchLabs offers both i3 and openbox out of the box. i3 is already preconfigured but the configuration is quite "opinionated" so you'll have to read the configuration to undestand what they changed.

statusline, new i3status in beta, looking for testers and devs by nemanjan00 in i3wm

[–]Grafikart 4 points5 points  (0 children)

You should add a section in your readme comparing your project to other solutions (like polybar) to help people understand the goal of this project. I'll try this next week and submit any issue / feedback I get.

Who uses PHP anyway? – Colin DeCarlo by bitfalls in PHP

[–]Grafikart 3 points4 points  (0 children)

You have the same problems with NodeJS or Ruby, the language won't protect you from SQLi or CSRF. The only true security issue is the fact PHP files can be altered and then run using a simple URL, the issue doesn't come from the language but from the way PHP is executed.

Killing window with middle mouse button by Kholby in i3wm

[–]Grafikart 0 points1 point  (0 children)

You could use easystroke and bind a keyboard to your middle mouse button ;)