- Download from here http://ftp.gnu.org/gnu/wget/
- Extract sources archive, (using extract for example)
- Or run
tar xf wget-1.15.tar.xz
- Copy file
bb10_compile
from this gist to source folder
This file contains 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 NoImplicitPrelude, UnicodeSyntax #-} | |
module Maker.Prelude (module Maker.Prelude, module X) where | |
import Prelude.Unicode as X ((¬), (∧), (⊥)) | |
import Prelude as X ( | |
-- Conversion to and from strings | |
Read(..), Show(..), read, |
This file contains 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 logging | |
from pulsar.apps import http | |
import requests | |
from bs4 import BeautifulSoup | |
import random | |
class Request(): | |
def __init__(self, https=True, timeout=3): | |
self.https = True |
This file contains 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 typing import Union, Callable, Generic, GenericMeta, TypeVar | |
from types import CoroutineType | |
from asyncio import iscoroutinefunction | |
from functools import wraps | |
from asyncio import coroutine | |
from typing import Callable, Any | |
MaybeCorouteine = Union[CoroutineType, Callable] | |
Handler = Callable[..., WsgiResponse] |
This file contains 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 asyncio | |
import sys | |
from typing import Coroutine | |
from functools import partial | |
python = "/usr/local/bin/python2" | |
exec_file = "pipeWeed/tests/py2code.py" | |
if sys.platform == "win32": |
This file contains 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/sh | |
# 1. Download source file of netcat from http://netcat.sourceforge.net/ and unzip it. | |
# 2. Path to source, and run the build shell. | |
tmp_pwd=`pwd` | |
cd /Applications/Momentics.app && source bbndk-env_10_3_1_995.sh && cd $tmp_pwd | |
QoX_BINS="${QNX_HOST}/usr/bin" |
This file contains 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
;;; mt4.el ---- major-mode for metatrader 4 | |
;; Copyright (c) 2017 Ryan Kung | |
;; Author: Ryan Kung <[email protected]> | |
;; Keywords: metatrader mt4 mql4 | |
;;; Commentary: | |
;;; Code: | |
(defvar mql-compiler | |
"wine '/Users/xxxx/Applications/Wineskin/MetaTrader 4.app/drive_c/Program Files/BTC-e Exchange MT4/metaeditor.exe'") |
This file contains 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
;;; mypy.el --- mypy plugin for flymake | |
;;; Commentary: | |
;;; Code: | |
(require 'flymake) | |
(defun flymake-mypy-init () |
This file contains 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
;;; gravatar.el --- gravatar fetch/store functions | |
;; Copyright (C) 2008 Iwata | |
;; Author: Iwata <[email protected]> | |
;; Keywords: faces, tools, extensions, mail | |
;; This file is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation; either version 3, or (at your option) |
This file contains 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
;;; init --- init | |
;;; Commentary: | |
;;; Code: | |
(package-initialize) | |
(require 'cl) | |
;;(setq debug-on-error t) | |