Os problemas indedicíveis não possuem um algoritmo, logo, não tem parada garantida pois pode existir um número infinito de estados dado uma entrada.. Já os problemas decidíveis possuem algoritmo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="dialog-content"> | |
<div id="modal-services"> | |
<h2>Configure o serviço</h2> | |
<form id="service-form"> | |
<div class="form-group"> | |
<label>Nome</label> | |
<input class="form-control" type="text" name="name" ng-model="service.name" placeholder="Sem nome"/> | |
<div class="error mt" ng-if="dialogCtrl.errors.name"><span class="text-danger" ng-repeat="error in dialogCtrl.errors.name">{{error}}<br/></span></div> | |
</div> | |
<div class="form-group"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ======================================================================== | |
// Component: ngdialog.less | |
// ======================================================================== | |
.ngdialog { | |
z-index: 9001 !important; | |
&.ngdialog-theme-default { | |
.ngdialog-content { | |
background-color: #fff; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FUNCTION_BLOCK driver | |
VAR_INPUT | |
x : REAL; | |
y : REAL; | |
angle : REAL; | |
END_VAR | |
VAR_OUTPUT | |
volante : REAL; |
- deve ficar pequeno https://processing.org/tutorials/pixels/imgs/tint1.jpg (200x200)
- deve ficar pequeno http://bunmiolowonubi.com/wp-content/uploads/2016/05/image-315-200x350.jpeg (200x350)
- deve ficar pequeno https://s-media-cache-ak0.pinimg.com/236x/ce/10/42/ce10420b281c6b026837b4dab49d280e.jpg (200x560)
type OAuthException, code: 190, message: The access token could not be decrypted [HTTP 400]
Ocorre quando há alterações no token e o Facebook não consegue decifra-lo. Para reproduzi-lo é necessário adicionar caracteres no token ou alterar algum existente.
Entrar novamente. Relogin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <machine.h> | |
#include <alarm.h> | |
#include <utility/ostream.h> | |
#include <i2c.h> | |
#include <gpio.h> | |
#include <cpu.h> | |
#include <machine/cortex_m/emote3_gptm.h> | |
using namespace EPOS; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <machine.h> | |
#include <alarm.h> | |
#include <utility/ostream.h> | |
#include <i2c.h> | |
#include <gpio.h> | |
#include <cpu.h> | |
#include <machine/cortex_m/emote3_gptm.h> | |
using namespace EPOS; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"results": [ | |
[ | |
"A0numeric0" | |
], | |
[ | |
"A1numeric0" | |
], | |
[ | |
"A2numeric0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def register_owner | |
uuid = qr_code_params[:uuid] | |
qr_code = QrCode.find_by(uuid: uuid) | |
if(qr_code) | |
if(qr_code.user) | |
render json: QrCodeAlreadyHasAnOwnerError.new(uuid), status: :conflict | |
else | |
@current_user.qr_codes << qr_code | |
render json: qr_code, status: :created | |
end |
NewerOlder