猫史档案馆


局域网唤醒WakeonLan

局域网唤醒WakeonLan

Lv.1

简约工作室 室长 专注于封装系统与黑苹果安装,黑苹果EFI定制等

获赞:34收藏:20浏览:883作品收藏:11

签名:我在玩崩坏3~

回复帖子评论
上一页1 页 / 共 4下一页

【YXS干货】云的发送和接收 中回复

那别人怎么收到红包?求发布者指点emotion_星能猫_爱你

2020-03-05T14:18:50 点赞:0

🌈【代码岛3.0新图上线!】黄鹤楼捉妖🪑 中回复

<!DOCTYPE html>
<html lang="en">
<head>

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">

<link href="https://ipfs-proxy.codemao.cn" rel="preconnect" crossorigin /><link href="https://static-boxgame.codemao.cn" rel="preconnect" crossorigin />
<link rel="shortcut icon" href="https://static.box3.codemao.cn/block/QmNicgLXQf53U6b9wfMoTTQ98pZTZR7JYGa9FsqAmKsJ6z.ico" type="image/x-icon" />
<link rel="icon" href="https://static.box3.codemao.cn/block/QmNicgLXQf53U6b9wfMoTTQ98pZTZR7JYGa9FsqAmKsJ6z.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="https://static.box3.codemao.cn/block/QmNicgLXQf53U6b9wfMoTTQ98pZTZR7JYGa9FsqAmKsJ6z.ico" type="image/x-icon" />

<meta charset="UTF-8">
<title>代码岛3.0内测版</title>
<meta name="description" content="多人联机3D创作平台,即点即玩免下载">


<link rel="stylesheet" type="text/css" href="https://static.box3.codemao.cn/block/Qmb9cgKYX9RptmJvoVHda4YFxFHTTdFRtJUtefQBaAHZuE.css">

<link rel="manifest" href="https://static.box3.codemao.cn/block/QmVeNRnuGno87foPBL4z8jNWimrzB喵p63AjKgf9JqLoeX.json">

<script type="text/javascript">!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=10喵)}({10喵:function(e,t,r){"use strict";function n(e){var t=e.obj,r=e.static,n=e.prototype;for(var o in r)t[o]||Object.defineProperty(t,o,r[o]);for(var o in n)t.prototype[o]||Object.defineProperty(t.prototype,o,n[o])}n({source:"Object",obj:Object,static:{assign:{enumerable:!1,configurable:!0,writable:!0,value:function(e){if(null==e)throw new TypeError("Cannot convert first argument to object");for(var t=Object(e),r=1;r<arguments.length;r++){var n=arguments[r];if(null!=n){n=Object(n);for(var o=Object.keys(Object(n)),u=0,i=o.length;u<i;u++){var c=o[u],a=Object.getOwnPropertyDescriptor(n,c);void 0!==a&&a.enumerable&&(t[c]=n[c])}}}return t}}},prototype:{}}),n({source:"Math",obj:Math,static:{sign:{enumerable:!1,configurable:!0,writable:!0,value:function(e){return 0===(e=+e)||isNaN(e)?e:e>0?1:-1}}},prototype:{}})}});</script>



<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta content="telephone=no,email=no" name="format-detection">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Box3">
<meta content="yes" name="apple-touch-fullscreen">
<meta name="App-Config" content="fullscreen=yes,useHistoryState=yes,transition=yes">


<style id="lds">
#loading {
width: 100%;
height: 100%;
background: #000;
display: flex;
justify-content: center;
align-items: center;
}
.loading-img {
width: 200px;
height: 200px;
background: url('https://static-boxgame.codemao.cn/box3/play/loading.svg');
}
</style>
<script>
(function iOS10andUpPreventZoom() {
var isSafari = /Safari/.test(navigator.userAgent) && !/Chrome/.test(navigator.userAgent);
var match = (navigator.userAgent).match(/OS (\d+)_(\d+)_?(\d+)?/);
if (isSafari && match && Number(match[1]) >= 10) {
const gestureStart = function (event) {
event.preventDefault();
};
document.addEventListener('gesturestart', gestureStart);
var lastTouchEnd = 0;
const touchEnd = function (event) {
var now = (new Date()).getTime();
if (now - lastTouchEnd <= 300) {
event.preventDefault();
}
lastTouchEnd = now;
};
document.addEventListener('touchend', touchEnd, false);

window.removePreventZoom = function() {
document.removeEventListener('gesturestart', gestureStart);
document.removeEventListener('touchend', touchEnd, false);
}
}
})();
</script>
<script>
// read the display quality setting from website editor landing page and save to local storage.
// then remove this from url
const url = new URL(location.href);
const displayQuality = url.searchParams.get('displayQuality');
if (displayQuality) {
localStorage.setItem('BOX3_DISPLAY_PRESET', displayQuality);
location.href = location.origin + location.pathname;
}
</script>

 


</head>
<body>

<div id="loading">
<div class="loading-img"></div>
</div>

<script type="text/javascript" src="/games/204b46c210e873d8d277/config.js" ></script><script type="text/javascript" src="/games/204b46c210e873d8d277/asset-index.js" ></script>

<script type="text/javascript" src="https://static-am.codemao.cn/iris/iris.js"></script>
<script type="text/javascript" src="https://static.codemao.cn/whitepaw/gt.js"></script>


<script type="text/javascript">
(function preloadAllAssets() {
var hashes = window.CLIENT_CONFIG.prefetchHashes;
var base = window.CLIENT_CONFIG.cdnPath + '/block/';
var xhrs = window.PREFETCH_XHR = {};
if (!hashes) { return; }
for (var i = 0; i < hashes.length; ++i) {
var h = hashes[i];
var xhr = xhrs[h] = new XMLHttpRequest();
xhr.responseType = 'arraybuffer';
xhr.open('get', base + h, true);
xhr.send();
}
})();
</script>


<script type="text/javascript" src="https://static.box3.codemao.cn/block/QmYhikADKDA9cXi9NhUnYLArxiVpvmP5W9xHfuj8tRDh8D.js" defer></script>

</body>
</html>

2020-03-09T11:06:38 点赞:1

谁能用源码编辑器做计算器 中回复

  其实很简单,首先新建2个变量,名字什么都可以,比如a和b两个变量,首先要询问玩家是算加法还是算什么法,确定后,开始询问玩家第一个数,设为a,在询问一次,设为b,然后再相x

2020-03-16T17:09:05 点赞:0

NCT拼团 中回复

志愿者请回复,非诚勿扰!

2020-03-17T11:59:14 点赞:0

一起跑酷彩蛋 中回复

这是哪个地图

2020-03-25T16:23:24 点赞:0

【冠军教程贴】如何制作聊天室(第一章 列表与变量) 中回复

你好呀,你这个聊天室做的不正确哦,只能达到自己跟自己对话的效果,想要多人聊天,应该再加上一个公有云变量才行,把什么什么放在一起时添加到云变量上,再把云变量的内容传到云列表上,云列表只能记录自己的数据哦!

2020-04-15T11:39:23 点赞:0

【冠军教程贴】如何制作聊天室(第一章 列表与变量) 中回复

emotion_编程猫_翻白眼

2020-04-15T20:43:15 点赞:0

【疑问】请问一下,海龟编辑器能发布作品吗? 中回复

可以的,但会把作品发到社区百科,并显示你编写的代码

 

2020-04-16T19:49:20 点赞:0

海龟版本:V1.3.2 X喵(最新版) 控制台不显示 中回复

你应该是硬件编程吧

 

2020-04-16T19:50:59 点赞:0

海龟编辑器的结构是什么? 中回复

更换版本很简单,直接在客户端更新即可

2020-04-16T19:53:03 点赞:0

🧬【源代码全公开!】圈地之王开发接力挑战 中回复

     

2020-04-21T11:34:39 点赞:0

@吉吉喵!!! 中回复

刷新过多导致崩溃或没开硬件加速

2020-04-22T19:47:33 点赞:0

【趣味提问】假如你的头像里的人惑物来你家住一晚,你同意吗? 中回复

顶顶顶顶顶顶顶顶

2020-05-14T21:27:19 点赞:0

【震稽!!!!】罗帅哥博士研制出了Pothon! 中回复

ccs,javj,Ptotyhon,kittan,F21,jss

2020-05-14T21:55:58 点赞:0

通过ID知道在BCM是不是大佬 中回复

企鹅大号:1203661(大号被🈲言)

2020-05-17T13:37:21 点赞:0

通过ID知道在BCM是不是大佬 中回复

我大号(企鹅)比阿尔法还早???!!!

2020-05-17T13:38:28 点赞:0

虚拟机∈谁有Windows镜像链接?, 中回复

你好,我这里有Windows所有系统的镜像链接,您可以立即为这台电脑升级,也可以创建介质,为其他电脑升级,还可以下载镜像,刻录到光盘或者虚拟机,您加一下我的QQ:368872630,备注一下系统两个字

2020-05-17T14:50:10 点赞:0

编程作品——阿尔法营 中回复

顶顶顶顶顶顶顶顶顶顶顶

2020-05-18T17:40:15 点赞:0

【有奖活动】一起来用方言来为Kitten打CALL!! 中回复

kitten嘹咂咧,创作不会嘎达马西,编程克里马擦,么麻达!!!(以上为企鹅参赛方言,大号被禁言TAT)

2020-05-19T12:30:57 点赞:3

绾兮建筑大改造! 中回复

我也顶

2020-06-13T22:19:14 点赞:0

绾兮建筑大改造! 中回复

绾兮,在吗???我想改造缤纷之城的别墅。。。。缤纷之城的别墅太太太简单了。。。。。。。,。
具体链接风格样式我qq私聊你吧。。。。。。
我有缤纷之城的创作链接,也能给别人开权限,我也是缤纷之城重要建筑师。。。。。。你先加我吧。。。。1点多后我的qq号才能解冻(中午1点多我给冻结了。。。。要等24个小时。。。。。。。)
对了,我的qq号:368872530

2020-06-13T22:31:32 点赞:0

嘿嘿,有人吗? 中回复

有人吗???

2020-06-13T22:35:30 点赞:0

@打酱油的企鹅 我深感抱歉! 中回复

我换了昵称!!!

2020-06-13T22:57:41 点赞:0

@打酱油的企鹅 我深感抱歉! 中回复

明天我再删作品和帖子。
iPad删不了。。。。。。

2020-06-13T23:22:19 点赞:0

@所有人 我改名了 中回复

啊啊啊

 

2020-06-15T21:10:42 点赞:0

@所有人 我改名了 中回复

点击会报错。。。。。。。。。。。。。

2020-06-15T21:10:55 点赞:0

@所有人 我改名了 中回复

我再测试一个

 

2020-06-15T21:11:04 点赞:0

@所有人 我改名了 中回复

https://download.mihoyo.com/dowload-porter/2020/01/15/bh3-setup-200115.exe

2020-06-15T21:11:11 点赞:0

新小说 《北极的小企鹅飞:传奇之始》 中回复

。。。。。。。。

2020-06-16T21:43:33 点赞:0

ing。。。。。。。。 中回复

顶顶

2020-06-16T21:50:09 点赞:0