Skip to content

Instantly share code, notes, and snippets.

View flxxyz's full-sized avatar
🙏
睡门

一个不知名の睡觉高手 flxxyz

🙏
睡门
View GitHub Profile
@flxxyz
flxxyz / Db.php
Last active October 25, 2018 03:10
简单封装的PDO操作类
<?php
/**
* Class Db
*/
class Db
{
private static $instance = null;
private $host = '127.0.0.1';
@flxxyz
flxxyz / winning.php
Created January 14, 2019 02:03
简单中奖概率
<?php
$odds = 90; //概率
$success = 0;
$fail = 0;
$i = 0;
while ($i < 100) {
$rnd = mt_rand(0, 99);
@flxxyz
flxxyz / Log.php
Last active April 15, 2019 10:06
简易日志记录类
<?php
/**
* Class Log
*
* @package Log
* @method static notice($channel, ...$message)
* @method static info($channel, ...$message)
* @method static debug($channel, ...$message)
* @method static warn($channel, ...$message)
@flxxyz
flxxyz / LoginPhone.vue
Last active April 16, 2019 09:34
一个满足基本需求的手机号登录组件
<template>
<div class="login-wrapper">
<div class="title-bar">登录</div>
<div class="wrapper phone-wrapper">
<span class="title">手机号</span>
<input class="input phone" type="text" placeholder="手机号"
:value="phone"
ref="phone" v-on:change="changePhone" v-on:input="changePhone">
</div>
<div class="wrapper code-wrapper">
@flxxyz
flxxyz / App.vue
Last active August 26, 2019 03:06
Vue注册全局指令,实现在标签上编码markdown
<template>
<div id="app">
<Test/>
</div>
</template>
<script>
import Test from './Test'
export default {
@flxxyz
flxxyz / Tween.js
Created September 17, 2019 16:39
常用的运动算法
/*
* Tween.js
* t: current time(当前时间)
* b: beginning value(初始值)
* c: change in value(变化量)
* d: duration(持续时间)
*/
var Tween = {
Linear: function(t, b, c, d) { return c*t/d + b; },
Quad: {
@flxxyz
flxxyz / request.js
Created April 22, 2020 09:26
开箱即用的ajax
! function (e) {
var r,
u,
t = [
'Object',
'Array',
'String',
'Number',
'Boolean',
'Function',
@flxxyz
flxxyz / base.js
Last active April 22, 2020 09:51
常见js排序算法,内置函数sort()除外
// 交换函数
Array.prototype.swap = function (i, j) {
[this[j], this[i]] = [this[i], this[j]]
}
@flxxyz
flxxyz / enum.ts
Created May 10, 2020 08:17
一些ts的奇怪用法
//枚举的使用
enum OSName {
windows,
darwin,
linux,
centos,
fedora,
debian,
ubuntu,
suse,
@flxxyz
flxxyz / ffmpeg.md
Last active June 7, 2020 07:15
一些ffmpeg命令