This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From b3191a0b675823edc8ea6eef29b7e36dba1f646f Mon Sep 17 00:00:00 2001 | |
From: Gabriel Nuetzi <[email protected]> | |
Date: Thu, 11 Jan 2018 23:51:47 +0100 | |
Subject: [PATCH 1/2] Revert "llvm: remove lldb patch" | |
This reverts commit 8f84c9238a9a5f8d85a08755c20eff9c8040a6b1. | |
--- | |
Formula/llvm.rb | 6 ++++++ | |
1 file changed, 6 insertions(+) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ============================================================================= | |
# | |
# Find and Replace Files inplace. | |
# | |
# @author Gabriel Nützi | |
# @date 02.05.2018 | |
# | |
# fileRegexReplace -h for Help! | |
# ============================================================================= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for llvm on macOS 10.11.6 | |
Build date: 2018-01-11 22:51:52 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Points(np.matrixlib.defmatrix.matrix): | |
def __new__(cls, *args, names=[], **kwargs): | |
o = np.matrixlib.defmatrix.matrix.__new__(cls, *args, **kwargs) | |
# We need to adjust here __class__ | |
# such that o is of type Points and the __init__ get | |
# automatically called | |
o.__class__ = Points | |
return o | |
NewerOlder