Skip to content

Instantly share code, notes, and snippets.

View bomb-on's full-sized avatar

bomb-on bomb-on

  • Reykjavík, Iceland
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bomb-on on github.
  • I am bomb_on (https://keybase.io/bomb_on) on keybase.
  • I have a public key ASBDZ-rinKbSeqk8xHBbK8QsztdN3GT1BPcgAqKps15I8Qo

To claim this, I am signing this object:

@bomb-on
bomb-on / build.log
Last active August 20, 2020 22:02
build error (with `VERBOSE=1`)
$ cmake ..
Re-run cmake no build system arguments
CMake Warning (dev) at CMakeLists.txt:12 (set):
implicitly converting 'TYPE' to 'STRING' type.
This warning is for project developers. Use -Wno-dev to suppress it.
-- The C compiler identification is AppleClang 11.0.3.11030032
-- The CXX compiler identification is AppleClang 11.0.3.11030032
-- Detecting C compiler ABI info
@bomb-on
bomb-on / build.log
Created July 24, 2020 17:18
build error
$ cmake ..
CMake Warning (dev) at CMakeLists.txt:12 (set):
implicitly converting 'TYPE' to 'STRING' type.
This warning is for project developers. Use -Wno-dev to suppress it.
-- The C compiler identification is AppleClang 11.0.3.11030032
-- The CXX compiler identification is AppleClang 11.0.3.11030032
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - works
@bomb-on
bomb-on / __init__.py
Created September 12, 2016 21:27
check sql connectivity on app startup (for ljosberinn)
from pyramid.config import Configurator
def main(global_config, **settings):
""" This function returns a Pyramid WSGI application.
"""
config = Configurator(settings=settings)
config.include('.models')
config.add_static_view('static', 'static', cache_max_age=3600)
config.include('.views')
from sqlalchemy import (
Column,
Index,
Integer,
Text,
)
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import create_engine