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
#!/system/bin/sh | |
cd /data/local/tmp | |
mount -o bind /dev /data/local/tmp/linux_root/dev | |
mount -o bind /dev/pts /data/local/tmp/linux_root/dev/pts | |
mount -t sysfs /sys /data/local/tmp/linux_root/sys | |
mount -t proc /proc /data/local/tmp/linux_root/proc | |
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/system/bin:/system/xbin | |
export TERM=xterm | |
export HOME=/root | |
chroot /data/local/tmp/linux_root /bin/bash |
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
// ignore_for_file: unnecessary_brace_in_string_interps | |
import 'dart:convert'; | |
//import 'package:utility/utility.dart'; | |
void main() { | |
var str = jsonToDart({ | |
"external_id": "external_id", | |
"status": "PENDING", |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Masonry Layout con CSS Grid</title> | |
</head> | |
<body> | |
<h1>Masonry Gallery</h1> |
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
function hidedata(message, start = 4, end = 2) { | |
var array = [...String(message)]; | |
var message = ""; | |
var num_start = start; | |
var num_end = array.length - end; | |
for (var i = 0; i < array.length; i++) { | |
var loop_data = array[i]; | |
if (i == num_end) { | |
num_end--; | |
message += loop_data |