Skip to content

Instantly share code, notes, and snippets.

[
[
{
"id": 1,
"slug": "acrelandia",
"city": "Acrelândia",
"state": "Acre",
"uf": "AC"
},
{
@clubeagn
clubeagn / react-error1.txt
Last active December 28, 2018 14:43
Unable to load scripts from assets 'index.android.bundle' on real device
change index.js to index.android.js
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
react-native run-android
@clubeagn
clubeagn / react-erro2.txt
Last active December 28, 2018 14:43
react erros
Erro: SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.
Solução:
Vá até a pasta Android do seu projeto.
- Crie um arquivo chamado: local.properties
-Abra o arquivo e coloque o caminho de sua SDK
Exemplo: C:\\Users\\Jonathan\\AppData\\Local\\Android\\sdk
@clubeagn
clubeagn / ajax.js
Created October 18, 2018 17:24
example_ajax
app.request.get('http://www.whileushop.com/lama/json.php',function (data) {
console.log(data);
});
@clubeagn
clubeagn / Typeahead.html
Last active September 26, 2018 14:48
Typeahead JS
<div class="form-group col-md-6">
{{ Form::label('XXXXXXX','XXXXXXX')}}
{{ Form::input('text','XXXXXXX', null, array('class' => 'form-control', 'autocomplete' => 'off')) }}
</div>
<script>
$(function () {
$("#XXXXXXX").typeahead({
@clubeagn
clubeagn / method_laravel.php
Last active September 26, 2018 14:47
Typeahead JSON_Result
public function AutocompleteJson(Request $request) {
$data = XXXXX::select("xxxx as xxxx")
->where("xxx","LIKE","%{$request->input('query')}%")
->get();
return response()->json($data);
}
@clubeagn
clubeagn / typeahead.css
Created September 26, 2018 14:44
it.toLowerCase is not a function
ul.typeahead.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
@clubeagn
clubeagn / .htaccess
Created September 25, 2018 18:38
MAUTIC
# Use the front controller as index file. It serves as a fallback solution when
# every other rewrite/redirect fails (e.g. in an aliased environment without
# mod_rewrite). Additionally, this reduces the matching process for the
# start page (path "/") because otherwise Apache will apply the rewriting rules
# to each configured DirectoryIndex file (e.g. index.php, index.html, index.pl).
#DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
@clubeagn
clubeagn / config
Created September 17, 2018 13:58
SSH UBUNTU GIT
Assuming you are connecting GitHub over SSH, you can run below command to confirm this.
$git config --get remote.origin.url
If you get a result has following format git@github.com:xxx/xxx.github.com.git, then you should do the following.
Generate a SSH key(or use existing one). if you had one, you just need to add your key to the ssh-agent (step 2)and to your GitHub account(step 3).
below are for those who don't have SSH key.
Step 1 Generating public/private rsa key pair.
@clubeagn
clubeagn / .htaccess
Created August 17, 2018 13:26
Cache google
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript