Skip to content

Instantly share code, notes, and snippets.

View mpbstrd's full-sized avatar
:octocat:
probably coding

matt mpbstrd

:octocat:
probably coding
  • Development Bank of the Philippines
  • Philippines
  • 03:52 (UTC +08:00)
  • X @drazihrac
View GitHub Profile
@mpbstrd
mpbstrd / media-query.css
Created October 7, 2018 05:47 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@mpbstrd
mpbstrd / hashtag.php
Created September 8, 2018 08:55 — forked from HendrikEduard/hashtag.php
A PHP script to create hashtags.
<?php
/*
* Create Hashtags
*/
$string = 'This is the #content the user #wrote';
$explode = explode(' ', $string);
$hashtag = COUNT($explode);