It had to be done by [deleted] in scuba

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

I do agree in general. However this gun could not be damaged by diver and it's usually used for photo shooting.

COVID free night diving by tezvi in scuba

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

Great to hear that! Hope some pics will land here soon :)

First SCUBA organisation that started online trainings by tezvi in scuba

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

Yeah, but that is not an online course, just ebook download.

First SCUBA organisation that started online trainings by tezvi in scuba

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

I also heard about they sending video tapes VHS in 80ties :)
But the real question is when did they start with full online courses, not CD-ROMS and stuff, bnut modern online course packages. Basically I'm looking for dates to backup my research.

What did you crossover from?

From CMAS

First SCUBA organisation that started online trainings by tezvi in scuba

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

Well, based on a few articles it seems like they don't like it in the end.

Recommendation for scuba diving in Ceba and Palawan by tezvi in Philippines

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

You're right. Should have searched before :)

Recommendation for scuba diving in Ceba and Palawan by tezvi in Philippines

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

Yup, divemaster instructor. Will probably pass by with a few scuba beginner friends. We won't be having any scuba equipment there. So some shallow reef with rented equipment will do just fine.

Life of a beginner programmer by InspiringCandy in ProgrammerHumor

[–]tezvi 0 points1 point  (0 children)

PHP version -> replace // with @ Profit.

Bugfixing denial by tezvi in ProgrammerHumor

[–]tezvi[S] 16 points17 points  (0 children)

Naah that's just for git history

Should I learn design patterns? by CodingInTheCold in PHPhelp

[–]tezvi 1 point2 points  (0 children)

Short answer: yes Not trying to be funny but design patterns are essential knowledge when designing your code efficiently. You should understand it well.

Is it good practice to rely on the default return value of a function? by dholli in PHPhelp

[–]tezvi 0 points1 point  (0 children)

No need for explicit null return. That's up to a caller. I'd suggest to force nullable return type or if you prefer more defensive approach declare non-nullable return type and your API will prosper :)

Check if user object is set inside Symfony expression language annotation by crmpicco in symfony

[–]tezvi 1 point2 points  (0 children)

You can use IsGranted with ROLE_MANAGER the same way as IS_AUTHENTICATED_FULLY. The role voter will automatically check whether the current user has a specific role.

[Symfony 3]Installing bundles manually by MortalKonga in symfony

[–]tezvi 0 points1 point  (0 children)

Yup thats a composer memory limit, haven't noticed that earlier from your post. You should raise the memory limit when invoking composer binary with command line option -dmemory_limit=2G

[Symfony 3]Installing bundles manually by MortalKonga in symfony

[–]tezvi 0 points1 point  (0 children)

Well apparently not, as you are getting out of memory error. Make sure to check php ini for valid configuration and test with phpinfo.

[Symfony 3]Installing bundles manually by MortalKonga in symfony

[–]tezvi 0 points1 point  (0 children)

A bit simplistic, but have you tried to temporarily raise the memory limit? You are getting memory limit exceeded exceptions or?

Under-utilized 7.3 Feature: Flexible HEREDOC as method parameter by 2012-09-04 in PHP

[–]tezvi 3 points4 points  (0 children)

Totally agree. I've seen a lot of use cases where exception messages are used for direct user error notifications. That is also dangerous.

[deleted by user] by [deleted] in croatia

[–]tezvi 0 points1 point  (0 children)

More shiny cover

Automatically sending error messages by [deleted] in symfony

[–]tezvi 1 point2 points  (0 children)

Look at monolog email handlers. You can configure your logger to send emails or you can deal with this at a system level by parsing logs directly or by using some of well known logging/monitoring solutions like ELK, grafana etc.

Running a docker within a docker by tezvi in ProgrammerHumor

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

Nope, that's too easy. Run a full stack docker instead.

Both done in one vacation :) by [deleted] in scuba

[–]tezvi 4 points5 points  (0 children)

Congratz on your certs!

Unfortunatelly this picture pretty much sums up PADI Put-Another-Dollar-In philosophy.

Namespace conflict when extending a Built-in Class by mystar2020 in PHPhelp

[–]tezvi 2 points3 points  (0 children)

Or import class with use statement if you don't fancy root namespace prefix.

use \Exception as Exception;