I hereby claim:
- I am TyIsI on github.
- I am TyIsI (https://keybase.io/TyIsI) on keybase.
- I have a public key whose fingerprint is 87D2 86E6 DA93 4F2B EEA9 96ED 73ED B6D8 E372 7203
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| mkdir ghost-tmp | |
| cd ghost-tmp | |
| cat > GHOST.c << EOF | |
| #include <netdb.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <errno.h> |
| // Example class | |
| function ExampleClass() { | |
| // Example Method | |
| this.ExampleMethod = function ( args ) { | |
| // Log to console | |
| return console.log( "Name: " + args.message ); | |
| } | |
| } |
| <?php | |
| require('mysql.php'); // see https://gist.github.com/paxmanchris/f5d4b94f67a8acd8cefc | |
| $me = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']; | |
| $sso_secret = 'YOUR_SSO_PROVIDER_KEY_HERE'; | |
| $discourse_url = 'http://example.com'; | |
| if(!empty($_GET) and isset($_GET['sso'])){ |
| #!/bin/bash | |
| set $modules=\ | |
| https://github.com/Aepelzen/AepelzensModules.git \ | |
| https://github.com/adbrant/ArableInstruments.git \ | |
| https://github.com/antoniograzioli/Autodafe-Drums.git \ | |
| https://github.com/antoniograzioli/Autodafe-Drums.git \ | |
| https://github.com/antoniograzioli/Autodafe.git \ | |
| https://github.com/av500/vcvrackplugins_av500.git \ | |
| https://github.com/sebastien-bouffier/Bidoo.git \ | |
| https://github.com/bogaudio/BogaudioModules.git \ |
| #!/bin/sh | |
| echo "Running initial update..." \ | |
| && sudo apt update \ | |
| && echo "Running system upgrades..." \ | |
| && sudo apt upgrade -y \ | |
| && echo "Installing dependencies..." \ | |
| && sudo apt install -y \ | |
| apt-transport-https \ | |
| ca-certificates \ |
| import React, { Component } from 'react' | |
| class Conditional extends Component { | |
| render () { | |
| if (this.props.condition === false) | |
| return null | |
| return ( | |
| <> | |
| {this.props.children} |
| #!/bin/bash | |
| NETSELECT_VERSION="0.3.ds1-29" | |
| echo -n "Checking netselect installation status..." >/dev/stderr | |
| INSTALLED=$(dpkg --list | egrep -iw netselect | egrep '^ii') | |
| if [ "${INSTALLED}" != "" ]; then | |
| echo "INSTALLED!" >/dev/stderr | |
| else |
| #!/usr/bin/env python3 | |
| # This code is available under the MIT license: https://opensource.org/licenses/MIT | |
| from pathlib import Path | |
| import subprocess | |
| import json | |
| from dataclasses import dataclass | |
| from typing import List, Optional |
| #!/bin/bash | |
| TMPFILE=$(mktemp) | |
| TMPFORMATTER=$(mktemp) | |
| { | |
| echo 'module.exports = (results) => {' | |
| echo ' return results' | |
| echo ' .filter(result => result.messages.length > 0)' | |
| echo " .map(result => \`\${result.messages.length}\\t\${result.filePath.replace(/.*(src\/.*)/, '\$1')}\`).join('\\n')" |