技術情報
- 2022年05月31日
- 技術情報
Differences Between Free SSL and Paid SSL
Today, I would like to share about differences between free and paid SSL. Let’s take a look.
When we deploy our website or web applications in production, we have to install SSL certificates for our website’s security. They come both free and paid. The followings are the differences of free and paid SSL.
1. Free SSL certificates only support DV (Domain Validation), not for EV(Extended Validation) and OV(Organization Validation).
2. Free SSL certificates validate only the ownership of the domain whereas paid SSL certificates verify the business identity of the website and with OV & EV certificates, it has in-depth verification by the certificate authority(CA).
3. Free SSL certificates are issued for 30-90 days and paid SSL certificates are for 1-2 years.
4. Free SSL certificates do not provide warranty when there are something wrong or errors on certificates authentication. But paid SSL certificates provide warranty limits.
5. Free SSL cerificate authorities(CAs) do not support customer services whereas paid SSL certificate authorities(CAs) support customer services.
This is all for now. Hope you enjoy that.
By Asahi
waithaw at 2022年05月31日 10:00:00
- 2022年05月27日
- 技術情報
知っておいていただきたいこと – 6
今回も、Laravelの知っておいた方がいいとおもったことをいくつか紹介します。
#Laravel Tip – join
Laravelの最新リリースでは、Arrファサードに新しい「join」メソッドが追加され、アイテムの配列を文としてフォーマットできるようになりました。このメソッドにより、配列を文としてフォーマットすることができます。
$team = ['John', 'Smith', 'Jesse', 'Bryan'];
$formatted = Arr::join(
$team,
', ',
' and '
);
echo "Such a fascinated team - {$formatted}!!";
//Such a fascinated team - John, Smith, Jesse and Bryan!!
ということで、今回はこれで終わります。
金曜担当 – Ami
asahi at 2022年05月27日 10:00:00
- 2022年05月26日
- 技術情報
[Laravel] Auth 機能とMiddlewareの設定(1)
nishida at 2022年05月26日 10:00:00
- 2022年05月24日
- 技術情報
Main differences between Laravel and Lumen Frameworks
Today, I would like to share about main differences between Laravel and Lumen frameworks. Let’s take a look.
Both Laravel and Lumen are developed by Taylor Otwell. But there are some differences.
Laravel is a MVC based full-stack web application framework that provides support for a lot of third-party tools and frameworks. Lumen is a lighter version of the Laravel Framework that is a micro framework used to develop microservices and APIs in high speed and less time.
Laravel has a good documentation whereas Lumen has no clear documentation.
Response time of Laravel is high compared to Lumen.
Lumen has better performance and speed compared to Laravel.
Laravel has own command line interface whereas Lumen is feature-rich micro framework.
Laravel can work on handling event queue and has an efficient template. Lumen can’t work on handling event queue and doesn’t have an efficient template.
Laravel has a huge community compared to Lumen.
This is all for now. Hope you enjoy that.
By Asahi
waithaw at 2022年05月24日 10:00:00
- 2022年05月20日
- 技術情報
知っておいていただきたいこと – 5
今回も、Laravelの知っておいた方がいいとおもったことをいくつか紹介します。
Laravel Tip #findMany
Laravelのfindメソッドは知っていますが、このfindManyメソッドでidから複数のデータを取得できることはご存知でしょうか?
$user = User::findMany([1, 2, 3]);
// Select * From users Where id IN (1,2,3)
findManyメソッドには、オプションの第2パラメータがあり、これを使用して取得したいカラムを指定することができます。
$users = User::findMany([1,2,3],['id','name']);
//Select id, name From users Where id IN (1,2,3)
ということで、今回はこれで終わります。
金曜担当 – Ami
asahi at 2022年05月20日 10:00:00