This file contains hidden or 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
| /* line 1, ../scss/france.scss */ | |
| html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| font: inherit; | |
| font-size: 100%; | |
| vertical-align: baseline; | |
| } |
This file contains hidden or 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
| # WordPress SEO - XML Sitemap Rewrite Fix | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^sitemap_index\.xml$ /index.php?sitemap=1 [L] | |
| RewriteRule ^([^/]+?)-sitemap([0-9]+)?\.xml$ /index.php?sitemap=$1&sitemap_n=$2 [L] | |
| </IfModule> | |
| # END WordPress SEO - XML Sitemap Rewrite Fix | |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> |
This file contains hidden or 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
| add_filter('black_studio_tinymce_before_text', 'filter_visual_text_before', '20'); | |
| function filter_visual_text_before($var, $instance){ | |
| var_dump($instance); | |
| $var = '<div class="textwidget"><div class="box groups-box visual_text"><div class="wrapping">'; | |
| return $var; | |
| } |
This file contains hidden or 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
| "Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider": [ | |
| 1,1 Top | |
| { | |
| "providers": [ | |
| "Illuminate\\Foundation\\Providers\\ArtisanServiceProvider", | |
| "Illuminate\\Auth\\AuthServiceProvider", | |
| "Illuminate\\Cache\\CacheServiceProvider", | |
| "Illuminate\\Session\\CommandsSer |
This file contains hidden or 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
| { | |
| "providers": [ | |
| "Illuminate\\Foundation\\Providers\\ArtisanServiceProvider", | |
| "Illuminate\\Auth\\AuthServiceProvider", | |
| "Illuminate\\Cache\\CacheServiceProvider", | |
| "Illuminate\\Session\\CommandsServiceProvider", | |
| "Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider", | |
| "Illuminate\\Routing\\ControllerServiceProvider", | |
| "Illuminate\\Cookie\\CookieServiceProvider", | |
| "Illuminate\\Database\\DatabaseServiceProvider", |
This file contains hidden or 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
| @extends('site.layouts.default') | |
| {{-- Web site Title --}} | |
| @section('title') | |
| MediLab :: | |
| @parent | |
| @stop | |
| {{-- Content --}} | |
| @section('content') | |
| <header> |
This file contains hidden or 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
| $(document).ready(function() { | |
| var canvas = $('canvas'); | |
| var ctx = canvas[0].getContext( '2d' ); | |
| var img = new Image; | |
| img.crossOrigin = ''; | |
| img.src = 'http://i.imgur.com/xG8sIPp.jpg'; | |
| img.onload = function() { | |
| var width = img.width; | |
| var height = img.height; |
This file contains hidden or 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
| SELECT ogenes.window, ogenes.genes, ogenes.location FROM genes as ogenes | |
| INNER JOIN (SELECT window FROM genes | |
| GROUP BY window HAVING count(id) > 1) genes ON ogenes.window = genes.window order by ogenes.window asc |
This file contains hidden or 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
| 1f2211f40654615f83eb3bc72515f5e8% |
This file contains hidden or 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
| $.post('/login.json', { email: 'jati@socialite.me', password: 'socialiteme' }, function(data) { console.log(data); }); |