A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);Selfhosting is the process of locally hosting and managing applications instead of renting from SaaS providers. This is a list of network services and web applications which can be hosted locally.
PHP | Laravel | Web Scraping
A curated list of amazingly awesome PHP libraries, resources and shiny things.
| Route::get('/metricsdummy', function() { | |
| for ($i = 0; $i < 100; $i++) { | |
| DB::table('performance_indicators')->insert([ | |
| 'monthly_recurring_revenue' => mt_rand(1000, 2000), | |
| 'yearly_recurring_revenue' => mt_rand(50000, 60000), | |
| 'daily_volume' => mt_rand(100, 300), | |
| 'new_users' => mt_rand(50, 100), | |
| 'created_at' => Carbon\Carbon::now()->subDays($i), | |
| 'updated_at' => Carbon\Carbon::now()->subDays($i), | |
| ]); |
Getting started:
Related tutorials:
| <!-- Number --> | |
| <div class="number-box"> | |
| <div class="number-icon"> | |
| <i class="[Icon class]"></i> | |
| </div> | |
| <div class="number-wrapper"> | |
| <span class="number-rotator js-animate-number" data-number="[Your number goes here]">0</span> | |
| [add units here - it's optional] | |
| </div> | |
| <div class="number-description"> |
| <!-- Amazon S3 --> | |
| <link rel="dns-prefetch" href="//s3.amazonaws.com"> | |
| <!-- Google CDN --> | |
| <link rel="dns-prefetch" href="//ajax.googleapis.com"> | |
| <!-- Microsoft CDN --> | |
| <link rel="dns-prefetch" href="//ajax.microsoft.com"> | |
| <link rel="dns-prefetch" href="//ajax.aspnetcdn.com"> |
| <?php | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Front End Routes | |
| |-------------------------------------------------------------------------- | |
| */ | |
| Route::get('/', [ | |
| 'as' => 'homepage', |