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 | |
/** | |
* MyBB 1.8 | |
* Copyright 2014 MyBB Group, All Rights Reserved | |
* | |
* Website: http://www.mybb.com | |
* License: http://www.mybb.com/about/license | |
* | |
*/ | |
/** |
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 | |
/** | |
* A very simple command line php script to extract all the templates from the | |
* default MyBB theme into a given folder. | |
* | |
* This makes it easier to search the templates with grep and similar tools. | |
* | |
* The .html extension is added to the template names for proper syntax | |
* highlighting in most editors. | |
* |
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
19968 one 一 yi1 1 1 1 | |
20108 two 二 er4 2 1 2 | |
19977 three 三 san1 3 1 3 | |
22235 four 四 si4 4 1 5 | |
20116 five 五 wu3 5 1 4 | |
20845 six 六 liu4 6 1 4 | |
19971 seven 七 qi1 7 1 2 | |
20843 eight 八 ba1 8 1 2 | |
20061 nine 九 jiu3 9 1 2 | |
21313 ten 十 shi2 10 1 2 |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Page BackgroundColor="#554736" BackgroundOpacity="1.000" Name="TextStyles" PackSize="1,1" ScrollExtent="1024,768" Size="1024,768" Visible="false"> | |
<Page Location="10,110" Name="BigLarge" ScrollExtent="200,50" Size="200,50"> | |
<Text Font="BigLargeStyle" Name="CopyAndPasteMe" ScrollExtent="200,50" Size="200,50">:58a8d828a4322275:BigLarge</Text> | |
<TextStyle Algorithm="Simple" FontName="Zapf Calligraphic 801 Bold BT" Language="english" Name="BigLargeStyle" PointSize="42" PrivateFontPath="UI/Fonts/zcal801b.TTF" ShadowStyle="/ShadowStylesNew.Drop.style" UseCachedFont="true" /> | |
<TextStyle Algorithm="Bold" FontName="Times New Roman" Language="english" Name="BigLargeStyle_Euro_" PointSize="18" ShadowStyle="/ShadowStylesNew.Drop.style" UseCachedFont="true" /> | |
<TextStyle Algorithm="Bold" FontName="Times New Roman" Language="japanese" Name="BigLargeStyle_Japanese_" PointSize="18" ShadowStyle="/ShadowStylesNew.Drop.style" UseCachedFont="true" /> | |
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
Show hidden characters
[ | |
{ | |
"args": | |
{ | |
"by": "lines", | |
"forward": false | |
}, | |
"command": "move" | |
}, | |
{ |
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
; | |
; VMRC "Maximizer" | |
; | |
; Simple procedure to maximize VMRC's desktop area, while keeping the Windows 10 | |
; taskbar docked to the side. Remove the VMRC window titlebar, and the toolbar. | |
; | |
; SETUP | |
; | |
; - Set Windows Taskbar docked to the right | |
; |
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
<!-- some page content --> | |
<!-- buttons, that will stick to top as the user keeps scrolling --> | |
<div id="JsPreshopSticky"> | |
<button>Sign up</button> | |
<button>Sign in</button> | |
</div> | |
<!-- more page content --> |
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
// Add some sizes to tailwind text-* utilities | |
// | |
// Outputs eg: | |
// | |
// .text-3\.5 { | |
// font-size: 3.5rem; | |
// } | |
$textExtraSizes: (('2' 2), ('3\\.5' 3.5), ('4\\.3', 4.3)); | |
@each $size in $textExtraSizes { | |
.text-#{nth($size, 1)} { |
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
/** | |
* A tiny jQuery inspired library for common DOM manipulation. | |
* | |
* BROWSER SUPPORT | |
* | |
* Recent versions of Edge, Chrome, Safari, iOS Safari, Chrome for Android (as per caniuse.com) | |
* NOT supported: IE <= 9, Opera Mini. | |
* | |
* | |
* NOTES |
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
// first attempt : but why? | |
const log = (...args: [any?, ...any[]]) => { console.log.apply(console, args) } | |
// better : use console.log() signature | |
const log = (msg?: any, ...params: any[]) => { console.log.apply(console, [msg, params]) } | |
// test | |
log('document is %o', document) |
OlderNewer