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
16:51:42 DEBUG url urlutils:fuzzy_url:193 Converting fuzzy term 'abbradar.net/me/share/video.mp4' to URL -> http://abbradar.net/me/share/video.mp4 | |
16:51:42 DEBUG webview tabbedbrowser:on_title_changed:494 Changing title for idx 2 to 'http://abbradar.net/me/share/video.mp4' | |
16:51:42 DEBUG webview browsertab:_set_load_status:530 load status for <qutebrowser.browser.webkit.webkittab.WebKitTab tab_id=3 url=''>: LoadStatus.loading | |
16:51:42 DEBUG signals signalfilter:_filter_signals:86 emitting: cur_load_status_changed('loading') (tab 2) | |
16:51:42 DEBUG signals signalfilter:_filter_signals:86 emitting: cur_load_started() (tab 2) | |
16:51:42 DEBUG modes modeman:maybe_leave:114 Not in mode KeyMode.insert! (leave reason: load started) | |
16:51:42 DEBUG modes modeman:maybe_leave:114 Not in mode KeyMode.hint! (leave reason: load started) | |
16:51:42 DEBUG modes modeman:_eventFilter_keypress:194 handled: True, forward-unbound-keys: auto, passthrough: True, is_non_alnum: Tru |
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
import sys | |
import ipaddress | |
import socket | |
import fnmatch | |
import traceback | |
import itertools | |
from datetime import datetime | |
import functools | |
from urllib.parse import urlparse | |
from PyQt5.QtCore import QObject, QVariant, QMetaType, pyqtSlot |
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
if [ -n "$HOME" ]; then | |
export NIX_REMOTE=daemon | |
export NIX_USER_PROFILE_DIR=/nix/var/nix/profiles/per-user/$USER | |
mkdir -m 0755 -p $NIX_USER_PROFILE_DIR | |
if test "$(stat --printf '%u' $NIX_USER_PROFILE_DIR)" != "$(id -u)"; then | |
echo "WARNING: bad ownership on $NIX_USER_PROFILE_DIR" >&2 | |
fi |
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
{ pkgs ? import <nixpkgs> {} }: | |
let | |
fixWrapper = pkgs.runCommand "fix-wrapper" {} '' | |
mkdir -p $out/bin | |
for i in ${pkgs.gcc.cc}/bin/*-gnu-gcc*; do | |
ln -s ${pkgs.gcc}/bin/gcc $out/bin/$(basename "$i") | |
done | |
for i in ${pkgs.gcc.cc}/bin/*-gnu-{g++,c++}*; do | |
ln -s ${pkgs.gcc}/bin/g++ $out/bin/$(basename "$i") |
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
In file included from ext/tracy/include/tracy/write_to_file.hpp:9:0, | |
from ext/tracy/include/tracy/tracer.hpp:19, | |
from ext/tracy/include/tracy/tracy.hpp:10, | |
from ext/tracy/include/tracy/logger.hpp:6, | |
from ext/gate-common/include/gate/sbe_misc.hpp:6, | |
from src/test_replace.cpp:16: | |
ext/jsoncons/src/jsoncons/json.hpp: In instantiation of ‘jsoncons::value_type jsoncons::basic_json<CharT, JsonTraits, Allocator>::variant::type_id() const [with CharT = char; JsonTraits = jsoncons::json_traits<char>; Allocator = std::allocator<char>]’: | |
ext/jsoncons/src/jsoncons/json.hpp:3047:9: required from ‘jsoncons::basic_json<CharT, JsonTraits, Allocator>::json_type jsoncons::basic_json<CharT, JsonTraits, Allocator>::get(jsoncons::basic_json<CharT, JsonTraits, Allocator>::string_view_type, T&&) const [with T = const char (&)[4]; CharT = char; JsonTraits = jsoncons::json_traits<char>; Allocator = std::allocator<char>; jsoncons::basic_json<CharT, J |
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
{-# LANGUAGE ScopedTypeVariables, ViewPatterns, TupleSections #-} | |
module Solver999 where | |
import Data.List | |
import Control.Monad | |
import Data.Set (Set) | |
import qualified Data.Set as S | |
import Data.Map (Map) | |
import qualified Data.Map as M |
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
import List | |
import Signal exposing (Mailbox) | |
import Time exposing (Time) | |
import Task exposing (Task) | |
import Color exposing (Color) | |
import Random exposing (Seed) | |
import Window | |
import Debug | |
import Graphics.Element exposing (Element) | |
import Graphics.Collage as Collage exposing (Shape) |
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
{ stdenv, makeWrapper }: | |
stdenv.mkDerivation { | |
name = "make-wrapper-test"; | |
buildInputs = [ makeWrapper ]; | |
buildCommand = '' | |
mkdir -p $out/bin | |
cat > $out/bin/test <<EOF |
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 steam-runtime | |
RUN apt-get install -y autoconf automake | |
COPY ponscripter-fork-wh /root/ponscripter-fork-wh | |
WORKDIR /root/ponscripter-fork-wh | |
RUN ./configure | |
RUN make |
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
#!/usr/bin/env python3 | |
import pty | |
import termios | |
import sys | |
import tty | |
import os | |
FROM_STR = b"#" | |
TO_STR = "🦃".encode("utf-8") |