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
@babylonjs_inspector.js?v=f87d2864:60895 Download the React DevTools for a better development experience: https://reactjs.org/link/react-devtools | |
@babylonjs_inspector.js?v=f87d2864:134076 Download the React DevTools for a better development experience: https://reactjs.org/link/react-devtools | |
sounds.ts:17 The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu | |
setupAudioContext @ howler.js?v=d42e0af2:1770 | |
init @ howler.js?v=d42e0af2:393 | |
(anonymous) @ howler.js?v=d42e0af2:1904 | |
Howl2 @ howler.js?v=d42e0af2:382 | |
createMenuSounds @ sounds.ts:17 | |
Splash @ splash.svelte:11 | |
(anonymous) @ chunk-MTPAUIYB.js?v=dd900c11:283 |
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
const inmuebles = [ | |
{ | |
id: 1, | |
... | |
}, | |
{ | |
id: 2, | |
... | |
}, | |
{ |
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 RNFS from 'react-native-fs'; | |
module.exports = { | |
read: (source) => | |
{ | |
return RNFS.exists(source).then((fileExists) => | |
{ | |
if (fileExists) | |
{ | |
return RNFS.readFile(source).then((data) => JSON.parse(data)); |
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
--- | |
- name: restart nginx | |
service: name=nginx enabled=yes state=restarted |
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 | |
echo "########################################" | |
echo "Update the box" | |
echo "########################################" | |
# Update apt cache | |
sudo apt-get update | |
echo "########################################" |