National Open University Online Resource System
Setting Up a React project
Simple Addressbook example application
Solutions for some common algorithm problems written in Java.
:computer: Data Structures and Algorithms in Python
freewayz/android-gif-encoder 0
An animated GIF encoder for Android, without any native code required. Based on the J2ME encoder posted here: http://www.jappit.com/blog/2008/12/04/j2me-animated-gif-encoder/, with the addition of dirty rectangle support.
freewayz/Android-UI-Tutorials 0
In this series of tutorials, we show you the list of basic tutorials to get you start android programming.
freewayz/AndroidDesignPreview 0
Android Design Preview is a tool that lets you mirror a portion of your desktop to your device. Useful for visual designers as well as developers, this tool can help streamline your high-fidelity mockup workflow.
freewayz/awesome-interview-questions 0
:octocat: A curated awesome list of lists of interview questions. Feel free to contribute! :mortar_board:
🐢 A collection of awesome browser-side JavaScript libraries, resources and shiny things.
fork evanchooly/dbfx
This is a free, cross platform, open source database management tool based on JavaFX and vertx SQL client.
fork in an hour
starteddatabasefx/dbfx
started time in an hour
push eventvinta/awesome-python
Deployment Bot (from Travis CI)
commit sha 7063e9a85bbd00486a28643ab8ec48f79fbbcc9c
Deploy vinta/awesome-python to github.com/vinta/awesome-python.git:gh-pages
push time in an hour
push eventvinta/awesome-python
commit sha 954dca36b3b0f4138c6421134e39ee519a81fdae
Add clickhouse-driver
commit sha 5fc66f8157edf45a12441b9f29294d1cdab5182c
Merge pull request #1714 from kdiri/master
push time in 2 hours
PR merged vinta/awesome-python
What is this Python project?
ClickHouse Python Driver with native (TCP) interface support.
What's the difference between this Python project and similar ones?
- It allows to have an excellent driver of Python for ClickHouse
--
Anyone who agrees with this pull request could submit an Approve review to it.
pr closed time in 2 hours
startedNeilMacMullen/Textrude
started time in 2 hours
startedemfjson/ecore.js
started time in 2 hours
startedworkshopper/javascripting
started time in 12 hours
startedEleutherAI/gpt-neo
started time in 14 hours
startedjameslittle230/stork
started time in 15 hours
PR opened vinta/awesome-python
What is this Python project?
RADIS :
- compute emission & absorption molecular spectra based on standard line databases (HITRAN/HITEMP)
- can be used for combustion, plasma physics, atmospheres and exoplanet research
- is also a post-processing toolbox to compare with experimental spectra
- Has an online interface : https://radis.github.io/radis-lab/ with preconfigured research-grade databases, and a (WIP) webpage app https://radis.app/ for educational use
What's the difference between this Python project and similar ones?
- Implements a new algorithm that makes it up to 4 orders of magnitude faster than equivalent codes (hapi)
- Has non-equilibrium support (multiple-temperatures)
--
Anyone who agrees with this pull request could submit an Approve review to it.
pr created time in 16 hours
startedapollographql/fullstack-tutorial
started time in 17 hours
startedr-spacex/SpaceX-API
started time in 17 hours
issue openedKozea/WeasyPrint
HTML object is not prepending the base_url when using css url() function
The style.css
file is loaded, but bg.png
is not loaded
/home/user/project/test_html.py
from weasyprint import HTML
base_url = '/home/user/project'
file_name = 'template.html'
html_obj = HTML(file_name, base_url=base_url)
html_obj.write_pdf('test.pdf')
/home/user/project/template.html
<html>
<head>
<title>title</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<h1>Content</h1>
<div class="img-bg"></div>
</body>
</html>
/home/user/project/css/style.css
.img-bg {
background-image: url("file://./images/bg.png");
}
created time in 17 hours
issue closedKozea/WeasyPrint
Border for table not showing at the bottom of first page or top of second page
Hi team,
We are trying to create a pdf where a table with a border continues across pages. We expect the border to remain on all four sides regardless of the page split. However, we are seeing the bottom border disappear as it splits across the bottom and the top border disappear as it splits across the top
Can we get some support on this? Thanks in advance
HTML:
<div style="line-height:1 !important; border:1px solid black;">
<table class="page-break-table">
...
</table>
</div>
CSS:
page-break-table {
width: 90% !important;
margin-left:4% !important;
border-spacing:20px !important;
font-size:10px !important;
page-break-inside:auto !important;
}
closed time in 18 hours
maddiestiglerissue commentKozea/WeasyPrint
Border for table not showing at the bottom of first page or top of second page
That worked! Thank you
comment created time in 18 hours
push eventKozea/WeasyPrint
commit sha 82007aeb17ebc630eb0eef76895108acfa933c25
Remove many getattrs
push time in 18 hours
issue commentKozea/WeasyPrint
Border for table not showing at the bottom of first page or top of second page
Hi @maddiestigler!
You can use box-decoration-break: clone
on the div.
comment created time in 18 hours
push eventKozea/WeasyPrint
commit sha 8193c72215eb570ef55862aaaf8a4e51bb6ac820
Avoid hasattr when possible
commit sha 56e17d9d6e5543519e3f245d31b1041e1e93db3b
Remove useless CLI options
commit sha 6ab99fec922f5102d5b1cdf6dd925f715604f3f3
Clean and fix documentation
push time in 19 hours
issue commentKozea/WeasyPrint
Is the SSRF vulnerability fixed?
Hello @cjaentsch.
Just as other web renderers, WeasyPrint has a lot of features that are useful but also dangerous when not configured correctly. The problem presented in this document is covered by this chapter, with solutions listed at the bottom. You’ll find on the same page other possible vulnerabilities, with related solutions.
Regarding access to documents through URLs (including file://…
URLs), the url_fetcher
mechanism gives you full power to filter exactly what you want to filter. The documentation should give you enough information about that.
Don’t hesitate to ask if you need more information about security issues, we’ll be happy to help.
comment created time in 19 hours
fork getify/packages
📦 Package configurations - The #1 free and open source CDN built to make life easier for developers.
fork in 19 hours
starteddevelopit/element-worklet
started time in 21 hours
issue openedKozea/WeasyPrint
Border for table not showing at the bottom of first page or top of second page
Hi team,
We are trying to create a pdf where a table with a border continues across pages. We expect the border to remain on all four sides regardless of the page split. However, we are seeing the bottom border disappear as it splits across the bottom and the top border disappear as it splits across the top
Can we get some support on this? Thanks in advance
HTML:
<div style="line-height:1 !important; border:1px solid black;">
<table class="page-break-table">
...
</table>
</div>
CSS:
page-break-table {
width: 90% !important;
margin-left:4% !important;
border-spacing:20px !important;
font-size:10px !important;
page-break-inside:auto !important;
}
created time in a day
issue openedKozea/WeasyPrint
Is the SSRF vulnerability fixed?
We think of switching from PrinceXML to WeasyPrint.
While researching I just found a presentation about a nasty SSRF vulnerability in WeasyPrint: https://docs.google.com/presentation/d/1JdIjHHPsFSgLbaJcHmMkE904jmwPM4xdhEuwhy2ebvo/htmlpresent
Is this already fixed?
created time in a day
startedpyecore/pyecore
started time in a day
startedMultifuchs/kmf
started time in a day