Sanshain

Results 17 issues of Sanshain

I tried to start hamlpy by django 1.11 python 2.7.16. The package was installed 'pip install hamlpy' and followed [instructions ](https://github.com/jessemiller/HamlPy) for setting. Settings of project: ``` INSTALLED_APPS = [...

`python_2_unicode_compatible` function was removed in django 3.0. This caused the error ``` ImportError: cannot import name ‘python_2_unicode_compatible’ from ‘django.utils.encoding’ ``` in models.py. python version == 3.6 django version == 3.2...

I have an error: ``` 'admin_static' is not a registered tag library. Must be one of: ``` when I follow the following instruction from here https://jet.readthedocs.io/en/latest/install_dashboard.html: > Add ‘jet.dashboard’ application...

**What**: enable possibility using urls created by URL.createObjectURL to less compilation ``` let c = `h2 { color : green; cursor: pointer; }` let b = new Blob([c], { type:...

Hi! Does this library support comments? On this code: `".less{}\t\t\t\t\t\t\t\t// less sign\n@i_height : 7em;\n@backcolor: bisque; \t\t\t\t//azure;\n@border_r : 15px;\n\n@_block_side : lighten(lightgray, 12%);\n\n.profiles_list{\n\tlist-style-type: none;\n\tpadding: 0;\n\tborder-left:1px solid @_block_side;\n\tborder-right:1px solid @_block_side;\n\t\n\tborder-radius:@border_r;\n\tmargin-left: 20px; }\n.profiles_list >...

Lightweight calendar for svelte easily integrated with any popular frameworks ![image](https://user-images.githubusercontent.com/40761960/195413517-d5dfefe7-7ab9-4ee7-bf9b-1dbf8c1829db.png) https://github.com/Sanshain/svelte-color-calendar

First I use createGulpEsbuild as here: ```js const esBuild = createGulpEsbuild({ pipe: true, incremental: true, }) ``` and inside tasks I have the following sequential data processing: ```js .pipe(someChanges()) .pipe(...

bug

- append `selectedDate` option field to CalendarOptions. Its afford to set current date inside Calendar constructor - allow to hide selected date before user select date (now today is auto...

More spot coverage of types is beg. For example, use `none" | 'all' instead of string | 'some', | ... ` instead of `string` here https://github.com/aMarCruz/rollup-plugin-cleanup/blob/4988f5428afd7ed313f1e5c5fcd3634df12eb6c7/index.d.ts#L16

For some reason, it didn't work for d.ts files (`output.file = '*.d.ts'`) with folowing options: ```js cleanup({ comments: 'none', extensions: ['ts', 'd.ts'] }), ```