Skip to content

Instantly share code, notes, and snippets.

View zzantares's full-sized avatar

Julio César zzantares

  • Zacatecas, México
View GitHub Profile
@zzantares
zzantares / MyCrowdFunding.hs
Created May 12, 2021 19:16
An old Plutus smart contract mostly as a historic relic due natural changes on Plutus.
module MyCrowdFunding where
import qualified Language.PlutusTx as PlutusTx
import qualified Ledger.Interval as Interval
import Ledger.Slot (SlotRange)
import qualified Ledger.Slot as Slot
import qualified Language.PlutusTx.Prelude as P
import Ledger
import qualified Ledger.Ada.TH as Ada
import Ledger.Ada (Ada)

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@zzantares
zzantares / profiling.py
Last active March 30, 2021 12:46
Profiling django tests, read more at https://pymotw.com/2/profile/
# based on https://djangosnippets.org/snippets/1315/
from django.conf import settings
from django.test.runner import DiscoverRunner
try:
import cProfile as profile
except ImportError:
import profile