This file contains 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
// função future | |
Future<List<Att>> _pegaAtt() async { | |
var dados = await socResp(); | |
var attDados; | |
if(dados is !Map){ | |
attDados = json.decode(dados); | |
} | |
List<Att> atts = []; | |
for (var a in attDados){ | |
Att att = Att( |
This file contains 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
import 'package:flutter/material.dart'; | |
import 'dart:async'; | |
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
import 'package:sac_soma/constant.dart'; | |
import '../conversas.dart'; | |
import 'package:sac_soma/app_data.dart'; | |
// import 'package:js/js.dart'; | |
// import 'package:js/js_util.dart'; | |
// import 'package:sac_soma/utils/sha256.js'; |
This file contains 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
{ | |
"pokemon": [{ | |
"id": 1, | |
"num": "001", | |
"name": "Bulbasaur", | |
"img": "http://www.serebii.net/pokemongo/pokemon/001.png", | |
"type": [ | |
"Grass", | |
"Poison" | |
], |
This file contains 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
sudo spctl --master-disable | |
sudo mount -uw / | |
sudo killall Finder | |
sudo mv ./*.kext /tmp | |
sudo chown -R root:wheel /tmp/*.kext | |
sudo kextload /tmp/*.kext |
This file contains 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
#!/bin/bash | |
yourfilenames=`ls *.png` | |
for eachfile in $yourfilenames | |
do | |
echo $eachfile | |
test="$(cat $eachfile | base64)" |
This file contains 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
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX | |
slmgr /skms 193.29.63.133 | |
slmgr /ato |
This file contains 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
sudo /usr/local/bin/ntfs-3g /dev/disk3s1 /Volumes/NTFS -o local -o allow_other -o auto_xattr -o auto_cache |
This file contains 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
#!/usr/bin/env bash | |
if [[ -f temp_slidy ]] | |
then | |
rm temp_slidy | |
fi | |
cd $HOME | |
mkdir $(pwd)/.temp_slidy |
This file contains 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
#!/usr/bin/env sh | |
############################################################################## | |
## | |
## avdmanager start up script for Linux | |
## | |
############################################################################## | |
# Attempt to set APP_HOME | |
# Resolve links: $0 may be a link |
This file contains 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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
export PATH=$HOME/runners:$PATH | |
export PATH=$HOME/flutter/bin:$PATH | |
export FLUTTER_ROOT=$HOME/flutter |
OlderNewer