猫史档案馆


Tobylai

Tobylai

Lv.1

box3创作者 https://dao3.fun/profile/74 | tobylai.fun

获赞:105收藏:27浏览:1719作品收藏:93

签名:闲逛

回复帖子评论
上一页33 页 / 共 51下一页

限时教自定义装备代码! 中回复

头盔反了》。。

2020-07-25T14:54:27 点赞:0

谁能比我更穷 中回复

布布十分稀有啊啊啊
你不算穷,只是少…
(我的全部满级,可是没有巴巴布布…以及星光草零零和故宫的剩下半部分精灵)

2020-07-25T21:58:44 点赞:0

我也无聊一下 中回复

楼下跃动徒弟工作室(看简介,没烦恼emotion_doge

2020-07-26T06:37:19 点赞:0

求大佬解答 中回复

你python安装时有没有添加环境变量?

2020-07-26T13:57:17 点赞:0

【小游戏】假如你的头像和楼下的头像打起来了,谁会赢? 中回复

3d柱状图 vs python .pyc文件

都是数据,无法分出胜负

2020-07-26T20:49:55 点赞:0

【小游戏】假如你的头像和楼下的头像打起来了,谁会赢? 中回复

程序员正在编写的代码 与 程序员的战争

 

2020-07-26T20:52:29 点赞:0

【小游戏】假如你的头像和楼下的头像打起来了,谁会赢? 中回复

哔哔哔

与“太阳”分不出胜负

我不停的拷贝自己(被程序员做的)

还一直不停的发到互联网多个地方

2020-07-26T20:55:37 点赞:0

【小游戏】假如你的头像和楼下的头像打起来了,谁会赢? 中回复

和三维图表打一块两败俱伤啊...

我的技能:

【停止程序】 【关机】

你的:

【一关别人也一块ko】【一停止程序自己和别人ko】

 

结果:同归于尽(doge)

2020-07-26T21:05:58 点赞:0

[开源项目] 你 说 话 带 空 格 ! (you-speak-with-spaces) 中回复

加油

继续水作(doge

 

2020-07-26T21:09:25 点赞:0

【小游戏】假如你的头像和楼下的头像打起来了,谁会赢? 中回复

与楼下代码攻击的抗衡

import sys
import re
import math

from PyQt5.Qt import *  # noqa

from PyQt5.Qsci import QsciScintilla
from PyQt5 import Qsci
from PyQt5.Qsci import QsciLexerPython


class CodeEditor(QsciScintilla):

    def __init__(self, parent=None):
        super().__init__(parent)

        self.setUtf8(True)
        self.font = QFont()
        self.font.setFamily("Microsoft YaHei UI")
        self.font.setPointSize(13)
        self.font.setFixedPitch(True)
        self.setFont(self.font)
 
        self.fontmetrics = QFontMetrics(self.font)
 
        self.setFont(self.font)
        self.setMarginsFont(self.font)
 
        #set line number width
        self.setMarginWidth(0, self.fontmetrics.width(str(self.lines())) + 5)
        self.setMarginLineNumbers(0, True)
 
        #mesure line
        self.setEdgeMode(QsciScintilla.EdgeLine)
        self.setEdgeColumn(9000)
        self.setEdgeColor(QColor("#BBB8B5"))
 
        #brace match
        self.setBraceMatching(QsciScintilla.StrictBraceMatch)
 
        #current line color
        self.setCaretLineVisible(True)
        self.setCaretLineBackgroundColor(QColor("#2D2D2D"))
        self.setCaretForegroundColor(QColor("white"))
 
        #selection color
        
        self.setSelectionBackgroundColor(QColor("#606060"))
        self.setSelectionForegroundColor(QColor("#FFFFFF"))
 
        #table relative
        self.setIndentationsUseTabs(True)
        self.setIndentationWidth(5)
        self.setTabIndents(True)
        self.setAutoIndent(True)
        self.setBackspaceUnindents(True)
        self.setTabWidth(5)
 
        #indentation guides
        self.setIndentationGuides(True)
 
        #line number margin color
        self.setMarginsBackgroundColor(QColor("#272727"))
        self.setMarginsForegroundColor(QColor("#CCCCCC"))
 
        #folding margin
        self.setFolding(QsciScintilla.PlainFoldStyle)
        self.setMarginWidth(2,12)
        #marker
        self.markerDefine(QsciScintilla.Minus,QsciScintilla.SC_MARKNUM_FOLDEROPEN)
        self.markerDefine(QsciScintilla.Plus,QsciScintilla.SC_MARKNUM_FOLDER)
        self.markerDefine(QsciScintilla.Minus,QsciScintilla.SC_MARKNUM_FOLDEROPENMID)
        self.markerDefine(QsciScintilla.Plus,QsciScintilla.SC_MARKNUM_FOLDEREND)
        
        #marker define color
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDEREND)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDEREND)
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDEROPENMID)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDEROPENMID)
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDERMIDTAIL)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDERMIDTAIL)
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDERTAIL)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDERTAIL)
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDERSUB)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDERSUB)
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDER)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDER)
        self.setMarkerBackgroundColor(QColor("#FFFFFF"),QsciScintilla.SC_MARKNUM_FOLDEROPEN)
        self.setMarkerForegroundColor(QColor("#272727"),QsciScintilla.SC_MARKNUM_FOLDEROPEN)
        self.setFoldMarginColors(QColor("#272727"),QColor("#272727"))
 
        #whitespace
        self.setWhitespaceVisibility(QsciScintilla.WsInvisible)
        self.setWhitespaceSize(2)
        """
        the default margin is:
        0: line number,width is not zero
        1: width is zero
        2: folding, width is not zero
        """
        self.setMarginWidth(1,0)
 
        #set lexer
        self.lexer = QsciLexerPython()
        self.lexer.setFont(self.font)
        self.lexer.setColor(QColor("#ffffff"))
        self.setLexer(self.lexer)
 
        #high light code
#太多了无法显示

2020-07-26T21:16:34 点赞:0

制作一个超级二段跳!box3 中回复

似乎楼下铲子打到人痛了(doge

2020-07-26T22:09:01 点赞:0

招代码大佬啦啦啦 中回复

来看看...啥代码

2020-07-27T15:42:56 点赞:0

暑假在家生存指南 | 如何预防母上大人的嫌弃?赶快收藏保命! 中回复

板凳

2020-07-27T16:32:08 点赞:0

【跟风】一个词形容楼下的头像 中回复

看不懂

2020-07-27T16:34:59 点赞:0

【跟风小游戏】 中回复

打一块分不出胜负

50.0000000000000000000000099%

0.0000000000000000000000099是你来帮忙的

(doge

2020-07-27T16:46:14 点赞:0

【代码岛3.0】代码岛3.0建筑大赛!精品豪礼!!! 中回复

/.

2020-07-27T16:56:26 点赞:0

时间胶囊。。。 中回复

埋胶囊

print('凑字')

2020-07-27T17:18:40 点赞:0

【 屏 蔽 词 】我对于屏 蔽词的一些看法和建议 中回复

这个屏蔽词真的致命!

导致js代码都被屏蔽了!

function aa(){

}

2020-07-27T22:11:25 点赞:1

【 屏 蔽 词 】我对于屏 蔽词的一些看法和建议 中回复

持续更新

world.onPlayerJoin(async({entity})=>{
world.say('有人来了');
})
//async 是 asyn c

2020-07-27T22:13:09 点赞:0

【 屏 蔽 词 】我对于屏 蔽词的一些看法和建议 中回复

受害的代码帖子

https://shequ.codemao.cn/community/298261

https://shequ.codemao.cn/community/317001

2020-07-27T22:17:25 点赞:1

我破记录了!! 中回复

全部满级的我..............

2020-07-28T08:57:28 点赞:0

CODESRA对“天一护法”在编程猫社区论坛发布称编程猫抄袭Scratch的法律回应与看法 中回复

研究代码后发现bcm是blockly…
和sc似乎没关系

2020-07-28T10:29:13 点赞:1

【 屏 蔽 词 】我对于屏 蔽词的一些看法和建议 中回复

#屏蔽词屏蔽词屏蔽词屏蔽词屏蔽词屏蔽词屏蔽词屏蔽词屏蔽词屏蔽词太喵了

2020-07-28T10:56:13 点赞:0

一言难尽(标题居然要5字以上) 中回复

认识你…挖坟看到的(doge

2020-07-28T11:49:40 点赞:0

工作室名字确定 中回复

集中营这名字太恐怖了(doge

2020-07-28T12:00:41 点赞:0

【代码岛3.0】吃 鸡 服 装!代码+体验! 中回复

兄弟…头盔似乎反了

2020-07-28T12:02:13 点赞:0

【代码岛3.0】吃 鸡 服 装!代码+体验! 中回复

而且torso不是头…不能随头运动

2020-07-28T12:03:05 点赞:0

【求助】穿戴配件旋转不起作用??? 中回复

加个-

2020-07-28T12:09:42 点赞:0

[又一个水作] Box3防火墙 中回复

git…hub…

2020-07-28T12:13:21 点赞:0

大家发现问题了吗 中回复

最近要去修复
所以只能先取消
因为代码过多无法进入的bug

2020-07-28T12:19:32 点赞:0