- 
nioc
apotheon: so much good info in and linked from the many monero irc channels
 
- 
Mochi102
nioc, s/many/very many many
 
- 
nioc
Mochi102: correct, can't keep up :D
 
- 
nioc
everytime I check the price of gold I think of you
 
- 
Mochi102
Because I'm special?
 
- 
nioc
yes
 
- 
Mochi102
You are too buddy.
 
- 
apotheon
nioc: good answer
 
- 
apotheon
nioc: I meant to my question, but I guess that applies to your answer to Mochi102's question, too.
 
- 
XMRpeasant
Is the e-mail mailing list front-end working ? 
lists.getmonero.org/postorius/lists…monero-announce.lists.getmonero.org when I try to subscribe gives me "A server error occurred. Please contact the administrator."
 
 
- 
moneromooo
fluffypony ^
 
- 
horseface
during mining, does it also utilise the GPU?
 
- 
sech1
No, if you don't enable GPU mining explicitly
 
- 
littlebobeep
Does anyone know a debit card that works with XMR?
 
- 
uncle_rae
o_0
 
- 
maledictium
littlebobeep: I think the binance card works with xmr but i'm not sure
 
- 
garth
 
- 
littlebobeep
Currently, we support the conversion and spending of BNB, BUSD, USDT, BTC, SXP, ETH, EUR, ADA, DOT, LAZIO, PORTO, SANTOS with your Binance Card.
 
- 
littlebobeep
But Investopedia says it supports 30 coins:
 
- 
littlebobeep
 The Binance Visa Card charges no issuance or monthly fees and only charges up to a 0.9% transaction fee for transactions and ATM withdrawals. Note that ATM operators may charge an additional fee. The card supports 30 cryptocurrencies, including Bitcoin and Ethereum. 
 
- 
littlebobeep
Also they want scan of passport and says some countries require bank account connection too.... they say utility bill might also work which sounds less invasive
 
- 
horseface
thanks, sech1.
 
- 
fluffypony
XMRpeasant: tks - will ping pigeons about that
 
- 
XMRpeasant
Awesome. I want to be in the loop for June 16 and all that
 
- 
nioc
fluffypony: reply from seth about the matrix issue in another channel "we only leverage the Matrix-run bridges, we don't run it ourself. They have already patched theirs so no impact to us and nothing needing to be done."
 
- 
ErCiccione
since we are talking about matrix. The #monero room on IRC is still not bridged on matrix fyi. At this point they are factually 2 distinct rooms going on their own
 
- 
fluffypony
XMRpeasant: fixed
 
- 
fluffypony
box ran out of disk space
 
- 
XMRpeasant
<3
 
- 
merope
ErCiccione same with monero-pools
 
- 
horseface
shit these fucking weed "gummies" ARE FUCKING STRONG.
 
- 
horseface
i ate two!
 
- 
horseface
lol
 
- 
horseface
oh sorry, i didn't realise the channel i was in.
 
- 
horseface
i am twisted, contorted, diagonal.
 
- 
V-T60
Hello. What does it mean? 
bpa.st/LPWQ 
 
- 
V-T60
v@pavilion-dv6:~ $ monero-wallet-cli help
 
- 
V-T60
Illegal instruction (core dumped)
 
- 
V-T60
Why is that so? I can't neither compile nor use pre-compiled package (FreeBSD amd64)
 
- 
moneromooo
It means you're likely trying to run a binary on an arch it was not built for.
 
- 
moneromooo
It typically happens with ARM, where different vendors have different sets of insns they licenced. Can also happen for x86/x86_84 with, eg, AES and various SIMD insns.
 
- 
V-T60
So strange, because I got this from FreeBSD Ports Repository
 
- 
moneromooo
What arch ?
 
- 
V-T60
I have got FreeBSD 13.0-RELEASE #0 releng/13.0-n244733-ea31abc261f: Fri Apr  9 04:24:09 UTC 2021     root⊙rnfo:/usr/obj/usr/src/amd64.amd64/sys/GENERIC  amd64
 
- 
moneromooo
That'll be x86_64 then. Less common. Is it a recent AMD processor ?
 
- 
V-T60
CPU: Intel i7 Q 720 (8) @ 1.596GHz 
 
- 
moneromooo
Try this:
 
- 
moneromooo
gdb -q monero-wallet-cli
 
- 
moneromooo
run help
 
- 
moneromooo
Then, after it dies:
 
- 
moneromooo
disasm
 
- 
moneromooo
Then you'll see on which insn it's choking.
 
- 
V-T60
moneromooo: "disass" probably?
 
- 
moneromooo
Yes.
 
- 
V-T60
Undefined command: "disasm".  Try "help".
 
- 
V-T60
Okay
 
- 
moneromooo
If it's an AES insn, you can then try running with MONERO_USE_SOFTWARE_AES=1 and check whether your CPU is supposed to have those insns. I'd expect an i7 to, but you never know.
 
- 
moneromooo
If it's another insn, you get to look up what type it is, and do the same.
 
- 
V-T60
Is that exact command that should be executed? Look at that: 
bpa.st/55DA 
 
- 
moneromooo
One min, spinning up vm...
 
- 
moneromooo
Hrm. I think you should be able to see with:
 
- 
moneromooo
disas 14715b0-14715e0
 
- 
moneromooo
Or check actual disas syntax. Then check what's at b5 (I assume it's got enough prefix to sync).
 
- 
moneromooo
If there's nothing starting at b5, disas again from 16 bytes earlier.
 
- 
V-T60
(gdb) disas 14715b0-14715e0
 
- 
V-T60
Invalid number "14715b0".
 
- 
moneromooo
Check disas help for how to give it a range.
 
- 
moneromooo
I just saw your first paste now. Could be a bug in the cmake machinery.
 
- 
V-T60
I am trying to figure out what did they mean by this: (gdb) disas help
 
- 
V-T60
No symbol table is loaded.  Use the "file" command.
 
- 
moneromooo
help disas
 
- 
V-T60
oh
 
- 
moneromooo
For the stack trace error, you could try removing all CMakeCache.txt from the build tree, and add "-D STACK_TRACE=0" to the cmake line.
 
- 
moneromooo
But filing a bug about it would be nice. If some coder uses freebsd and wants to check.
 
- 
V-T60
Now I undestand how to use disas
 
- 
V-T60
bpa.st/AH5A that's output
 
 
- 
V-T60
14715b0-14715e0
 
- 
V-T60
Should disas again from 16 bytes earlier?
 
- 
moneromooo
Yes, looks like it.
 
- 
moneromooo
Or something jumped right in the wrong place. Unlikely though.
 
- 
V-T60
Discovering everything you mentioned before
 
- 
V-T60
 
- 
V-T60
 
 
- 
V-T60
Intel® AES New Instructions   
 
- 
V-T60
No
 
- 
V-T60
Does it mean that MONERO_USE_SOFTWARE_AES=1 should be used?
 
- 
moneromooo
Yes.
 
- 
moneromooo
er, no.
 
- 
moneromooo
er, Yes.
 
- 
moneromooo
Really yes :)
 
- 
V-T60
 
 
- 
V-T60
Instruction Set Extensions Intel SSE4.2
 
- 
V-T60
Is that enough? I guess that's about SIMD extensions
 
- 
moneromooo
If your binary chokes on a SSE 4.2 insns, then you have to rebuild locally. There's no env var for these, only for AES insns.
 
- 
V-T60
Where can I find a documentation page about this MONERO_USE_SOFTWARE_AES? It is an env var, isn't it?
 
- 
V-T60
So MONERO_USE_SOFTWARE_AES=1 monero-wallet-cli help
 
- 
V-T60
should be ran?
 
- 
moneromooo
Yes.
 
- 
moneromooo
I don't think there is documentation on it.
 
- 
V-T60
v@pavilion-dv6:~/monero-x86_64-unknown-freebsd-v0.17.3.2 $ ./monero-wallet-cli 
 
- 
V-T60
This is the command line monero wallet. It needs to connect to a monero
 
- 
V-T60
daemon to work correctly.
 
- 
V-T60
I found another executable
 
- 
V-T60
 
- 
V-T60
 
- 
Smellyslab
does anyone know how i would go about running my own local chain with the ./monerod and / or make my own whole new livenet chain for my own currency; what would be the command for that
 
- 
Smellyslab
live i have the sources and all that stuff built aswell as i changed the network ID to my own ; but how would i actually use this to make a live chain for my own currency / start from block 0/1
 
- 
Smellyslab
nvm
 
- 
Smellyslab
i think i got it
 
- 
Smellyslab
nope
 
- 
Smellyslab
still no idea
 
- 
Ghulie
forking the code?
 
- 
Mochi102
./monerod --make-new-scam-chain
 
- 
fluffypony
LOL
 
- 
as2334
much needed feature