Skip to content

Instantly share code, notes, and snippets.

View pulkomandy's full-sized avatar
🍊
This is not a social network!

Adrien Destugues pulkomandy

🍊
This is not a social network!
View GitHub Profile
diff --git a/Source/WebCore/rendering/RenderBlock.cpp b/Source/WebCore/rendering/RenderBlock.cpp
index ceacb85c0b2..63ea91232ab 100644
--- a/Source/WebCore/rendering/RenderBlock.cpp
+++ b/Source/WebCore/rendering/RenderBlock.cpp
@@ -1184,7 +1184,7 @@ bool RenderBlock::paintChild(RenderBox& child, PaintInfo& paintInfo, const Layou
}
LayoutPoint childPoint = flipForWritingModeForChild(&child, paintOffset);
- if (!child.hasSelfPaintingLayer() && !child.isFloating()) {
+ if (true || !child.hasSelfPaintingLayer() && !child.isFloating()) {
# install dependencies
sudo apt-get install curl git python nasm autoconf automake texinfo flex bison gawk build-essential unzip wget zip zlib1g-dev libcurl4-openssl-dev genisoimage libtool
# get Haiku and compiler sources
git clone --depth=1 https://github.com:/haiku/buildtools
git clone --depth=1 https://github.com:/haiku/haiku
# Build jam (with Haiku changes)
cd ~/buildtools/
make
@pulkomandy
pulkomandy / _etc_cgitrc
Created November 8, 2016 09:47
Lighttpd + cgit + debian
css=/git/media/cgit.css
logo=/git/media/cgit.png
virtual-root=/git/
Feature Trac-based Github Gerrit
1-click merge No Yes Yes
Clean history Yes Optional ("squash and merge") Yes
Line by line review No Yes Yes
Auto-merge/rebase No Yes Yes
Buildbot integration No ? Yes
Developper votes No ? Yes
Git integration No Some ("hub" is a wrapper to git) Yes
@pulkomandy
pulkomandy / Bootstrapping Haiku-ARM on Haiku
Last active August 29, 2015 13:56
Notes on bootstrapping Haiku cross compilation on Haiku
#!/bin/sh
# Step 1: build the cross-tools, using gcc4 as the host compiler.
setarch x86
mkdir generated.arm4
cd generated.arm4
../configure --build-cross-tools arm ../../buildtools/ --use-gcc-pipe -j2
exit
# Step 2: build Haiku bootstrap, using gcc2 as the host compiler (using gcc4 seems to confuse the runtime_loader...)

Bugs:

  • Autologin checkbox is disabled
  • Preferences menu is disabled
  • Main window isn't font sensitive. I use a 10pt font and there is 2 pixel space below the menu
  • When selecting a contact in the roster, the view LowColor isn't set, leading to text antialias artifacts
  • Double clicking a contact should open message window. Having to right-click > message is boring
  • Chat window: pressing enter should send message instead of doing a newline.

Enhancements:

  • Selection highlight in roster doesn't go all the way to the left of the window, there is whitespace left
@pulkomandy
pulkomandy / BNetAPI WebKit bugs.md
Last active November 8, 2016 09:51
A short list of known issues with bnetapi-based webkit haiku port.

This is a list of websites that have problems rendering or loading with the Haiku port of WebKit, as well as some general notes about what needs to be done.

Web+ and WebKit

Rendering

CSS Fonts

  • http://haikuports.org : use of CSS fonts. Why does this work on github and not here ? Different font rendering mode maybe ? (never works here)