-
afrjvhqxum
-
apotheon
Howard Jones?
-
gingeropolous
Joan Jetson?
-
pqcjkdgkmsrh
twitter.com/hyc_symas/status/1203709575226183683
-
pqcjkdgkmsrh
Last time I got an award like that was in a primary school football team. It had three stars too and said that I'm special :')
-
pqcjkdgkmsrh
I just binned it though instead of showing it off to naive groupies. What kind of preson takes a group achievement award and presents it as a proof of their individual prowess anyway?
-
rupee[m]
truly embarrassed for fukface how lame these zingers are
-
kayront-
-
yanmaani
Where can you exchange BTC for XMR without KYC at reasonable fees?
-
yanmaani
"instant exchange" works, but it's expensive and annoying
-
yanmaani
I want a "real exchange" with an account and stuff where I can log in with Tor
-
sech1
TradeOgre
-
sethsimmons
-
selsta
sethsimmons: probably only takes one large botnet to completely spam the network
-
sethsimmons
If that, the PoW is not very extensive and is probably prone to simple ASICs
-
sethsimmons
I doubt it's worth that, but interesting to see some of the clear issues of Nano finally being pointed out "in prod"
-
selsta
their PoW is quite bad for casual users, you basically need a GPU or wait minutes to generate PoW
-
selsta
or you use a centralized PoW generator service
-
sethsimmons
But muh no fees selsta
-
sethsimmons
It's almost like... fees exist for a reason in almost every network :D
-
NickvanSaberhagn
Haha exactly
-
NickvanSaberhagn
There ain’t no such thing as a free lunch
-
tqalvcgocf
If only one of you gave Papa ChooChoo some TLC when I wrote a faster miner, instead of ignoring him, things could have happened differently
np.reddit.com/r/Monero/comments/5lsfgt/_/dbz0jnp
-
apotheon
I'm guessing the spammer didn't actually write that miner.
-
gingeropolous
who knows and who cares
-
apotheon
gingeropolous: I just found the phrasing that implied the spammer wrote it amusing.
-
qay
Hi community, I m a little bit frustrated after the new install of Debian Buster 32 bit on netbook and installation of the monero stuff..... monerod will not working. All steps from the github manual (readme.md) has been done but by adding the command monerod --detach the error message will be back like the installtion yesterday ..... command not found.... same when using --log-level 1 Is there another
-
qay
installation manual known ? Could it be that the kernel update of the Buster make any trouble ???
-
angrymonkeyboi[m
qay: is monerod in your path?
-
qay
angrymonkexboi : beg my pardon, could you please explain what the meaning is of the path... installation of monero folder has been done under home/username/ monero ,,, installation has been started by make from user profile in monero/build/Linux/master/release/bin all files are displayed .... and now nothing is working
-
moneromooo
What is the exact command you're trying to run ?
-
moneromooo
If "monerod --detach", this is wrong: you need: "monero/build/Linux/master/release/bin/monerod --detach"
-
qay
moneromooo : oh what the fu... ok I ll try ...
-
qay
moneromooo: you made it !!! now the fork is running .... Is it possible to send a notification to the owner of the github /monero-project/readme.md.... Because I think the community will not have any inflow if the documentation is not descibed well
-
qay
Thank you very much
-
moneromooo
So what were the issues ? Anything other than using the wrong path ?
-
qay
Now the fork is running. It was the wrong path
-
moneromooo
I can add a note about it in the README. But it's basic linux usage really.
-
qay
but now how is it possible to see the sync is running well, I think the documention on github can be ignored
-
moneromooo
monerod sync_info
-
» moneromooo waits to see if the penny dropped
-
moneromooo
(or monerod status for a shorter output)
-
moneromooo
Hmm. Looking at the README, it says: Add `PATH="$PATH:$HOME/monero/build/release/bin"` to `.profile`
-
moneromooo
Did you do this ?
-
moneromooo
I'll add ~ and source too.
-
ndorf
moneromooo: needs `export PATH` i think
-
qay
the instructions are not clear on the redme.md .... with the information the job is working well now
-
moneromooo
I don't think so, let me try...
-
qay
yes I have added the line to .profile and made a reboot but nothing happens
-
moneromooo
Meh, I'll add anywya, cna't hirt.
-
ndorf
moneromooo: directly from the shell, it will work without export, but then fail from a script, or subshell, etc
-
moneromooo
But .profile is sourced, isn't it ?
-
moneromooo
Anyway, I added export.
-
qay
now I can't start the monerod sync_info or monerod status .... same as before .... command not found
-
moneromooo
Right. You understand why now, right ?
-
ndorf
without export, it's a local shell variable, not an environment variable. so, visible only to the process that sourced .profile (the login shell), not any children
-
ndorf
qay: you need to point it to the correct directory, if it's not $HOME/monero
-
ndorf
qay: there is also no reason to reboot, you just need to do: source ~/.profile
-
moneromooo
The README had .profile, not ~/.profile :)
-
ndorf
oops
-
moneromooo
So if you're a noob, chances are you'll write to ~/monero/.profile.
-
ndorf
oh!
-
ndorf
build/release/bin vs build/Linux/master/release/bin
-
moneromooo
Ah yes, thanks, default changed. Fixed.
-
ndorf
i guess at the moment most people would actually want to build release-v0.17, not master?
-
moneromooo
Ugh. Checking out the tag, it goes to build/"Linux/_HEAD_detached_at_v0.17.1.0_"/release
-
qay
moneromooo: no I have not ..... where I have to add export ???
-
ndorf
the tag, yes. the release *branch* works nicely though :)
-
moneromooo
Alright, fixed again :)
-
moneromooo
qay: you give the right path again, same as before.
-
moneromooo
ie, build/..../monerod status
-
moneromooo
You'll have to do that a lot if you're on Linux, it'll pop up everywhere.
-
ndorf
another option is to just install the binaries to /usr/local/bin. either manually, or `sudo make install` in the build/.../release directory
-
qay
ndorf : I did this before .... to install the binaries to usr/local/bin .... message from system by add monerod --detach >>> command not found.
-
moneromooo
You need to add /usr/local/bin to your PATH if it's not. echo $PATH will show it.
-
ndorf
by default it's the first entry in PATH on debian
-
ndorf
qay: what's the output of echo $PATH
-
qay
ndorf: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin .... is the result under root
-
ndorf
what's the result under the normal user you plan to run monerod as?
-
qay
under user : /usr/local/bin:/usr/bin:/usr/local/games:/usr/games
-
ndorf
and ls -l /usr/local/bin/monerod ?
-
qay
if I type monerod --detach .... message .... command not found
-
qay
little moment please
-
qay
the system reported >> file can not be found
-
ndorf
right. so, you didn't put the binaries in /usr/local/bin
-
ndorf
you can EITHER do that, or change your PATH to point at the build directory as moneromooo instructed earlier. you don't need to do both, just one
-
qay
today yes... because yesterday this way has not been working well and today I used for installation the readme.md
-
qay
from
-
qay
Ok .... I will do this ...... Big Thanks for your advisement moneromooo and ndorf.... One step closer ;O)
-
NickvanSaberhagn
Went into a room of Bitcoin maximalists on Clubhouse and asked if there are any weaknesses in BTC. The fifteen speakers couldn’t really come up with any. I very kindly asked to hear their response to the centralization of the chip fabrication plants that produce the hashrate and promptly got kicked from the room.
-
NickvanSaberhagn
I like Bitcoin a lot but it’s amazing to me to see the groupthink in it right now
-
as2333
they don't have arguments but they have the ban hammer!
-
apotheon
NickvanSaberhagn: Maybe they hear so much shit from people that is akin to what the spammer keeps saying here that they just figure everyone who isn't a known friendly member of the community and brings up something that seems slightly critical must be a troll.
-
NickvanSaberhagn
Right.
-
gingeropolous
lol. its like they plug there ears and hopes it goes away
-
NickvanSaberhagn
Well it sort of converts me into a real concern troll. Originally I was just curious to hear their thoughts but with all these consistent rejections of asking the question it almost makes me want to enter their circles with the adversarial goal
-
NickvanSaberhagn
Of getting them to doubt their assumptions
-
gingeropolous
which it seems they do. there's either the hope that asic efficiencies maximums will force the free market to behave more better
-
gingeropolous
or the notion that if sha256 "fails", then they'll just fork to something different
-
gingeropolous
i can only imagine that 30 year conversation
-
NickvanSaberhagn
Ha Bitcoin and fork in the same sentence. That’s a laugh
-
gingeropolous
if the scaling debate took 7 years and resolved with .... i dunno what. can't imagine.
-
charolastra
oh come on. you went the fully intending to troll, lol
-
gingeropolous
im honestly scared that they'll go "oh, this randomx looks nice. thanks"
-
NickvanSaberhagn
I did not charolastra
-
NickvanSaberhagn
I’m genuinely interested to hear their concerns of
-
NickvanSaberhagn
Their own project
-
gingeropolous
and then monero will be merge mined hopefully
-
NickvanSaberhagn
I wish they had a Breaking Bitcoin community led project
-
charolastra
but you already know their answer, don't you?
-
NickvanSaberhagn
No
-
NickvanSaberhagn
I know XMR s answer
-
hyc
lol...
-
hyc
they believe their code is immutable and inviolable. therefore there can be no such thing as a Breaking Bitcoin project
-
NickvanSaberhagn
Was the Segwit thing a hard fork? SWHF or whatever?
-
hyc
UASF
-
NickvanSaberhagn
Right
-
hyc
user-activated soft fork
-
NickvanSaberhagn
Oh gaha
-
NickvanSaberhagn
Definitely not a hardfork
-
hyc
nope. they don't believe in hard forks.
-
NickvanSaberhagn
Well I started in Monero before Bitcoin so I haven’t really been exposed to the maximalist culture before and it was quite eye opening
-
NickvanSaberhagn
Glad to be part of this project. So much more integrity here
-
gingeropolous
well its kinda not? you could fire up some bitcoin 0.00whatever client and still submit a tx to the network afaik
-
gingeropolous
can't do that with moneta
-
gingeropolous
yes... no ?
-
hyc
pluses and minuses. Just ask Microsoft, Intel or IBM about perpetual backward compatibility
-
hyc
As I recall, all IBM/370 machines had a complete IBM/360 VM/emulator built in
-
hyc
probably still true of IBM/370 on current /390 architecture
-
NickvanSaberhagn
I think Monero has and will continue to benefit from Bitcoins risk aversion. It is making crypto accepted which is helpful to us
-
hyc
it is only helpful if we aren't lost in the noise, and forgotten as flashy new scam projects hit the scene
-
Mochi102
hyc, like Polkadot, and Uniswap, and Chainlink, and Theta, and Wrapped BTC, and AAVE, Solana, Terra, Cosmos and Avalanche???
-
hyc
to name a few ;)
-
diverter[m]
<NickvanSaberhagn "I’m genuinely interested to hear"> Can't speak for them but I would imagine anyone trying to be fair would say more widely geographically distributed ASIC and chip manufacturing would be very nice, I hesitate to say its too much of a "concern". If I could choose, I would surely like to see more, and iirc there is a large plant slated to open in North America in the next few years, remembering an
-
diverter[m]
announcement from someone.
-
-
-
-
apotheon
ugh
-
apotheon
The way the matrix bridge handles multiline messages and edits is atrocious.
-
apotheon
I fucking hate it.
-
diverter[m]
Agreed
-
kvrfasrgoeff
FIY, you want to know why you are getting those daily messages? Cults NEED to control information. That's why people like lh1008 get savagly attacked (also called disconnection) for even talking to me. Break the information embargo, break the cult. Who would sign up to Scientology if they knew from the get-go that is is about a sci-fi alien overlord? Who would sign up to MAGA if they knew what a los
-
kvrfasrgoeff
er Trump is?
-
kvrfasrgoeff
You don't sign up to MAGA to do a failed Viking LARP and some time off in club fed. You sign up because you feel like shit and they promise to give you self-respect. It is a total lie of course, you are still a joke even when cosplaying a Viking. Just like Monero's promise of privacy is a lie.
-
as2333
too bad kvrfasrgoeff is an anonymous coward
-
manifest
when you're too afraid to have a discussion and just yell shit from the sidelines instead
-
oslogrigor
Hey all! I'm curious about Monero and am wondering what you guys think of investing in it. Any input at all is appreciated. :)
-
manifest
there's probably better cryptos out there for making money if xmr/btc keeps doing what it's doing
-
manifest
but if you feel like trying to catch the bottom of it, be my guest
-
manifest
also, #monero-markets for trading etc. discussion
-
hyc
xmr is for use as a currency, buying and selling products & services
-
hyc
not for investing
-
hyc
I mean... some people invest in currenies, fair enough.
-
hyc
trading dollars vs yen vs pounds whatever
-
oslogrigor
I see. I'm looking at a wide range of cryptos and this one has always struck me as worth a damn.
-
Quotes
CRYPTO IS NOT CRYPTOCURRENCY ಠ_ಠ ~ IT REFERS TO CRYPTOGRAPHY, oslogrigor
-
oslogrigor
oh
-
manifest
:D it's just a bot, np
-
oslogrigor
lol
-
hyc
be nice or you'll hurt its feelings :P