Hacker News new | past | comments | ask | show | jobs | submit | minerjoe's comments login

Exacty. And we also know that the NSA/CIA have placed Russian language inside their exploits to frame other countries.


Source?


Marble Framework from Vault 7 leaks.

https://wikileaks.org/ciav7p1/cms/page_14588467.html


I've heard this in the "right rooms" to know this to be likely true, but I'd like something to link to, too.


Please, please discuss this.


This might be the most important thing happening right now and Hacker News has keep it's head in the sand. Lets have an honest discussion about the technical parts of the alleged election steal by foreign agents.


I second that — If hacker news can’t discuss this in detail, nobody can. It’s been said by that KeshavarazNia That with the encryption key, which is not unique to each state, one operator could hack the systems of all six swing states from a single remote location. Wouldn’t it be interesting to track the timestamp on steep changes in the PRo-Biden curve across The next five days as mail in ballots continue to be “counted.” Whoever did this, probably rotated sequentially from state to state, Updating results as needed. I have witnessed this cycling behavior by message board trolls who use multiple identities.


They just started about 5 minutes ago for me. Can anyone else post the pdf to a twitter feed? This is egregious and must be addressed. This is a legal document, filed last night, with strict penalties for perjury and anyone should be able to share and read it.


AKA wget --mirror --page-requisites --adjust-extension --convert-links --backup-converted --no-parent ...


I just ignore the down votes. You probably hitting the target.

This is of concern. The medical industry has a history of covering up the direct know effects of their medicine, AKA poisons. That system has been know for a very long time to lead with arrogance and it sometimes takes them a very long time to pull things they know are killing people. Its just too much $$$.

See vioxx and merck, for just one example.


Balance.

I was a college football player, 60 lbs. heavier than now. When I met my current martial arts teacher he told me flat out, "it's going to take me 20 years to fix what you did to your body." He was right. I'm still fighting to heal tha damage that intense weightlifting over many years did to my body.

Strength is nothing without balance, relaxation, and control. Weight lifting is generally about isolating the muscles, when you should be working on integrating them.


> Weight lifting is generally about isolating the muscles

Bodybuilding often involves a high degree of isolation exercises for fatigue management and for building specific muscles. But good luck deadlifting, squatting, pressing, snatching or clean&jerking etc without "integrating" muscles, or without good balance.


Do you realize how much fucking power is at play here?


> Git will be hard to beat.

With the latest kurfuffle at Github, I've started moving to fossil. Having everything, wiki, pull requests, etc. as part of the repo is looking like a good move.

Why let yet another corporation have control over something they should have never been given?

https://fossil-scm.org


github != git ... I'm not sure why people strongly conflate these two so much.

It would be equally as valid to self-host gitea/gogs/sourcehut/gitlab and/or an issue tracker of your choice, which arguably is preferable to adopting a completely different tool over what is a provider issue.


I think all git has going for it is its existing inertia and GitHub. I think the foundations were a bigger deal when git was newer. Other DVCSes have decent foundations.

Going against git is an atrocious user interface (if it were good then [1] would be neither funny nor sad). Most people just memorise a few commands and if they stop working they transfer their changes elsewhere, delete the repo, and start again. Sometimes a team will have a “git expert” who has merely memorised a few more commands and is better able to get a repo out of a broken state. Git fails badly at an important for a developer tool: largely getting out of the way.

[1] https://git-man-page-generator.lokaltog.net/


The light finally came on for me when I bit the bullet and dug into git's internals. It's a beautifully simple model. Git's internals are much easier to learn than its dumpster fire UI, and once you understand the internals, the UI can be understood as something that started out reflecting the internals but then had a boatload of edge case convenience features glued on without an overall design plan.


This! I did the same thing: read about the model for the commits, the blobs and the hashes. When you know that (just the basic data model, which is really simple), it's a lot easier to understand and memorise the different git commands.

In fact I often work with git using the tools that come with it: git on the commandline, gitk for the visualization of the history and 'git gui' for committing work. They might look outdated, but they work really well and are really fast.

There are a lot of modern graphical tools to work with git repos, but some of them introduce their own vocabulary in an attempt to make using git 'simpler', but this just ends up making everything more confusing.

My impression is that a lot of people want powerful tools, but do not want to invest the time to learn how to handle them. The Pro Git book is available to read for free online and after reading the first 3 chapters, you should know about the most important things for day-to-day use. Some people would do anything to avoid reading the documentation: they'd rather spend a whole day checking different guis that make things look easy and familiar instead of spending that time reading the documentation.


Can you enlighten me how git's internal model is more beautiful than, say, Mercurial? Which has the added bonus of having a UI which isn't a dumpster fire...


I haven't studied Hg's internals. I much prefer Hg to git (because its UI makes sense) but I no longer have the happy option of using it. So rather than continue to fight a battle that was already lost, I decided to embrace git.


For what it's worth, I've been using Mercurial + hg-git to interact with git repos since 2010 and I still do with all my git and github using colleagues.


You'll never hear me say that git's interface is good, but this seems to be blowing things way out of proportion. I haven't seen someone blow up and recreate a git repo in maybe a decade.

I've definitely pulled out the BFG here and there to clean up credentials but that's an issue in any VCS.

Maybe I'm biased because I'm "better able to get a repo out of a broken state", but for the record it's definitely not because I've "memorised a few more commands".


Your attitude seems to mirror this xkcd https://xkcd.com/1597/ and I honestly never understood it.

I'm by no means a git expert (I've actually just recently learned about bisect for instance), but I have never in my entire career been in a state where I'd just delete the repo and recreate it from scratch.

I've only ever used a handful of commands, the most advanced of which could be probably considered `reflog` when I wanted to revert some changes; or `rebase` (because strictly speaking, it is more complex than merge I guess), but I never ran a command I did not understand or had to memorize.

I actually do share the sentiment about the tool getting out of your way, and my knee-jerk reaction to learning about git internals is just repulsion, because you're right! I'm not there to tinker around with version control, I'm there to solve problems. That said, I've never felt like Git got in my way.


I find the vast majority of complaints come from people who refuse to put any time into learning a mildly complex tool, and thus I have no sympathy for them. The documentation is right there in your terminal, in addition to many websites, videos, and books.

The one and only time I messed up a repo beyond repair was when I deleted some git pack files while trying to delete some binary files from the git history. This is known as user error.

In my day to day use I find that I rarely have to venture beyond rebase, bisect, reflog, cherry-pick, and the standard commands.


I nearly did once, because I couldn't stage a file. Git's content-hash store had gotten corrupted, so the object for the staged blob had a bunch of zeros in it and didn't match its sha. That was more the filesystem's fault than Git's, though.


While that's a common conflation I don't think the GP was doing that. While I tend to self-host git, I can see the value they're claiming fossil has.

Whether self-hosted git or hosting on Github, your issue trackers and such are typically separate from your main repository. Most platforms offer wikis as a side-by-side repository so that should be easy to move, but the rest is at the whims of the platform.

The GP is claiming they moved to fossil because the one repository contains all of this data.


I think minerjoe is trying to emphasize that fossil has all the features of GitHub included in the VCS itself, eliminating the need for any of the tools you listed above.

I haven't followed Fossil, so hearing that it includes things like a wiki is news to me.


minerjoe is mentioning Fossil specifically because unlike Git it also provides the features (in a broad sense) that GitHub provides (wiki, bug tracker, discussion forum, news/blog, "released" files and of course version control) while remaining fully distributed - these are stored and versioned as part of the repository itself.

As a nice bonus Fossil is a single executable/binary file you can drop anywhere and can act as both the CLI for working with the repository and as the web backend with a bunch of ways to access it including CGI, it's own web server or even as a fake script parser (you can upload the linux binary to any shared host that supports custom script parsers -many do- and use a "script" with a shebang that calls the binary with the path to the repository file, thus allowing you to use Fossil with shared hosting services that do not even know about it).


>Why let yet another corporation have control over something they should have never been given?

I'm pretty sure github doesn't control git.


That's not what I was implying. They have control over the pull-requests, the wiki, and all the other meta information.


> user experience is horrible

I use links2 as my main web browser and my experience has been exactly the opposite of that.

SPEED.

links2 is lightning fast to browse. Almost every website I load renders in less than 100ms. Every single page. If it doesnt render, than it's a javascript issue and I may open it in firefox if I really care.

So, by using links2, for almost all websites, I get instant loading, with no possible way for the browser to popup anything, distract me anyhow, just the data thankyouverymuch, get out of my way.


Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: