One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Antes de iniciar
Instalação
Criar dentro do diretório src:
| addToLocalStorage() { | |
| const { id, type, recipeDetail: { strArea, strCategory, | |
| strAlcoholic, strDrink, strMeal, strMealThumb, strDrinkThumb } } = this.props; | |
| const favoriteRecipes = JSON.parse(getItem('favoriteRecipes')) || []; | |
| const newFavoriteRecipe = [ | |
| ...favoriteRecipes, | |
| { | |
| id, | |
| type: type.replace('s', ''), |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| import os | |
| import sys | |
| try: | |
| import olefile |
| #!/usr/bin/python3 | |
| """ | |
| ./oledump.py -p plugin_biff --pluginoptions "-o bound -a" sample.xls | |
| 1: 4096 '\x05DocumentSummaryInformation' | |
| 2: 236 '\x05SummaryInformation' | |
| 3: 104629 'Workbook' | |
| Plugin: BIFF plugin | |
| 0085 14 BOUNDSHEET : Sheet Information - worksheet or dialog sheet, visible | |
| ' 00000000: CA D9 00 00 00 00 06 00 \xca\xd9......' |
| #!/usr/bin/env python | |
| """ | |
| mv aslr.py /usr/bin/aslr && chmod +x /usr/bin/aslr | |
| Be careful! | |
| """ | |
| import os, sys | |
| FLAG_ENABLE = 2 | |
| FLAG_DISABLE = 0 |
| class Animal: | |
| cor = "" | |
| grupo = "" | |
| _favFood = "" | |
| __age = 0 | |
| def __init__ (self, cor, grupo='"sem grupo"'): | |
| self.cor = cor | |
| self.grupo = grupo |
| adb help // List all comands | |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader |