Open Source React Native API Reimplementation
This is a reversed engineered API endpoint list from their React Native android app.
Full source code: https://fn.lc/s/dropbike.js
API base: https://dropbike.herokuapp.com
Open Source React Native API Reimplementation
This is a reversed engineered API endpoint list from their React Native android app.
Full source code: https://fn.lc/s/dropbike.js
API base: https://dropbike.herokuapp.com
tristanr@tristanr-arch ~/D/zmqtest> go build -v .; and sudo ./zmqtest | |
2019/02/05 11:55:44 zmqtest.go:93: sent 0 | |
2019/02/05 11:55:44 zmqtest.go:124: received 0 | |
2019/02/05 11:55:44 zmqtest.go:93: sent 100000 | |
2019/02/05 11:55:44 zmqtest.go:124: received 100000 | |
2019/02/05 11:55:44 zmqtest.go:93: sent 200000 | |
2019/02/05 11:55:44 zmqtest.go:93: sent 300000 | |
2019/02/05 11:55:44 zmqtest.go:124: received 200000 | |
2019/02/05 11:55:44 zmqtest.go:93: sent 400000 | |
2019/02/05 11:55:44 zmqtest.go:93: sent 500000 |
package main | |
import ( | |
"bytes" | |
"encoding/binary" | |
"flag" | |
"io" | |
"io/ioutil" | |
"log" | |
"os" |
namespace fbs.ap; | |
table Root { | |
layers : [Layer]; | |
} | |
table Layer { | |
name: string; | |
weights : [Weights]; | |
} |
package main | |
import ( | |
"archive/zip" | |
"io" | |
"log" | |
"os" | |
"path/filepath" | |
"strings" |
# load a kallsyms table | |
#@author d4l3k | |
#@category kernelscripts | |
USER_DEFINED = ghidra.program.model.symbol.SourceType.USER_DEFINED | |
baseAddress = currentProgram.getImageBase() | |
print("base address", baseAddress) |
# Copyright (c) Meta Platforms, Inc. and affiliates. | |
# All rights reserved. | |
# | |
# This source code is licensed under the BSD-style license found in the | |
# LICENSE file in the root directory of this source tree. | |
""" | |
For distributed training, TorchX relies on the scheduler's gang scheduling | |
capabilities to schedule ``n`` copies of nodes. Once launched, the application | |
is expected to be written in a way that leverages this topology, for instance, |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
https://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and limitations under the License. |
Traceback (most recent call last): | |
File "/home/rice/Developer/test_torch_export.py", line 11, in <module> | |
compiled = export(foo, args=tuple()) | |
^^^^^^^^^^^^^^^^^^^^^^^^^ | |
File "/home/rice/Developer/pytorch/torch/export/__init__.py", line 440, in export | |
return export__RC__(f, args, kwargs, dynamic_shapes=dynamic_shapes) | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
File "/home/rice/Developer/pytorch/torch/_export/__init__.py", line 252, in export__RC__ | |
return _export(f, args, kwargs, constraints=constraints) | |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |