Skip to content

Instantly share code, notes, and snippets.

View Ganbin's full-sized avatar
🌱
Building

Gabriel Inzirillo Ganbin

🌱
Building
  • Biel / Bienne
  • 19:00 (UTC +02:00)
View GitHub Profile
@Ganbin
Ganbin / README.md
Last active February 11, 2024 12:53
Chia GPU Farming: Underclocking GPU

Chia GPU Farming: Underclocking GPU

This document aims to compile the knowledge I acquired while optimizing my GPU's power efficiency for farming compressed plots in Chia.

My Configuration

Here is my setup:

  • Ubuntu
  • AMD Ryzen 9 5950X (AM4, 3.40GHz, 16-Core)
  • 1x RTX 3070
  • 128 GB RAM
  • 692 raw TiB
@Ganbin
Ganbin / create_bundle_from_mempool_items.py
Last active January 22, 2024 11:59
create_bundle_from_mempool_items Simulation
import os
import json
import time
import sys
def parse_from_json_file(filename):
with open(filename, "r") as f:
data = json.load(f)
return data["mempool_items"]
@Ganbin
Ganbin / Logger.4dm
Last active January 31, 2022 14:44
/*
cs.Logger
Class to use when we want to do some logging into DentaGest
This class is a singleton
----------------------------------------------------
Created by: gabriel inzirillo (23.09.21, 20:44:26)
----------------------------------------------------
*/

Keybase proof

I hereby claim:

  • I am ganbin on github.
  • I am ganbin (https://keybase.io/ganbin) on keybase.
  • I have a public key ASDMsUU1z8Rt4y_zc5KnfxIHUMW2ia2zvqVofQOaoOJibwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am ganbin22 on github.
  • I am ganbin (https://keybase.io/ganbin) on keybase.
  • I have a public key ASDMsUU1z8Rt4y_zc5KnfxIHUMW2ia2zvqVofQOaoOJibwo

To claim this, I am signing this object:

@Ganbin
Ganbin / VP_customMethod.4dm
Last active August 19, 2020 14:56
Custom 4D View Pro methods. A container to write your own SpreadJS code inside a 4D View Pro area
// VP_customMethod ( $params )
//
// $params : (object) The params objet must contain the "case" attribute that will allow you to execute the needed code
// You also need a "name" attribute to set the name of the view pro area
// Depending the case you can add your custom attributes
//
// The purpose of this method is to execute some special method that are not yet available in 4D v18
If (False)
// ----------------------------------------------------