View server.lua
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
ESX = nil | |
local Categories, Vehicles = {}, {} | |
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end) | |
TriggerEvent('esx_phone:registerNumber', 'cardealer', _U('dealer_customers'), false, false) | |
TriggerEvent('esx_society:registerSociety', 'cardealer', _U('car_dealer'), 'society_polydealer', 'society_polydealer', 'society_polydealer', {type = 'private'}) | |
Citizen.CreateThread(function() | |
local char = Config.PlateLetters |
View neural_net_3layer.py
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 pandas as pd | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import sklearn | |
import sklearn.datasets | |
import sklearn.linear_model | |
import matplotlib | |
get_ipython().run_line_magic('matplotlib', 'inline') | |
matplotlib.rcParams['figure.figsize'] = (10.0, 8.0) |
View AndroidManifest.xml
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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="uk.zelware.zelchat" > | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" |