A Pen by Save Pongsiri on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script> | |
<div id="app"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//pure css google analytics icon | |
h1 Pure CSS iOS Icons | |
.main-container | |
.container | |
.icon-container | |
.bar.bar-left | |
.bar.bar-middle | |
.bar.bar-right | |
h2 Analytics | |
.container |
A Pen by Save Pongsiri on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<v-app id="inspire"> | |
<v-card | |
class="mx-auto" | |
tile | |
> | |
<draggable v-for="(item, index) in images" | |
v-model="images[index]" | |
group="image" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(document).ready(function() { | |
if(window.location.href.indexOf('#myModal') != -1) { | |
$('#myModal').modal('show'); | |
} | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$str = '183293819203'; | |
preg_match_all('!\d!', $str, $numbers); | |
dd( count($numbers[0])==13 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
header('Access-Control-Allow-Origin: *'); | |
header('Access-Control-Allow-Methods: POST,GET,OPTIONS'); | |
header('Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('memory_limit', '1024M'); // or you could use 1G |
NewerOlder