BLUELOVETH

Results 10 issues of BLUELOVETH

下图激活selection,可以看到,选中的位置和文本真实位置有一点错位,随着文本行数不断增加,这种错位逐渐累计,变得越来越明显。 ![Screenshot_2021-09-13-01-53-35-028_com example ex](https://user-images.githubusercontent.com/28104173/132997716-ff411ebd-f877-43ea-ac36-8eda29027ba4.jpg) 该问题的复现方法: ```dart import 'package:extended_text/extended_text.dart'; import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo',...

## Description Defining an instance attribute outside `__init__` affects the readability of code. It is expected to find all the attributes an instance may have by reading its `__init__` method....

commit id:893972bf4f7f8d65e1d01acf22c574cadf176bc4 系统:linux ## pika ``` ~~~/ POWERED BY \~~~ ~ pikascript.com ~ ~~~~~~~~~~~~~~~~~~~~ hello pikascript >>> x = {} >>> x["a635000"] = 1 >>> x["a10000751"] = 2 >>> x...

I would like to take the initial step to add iOS support for raylib. I am going to add `rcore_ios.c` and implement an iOS's platform layer. I will update this...

help needed - please!
on hold

Hello, I am doing research about BrougeCE's source code `dijkstra.c`. I want to know what does `pds` and `pdsMap` mean in English. Are they abbreviations of something? I need this...

## Project goal + Implement a pybind11 compatible solution to pocketpy as an alternative way to create bindings for c++ functions and classes + Support binding use cases for the...

enhancement
gsoc2024

## Project goal Implement `numpy` core feature set. > Application guide: https://pocketpy.dev/gsoc/guide/ #### Guidelines We want to provide a core feature set to make people be able to do basic...

enhancement
gsoc2024

This issue is for storing some dynamic libraries for users. To use these libraries, you need to compile pocketpy as shared target (set `PK_BUILD_SHARED_LIB` to `ON` in `CMakeLists.txt` if you...

v2.0

`hconfig.h`是自动生成的文件,并且已配置为忽略,应当删除原始文件,使配置生效。 https://github.com/ithewei/libhv/blob/fded2ba287199d3c20c619e06ddc571e2972ed92/.gitignore#L65 因为这个文件构建时会自动生成,让 git submodule 产生意外变更,造成一些不便。

I am using this library with custom language: ``` function buildParser(globals: any) { const arithmeticLanguage = { INFIX_OPS: { '+': function (a: any, b: any) { return a() + b();...