https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-ubuntu#0
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 * as alt from 'alt'; | |
import * as native from 'natives'; | |
let NPCS = [ | |
{ "model": "-1022961931", "x": 147.86373901367188, "y": -1041.9560546875, "z": 28.5, "rot": 340 }, //fleeca | |
{ "model": "1767447799", "x": 149.3274688720703, "y": -1042.4176025390625, "z": 28.5, "rot": 340 }, //fleeca | |
{ "model": "1767447799", "x": 313.74066162109375, "y": -280.8527526855469, "z": 53.20, "rot": 340 }, //fleeca | |
{ "model": "-1022961931", "x": 312.052734375, "y": -280.4439697265625, "z": 53.20, "rot": 340 }, //fleeca | |
{ "model": "1055701597", "x": 127.43736267089844, "y": -224.3340606689453, "z": 54.5545654296875, "rot": 90 }, //urban clothes shop | |
]; |
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
// babel.config.js | |
module.exports = { | |
"presets": [ | |
"module:metro-react-native-babel-preset", | |
], | |
"plugins": [ | |
["module-resolver", { | |
"root": ["./src"], | |
"extensions": [".js", ".ts", ".tsx", ".ios.js", ".android.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
global.localStorage = { | |
getItem(key) { | |
return this[key]; | |
}, | |
setItem(key, value) { | |
this[key] = value; | |
}, | |
removeItem(key) { | |
delete this[key]; | |
}, |
NOTE: if you are using the docker without the http://azk.io installed, use
docker
instead ofadocker
.
adocker kill $(adocker ps -q | tr '\r\n' ' ')
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
<?php | |
/** | |
* @file | |
* Class PdfParser | |
* | |
* @author : Sebastien MALOT <[email protected]> | |
* @date : 2013-08-08 | |
* | |
* References : |
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
alias server='open http://localhost:8000 && python -m SimpleHTTPServer' |