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
| # JabRef with SonarQube plugin | |
| # * You might need to install and start sonarqube service before installing: | |
| # pacman -S sonarqube; systemctl start sonarqube | |
| # * To get missing files: Download 'jabref' src's package from archlinux.org | |
| # * Tested with versions: 3.0 3.5 4.0 | |
| pkgname_=jabref | |
| pkgname=${pkgname_}-sonarqube | |
| provides=(${pkgname_}}) | |
| conflicts=(${pkgname_}}) |
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
| module PedroHLC.Stack | |
| exposing | |
| ( Stack | |
| , empty | |
| , isEmpty | |
| , reverse | |
| , singleton | |
| , length | |
| , push | |
| , pop |
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
| (?) : Bool -> ( a, a ) -> a | |
| (?) cond ( ifTrue, ifFalse ) = | |
| if cond then | |
| ifTrue | |
| else | |
| ifFalse | |
| (?) : a -> a -> ( a, a ) | |
| (?) ifTrue ifFalse = |
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
| module Gradients exposing (..) | |
| import Css exposing (Style, backgroundImage, linearGradient2, stop, stop2, hex, pct) | |
| -- AUTO Generated from: https://raw.githubusercontent.com/ghosh/uiGradients/master/gradients.json | |
| -- replaced "name": "([\w ]*) with "name": "\E$1 | |
| -- replaced "(\w*) (\w) with ""$1\U$2 | |
| -- used regex: /^\s*{\s*"name": "([\' \w0-9]*)",\s*"colors": \["#([a-f0-9]*)", "#([a-f0-9]*)", "#([a-f0-9]*)"\]\s*},?/g | |
| -- and with fewer color samples |
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
| module FontAwesome.Helper exposing (..) | |
| import Css exposing (Style, Snippet, fontFamilies, before) | |
| type alias UnicodeTag = | |
| String | |
| fontAwesome : Style |
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
| use std::fmt; | |
| use std::any::Any; | |
| // Implements Binary Trees | |
| #[derive(Clone)] | |
| struct BruteBinaryTree<T> { | |
| info: T, | |
| left: BinaryTree<T>, | |
| right: BinaryTree<T>, | |
| } |
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/ruby | |
| # [INCOMPLETE] | |
| # PixelCanvas.io Multi-threaded BOT | |
| require 'free-image' | |
| require 'socket' | |
| require 'net/http' | |
| require 'json' |
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
| # Original author: Alexey Pavlov <alexpux@gmail.com> | |
| MINGW_PACKAGE_PREFIX="mingw-w64" | |
| _realname=gc | |
| pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}" | |
| pkgver=7.4.2 | |
| pkgrel=1 | |
| pkgdesc="A garbage collector for C and C++ (mingw-w64)" | |
| arch=('any') | |
| url="http://www.hboehm.info/gc" |
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
| _pkgname=hostapd | |
| pkgname="${_pkgname}-wpe" | |
| pkgver=2.8 | |
| pkgrel=0 | |
| pkgdesc="IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator (with hostapd-wpe patch)" | |
| arch=('x86_64' 'aarch64') | |
| url="https://w1.fi/hostapd/" | |
| license=(GPL) | |
| depends=('openssl' 'libnl') | |
| options=(emptydirs) |
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
| #include <iostream> | |
| using namespace::std; | |
| class Ponto{ | |
| public: | |
| Ponto(int _x=1, int _y=1); | |
| void setX(int _x); | |
| int getX() const; |