Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
[ | |
{ id: 'Afghanistan', text: 'Afghanistan'}, | |
{ id: 'Aland Islands', text: 'Aland Islands'}, | |
{ id: 'Albania', text: 'Albania'}, | |
{ id: 'Algeria', text: 'Algeria'}, | |
{ id: 'American Samoa', text: 'American Samoa'}, | |
{ id: 'Andorra', text: 'Andorra'}, | |
{ id: 'Angola', text: 'Angola'}, | |
{ id: 'Anguilla', text: 'Anguilla'}, | |
{ id: 'Antarctica', text: 'Antarctica'}, |
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |
<a class="content" href="javascript:history.go(0)"> | |
<h2>Change Background</h2> </a> |
## 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 ----- |
$ gem -v | |
2.0.3 | |
$ gem list rubygems-update | |
$ gem uninstall -v 2.0.3 rubygems-update | |
$ gem install -v 1.8.24 rubygems-update | |
$ update_rubygems | |
$ gem -v | |
1.8.24 |
# Installation of SSL Certificate | |
## Enable SSH : | |
ssh x123011738@31.170.164.22 -p 65002 | |
## Download acme-client | |
git clone https://github.com/kelunik/acme-client | |
## Install composer | |
``` |
Rails 6.0.3.2 on Termux | |
pkg upgrade | |
pkg install ruby vim git nodejs | |
nokogiri will build natively and would need the ff packages and will need pkg-config to find them: | |
libxml-2 | |
libxslt | |
libexslt |
Laravel 8 Redis setup on Windows with xampp | |
Note: test done using windows 7 | |
1. Install predis on your project | |
https://laravel.com/docs/8.x/redis#introduction | |
composer require predis/predis | |
- un-comment 'Redis' => Illuminate\Support\Facades\Redis::class, in your config/app.php | |
- on your .env make sure you have the following variables: |
html { | |
/* Adjust font size */ | |
font-size: 100%; | |
-webkit-text-size-adjust: 100%; | |
/* Font varient */ | |
font-variant-ligatures: none; | |
-webkit-font-variant-ligatures: none; | |
/* Smoothing */ | |
text-rendering: optimizeLegibility; | |
-moz-osx-font-smoothing: grayscale; |