Skip to content

Instantly share code, notes, and snippets.

@onlyone0001
onlyone0001 / story.latex
Created April 12, 2024 11:01 — forked from dylan-k/story.latex
a pandoc template to make PDF files with standard manuscript formatting
% -----------------------------------------------------------------------------
%
% STANDARD MANUSCRIPT FORMAT LaTeX TEMPLATE FOR PANDOC
%
% NOTE: This template has a newer version:
% https://github.com/dylan-k/Palabra/blob/master/pandoc-templates/story.latex
% Comments and Pull Requests are Welcome
%
% -----------------------------------------------------------------------------
@onlyone0001
onlyone0001 / Retry.py
Created May 5, 2022 12:04 — forked from ultrafunkamsterdam/Retry.py
Python (Auto) Retry - Automatically retry your calls using optional delay - asyncio compatible
import asyncio
import functools
import time
__all__ = ['Retry']
class Retry(object):
"""
/* Whitelist */
const mintWhitelist = async () => {
let mint_amount = document.getElementById("mint_amount").value
const result = await contract.methods.mintWhitelist(mint_amount)
.send({ from: accounts[0], gas: 0, value: NFT_PRICE * mint_amount })
.on('transactionHash', function(hash){
document.getElementById("web3_message").textContent="Minting...";
})
.on('receipt', function(receipt){
@onlyone0001
onlyone0001 / laravel-livewire-tables-demo-table.php
Created February 7, 2022 16:45 — forked from rappasoft/laravel-livewire-tables-demo-table.php
Laravel Livewire Tables Demo Table Source
<?php
namespace App\Http\Livewire;
use App\Models\Tag;
use App\Models\User;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
use Rappasoft\LaravelLivewireTables\Views\Filter;
@onlyone0001
onlyone0001 / BoredApeYachtClub.sol
Created February 2, 2022 23:12 — forked from JofArnold/BoredApeYachtClub.sol
The Bored Ape Yacht Club (BAYC) Solidity Smart Contract GitHub
/**
*Submitted for verification at Etherscan.io on 2021-04-22
*/
// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
#!/usr/bin/ruby
# Create display override file to force Mac OS X to use RGB mode for Display
# see http://embdev.net/topic/284710
require 'base64'
data=`ioreg -l -d0 -w 0 -r -c AppleDisplay`
edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten
vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten
@onlyone0001
onlyone0001 / nginx.conf
Created September 13, 2020 11:50 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
define ROOT C:\Program Files (x86)\nxlog
Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
SpoolDir %ROOT%\data
LogFile %ROOT%\data\nxlog.log
<Extension json>
Module xm_json
@onlyone0001
onlyone0001 / nxlog.conf
Created June 1, 2020 11:26 — forked from wolstena/nxlog.conf
nxlog config
## This is a sample configuration file. See the nxlog reference manual about the
## configuration options. It should be installed locally and is also available
## online at http://nxlog.org/nxlog-docs/en/nxlog-reference-manual.html
## Please set the ROOT to the folder your nxlog was installed into,
## otherwise it will not start.
#define ROOT C:\Program Files\nxlog
define ROOT C:\Program Files (x86)\nxlog
@onlyone0001
onlyone0001 / ajaxListener.js
Created May 30, 2020 12:36 — forked from icodejs/ajaxListener.js
JS: Listen to ajax calls from Javascript
var open = window.XMLHttpRequest.prototype.open,
send = window.XMLHttpRequest.prototype.send,
onReadyStateChange;
function openReplacement(method, url, async, user, password) {
var syncMode = async !== false ? 'async' : 'sync';
console.warn(
'Preparing ' +
syncMode +
' HTTP request : ' +