This file contains hidden or 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
| #!/bin/bash | |
| fuser 9443/tcp | |
| fuser 9080/tcp | |
| fuser 8878/tcp | |
| fuser 8879/tcp | |
| fuser 9060/tcp | |
| kill -9 `ps -ef | grep java | awk -F" " '{print $2}'` |
This file contains hidden or 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
| rs.slaveOk(); | |
| db.getCollectionNames().forEach(function(coll) { | |
| db[coll].getIndexes().forEach(function(index) { | |
| if ("_id_" !== index.name) { | |
| print("db." + coll + ".createIndex(" + tojson(index.key) + ")"); | |
| } | |
| }); | |
| }); |
This file contains hidden or 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
| #if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}#end | |
| import androidx.recyclerview.widget.RecyclerView | |
| import android.view.LayoutInflater | |
| import android.view.View | |
| import android.view.ViewGroup | |
| import androidx.recyclerview.widget.AsyncListDiffer | |
| import androidx.recyclerview.widget.DiffUtil | |
| #parse("File Header.java") |
This file contains hidden or 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
| class Main { | |
| static void calc_err(float xb, float x) { | |
| float erroAbsoluto = Math.abs(x - xb); | |
| float erroRelativo = Math.abs(erroAbsoluto/xb); | |
| System.out.printf("%.5f %.5f\n", erroAbsoluto, erroRelativo); | |
| } | |
| public static void main(String[] args) { |
OlderNewer