In terminal type dd if=/dev/sda of=/media/location/backup.img bs=512 count=1.
In terminal type dd if=/media/location/backup.img of=/dev/sda bs=446 count=1.
| package test.utils | |
| import java.net.URI | |
| import test.Test | |
| import org.asynchttpclient.{Request, RequestBuilderBase, SignatureCalculator} | |
| class HawkAuth extends SignatureCalculator { | |
| override def calculateAndAddSignature(request: Request, requestBuilder: RequestBuilderBase[_]): Unit = { |
| pragma solidity >=0.4.18; | |
| contract StonePaperScissors{ | |
| enum VARIANTS {STONE, PAPER, SCISSORS} | |
| enum WINNER {DRAW, USER, COMP} | |
| mapping (uint => mapping(uint => int)) winLooseMatrix; | |
| uint nonce = 132; | |
| uint houseEdge = 1; | |
| address player; | |
| uint playerChoice; |
| :: start sqlcm | |
| @echo off | |
| COLOR 06 | |
| cls | |
| echo. | |
| echo. | |
| :start | |
| echo 1. Scan - 1 | |
| echo 2. Exit - 2 | |
| set /p choice= Input number: |
4383229 function calls (4132429 primitive calls) in 3.026 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
150000/25000 0.920 0.000 1.651 0.000 converters.py:195(unstructure_attrs_asdict)
150000/25000 0.687 0.000 1.290 0.000 converters.py:294(structure_attrs_fromdict)
| from selenium.common.exceptions import ( | |
| WebDriverException, | |
| ) | |
| class number_of_all_elements_located(object): | |
| """ An expectation for checking that there is at least given number of | |
| elements present on a web page. | |
| locator is used to find the element | |
| returns the list of WebElements once they are located |