Skip to content

Instantly share code, notes, and snippets.

View rajibdpi's full-sized avatar
💻
Always try to discover something new

Rajib Ahmed rajibdpi

💻
Always try to discover something new
View GitHub Profile
@rajibdpi
rajibdpi / aspnet-core-2-ubuntu-setup.md
Created July 24, 2018 12:28 — forked from odan/aspnet-core-2-ubuntu-setup.md
Installing ASP.NET Core 2.1 on Ubuntu 18.4 Linux
@rajibdpi
rajibdpi / excerpt.md
Created August 2, 2018 18:12 — forked from benbalter/excerpt.md
Example of how to use Jekyll's `excerpt` tag.

If your post looked something like:

# Awesome Blog Post

Here is an example post to show how to use the new `excerpt` tag.

The excerpt tag provides a quick and easy way to tease a post by exposing only the first paragraph such as on a blog index page.

Keybase proof

I hereby claim:

  • I am rajibdpi on github.
  • I am rajibdpi (https://keybase.io/rajibdpi) on keybase.
  • I have a public key whose fingerprint is AE34 8D26 1849 E21F 27C0 F720 91DA B8FD 695A 1722

To claim this, I am signing this object:

@rajibdpi
rajibdpi / .htaccess
Created September 2, 2018 07:12 — forked from tavy315/.htaccess
Enable GZip compression & Leverage browser caching
AddDefaultCharset UTF-8
Options -Indexes
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/json
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE font/ttf
@rajibdpi
rajibdpi / Auto-Start a Virtual Machine at XenServer and XCP-NG Server 7.X.md
Last active May 3, 2023 15:09
Auto-Start a Virtual Machine at XenServer and XCP-NG Server 7.X.md

Auto-Start a Virtual Machine at XenServer and XCP-NG Server 7.X.md December 1, 2018 by Rajib Ahmed Enable auto-start on XenServer and XCP-NG Server:

# xe pool-list

output like this:
uuid ( RO) : XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX copy the UUID and use:

@rajibdpi
rajibdpi / LICENCE SUBLIME TEXT
Created January 4, 2019 09:06
Sublime Text 3 Serial key build is 3176
## Sublime Text 3 Serial key build is 3176
> * Added these lines into /etc/hosts
127.0.0.1 www.sublimetext.com
127.0.0.1 license.sublimehq.com
> * Used the license key
----- BEGIN LICENSE -----
@rajibdpi
rajibdpi / Visual Studio 2017 Enterprise & Professional
Created March 26, 2019 01:35 — forked from CHEF-KOCH/Visual Studio 2017 Enterprise & Professional
Visual Studio 2017 Enterprise & Professional key and details
Enterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF
Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH
Keys are generic ones. These are the same from MSDN account.
Product Key : -6Q8QF
Validity : Valid
Product ID : 00369-90000-00000-AA703
Advanced ID : XXXXX-03699-000-000000-00-1032-9200.0000-0672017
{{ $var }} - Echo content
{{ $var or 'default' }} - Echo content with a default value
{{{ $var }}} - Echo escaped content
{{-- Comment --}} - A Blade comment
@extends('layout') - Extends a template with a layout
@if(condition) - Starts an if block
@else - Starts an else block
@elseif(condition) - Start a elseif block
@endif - Ends a if block
@rajibdpi
rajibdpi / Install SQL Server 2017 on Ubuntu.sh
Last active October 22, 2019 15:28 — forked from ernestasju/_.sh
Install SQL Server 2017 on Ubuntu
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository "$(curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server.list)"
sudo apt-get update
sudo apt-get install -y mssql-server
sudo /opt/mssql/bin/mssql-conf setup
@rajibdpi
rajibdpi / install_sqlserver_2017_ubuntu.txt
Created October 22, 2019 15:29 — forked from galanteh/install_sqlserver_2017_ubuntu.txt
Install Script SQLServer 2017 SP1 on Ubuntu 16.04
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2017.list)"
sudo apt-get update
sudo apt-get install -y mssql-server
sudo /opt/mssql/bin/mssql-conf setup
sudo systemctl enable mssql-server
sudo systemctl start mssql-server