User contributions for Jimg
From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽
26 September 2023
- 18:3718:37, 26 September 2023 diff hist +935 m Git Hacks and Tricks →Cheat sheet items current
16 August 2023
- 18:4518:45, 16 August 2023 diff hist +8 m What is faster? stringstream string + String No edit summary current
- 18:4318:43, 16 August 2023 diff hist +4 m What is faster? stringstream string + String No edit summary
- 18:4218:42, 16 August 2023 diff hist −60 m What is faster? stringstream string + String No edit summary
- 14:5714:57, 16 August 2023 diff hist +1,446 N What is faster? stringstream string + String Created page with "That is: I have two string objects:string str_1, str_2. I want to concatenate to them. I can use two methods: method 1: <pre> std::stringstream ss; //std::string str_1("hello"); //std::string str_2("world"); ss << "hello"<< "world"; const std::string dst_str = std::move(ss.str()); </pre> method 2: <pre> std::string str_1("hello"); std::string str_2("world"); const std::string dst_str = str_1 + str_2; </pre> Because the string's buffer is read only, when you chan..."
- 14:5114:51, 16 August 2023 diff hist +51 m Developer Info →C++ Coding Information current
23 May 2023
16 May 2023
- 21:1421:14, 16 May 2023 diff hist −99 m Better Singleton classes C++ →What goes in the implementation current
- 21:1221:12, 16 May 2023 diff hist +44 m Better Singleton classes C++ →What goes in the implementation
19 April 2023
- 19:4019:40, 19 April 2023 diff hist +4 m How to download test logs from a Travis build No edit summary current
- 19:3819:38, 19 April 2023 diff hist +520 m How to download test logs from a Travis build No edit summary
- 19:3319:33, 19 April 2023 diff hist +13 m How to download test logs from a Travis build No edit summary
- 19:3319:33, 19 April 2023 diff hist +49 m How to download test logs from a Travis build No edit summary
- 19:3219:32, 19 April 2023 diff hist 0 m How to download test logs from a Travis build No edit summary
- 19:3119:31, 19 April 2023 diff hist +157 m How to download test logs from a Travis build No edit summary
- 19:2919:29, 19 April 2023 diff hist 0 N File:Travis test log line 2023-04-19.png No edit summary current
- 19:2819:28, 19 April 2023 diff hist +2 m How to download test logs from a Travis build No edit summary
- 19:2819:28, 19 April 2023 diff hist +2 m How to download test logs from a Travis build No edit summary
- 19:2719:27, 19 April 2023 diff hist +824 N How to download test logs from a Travis build Created page with "All of our CI/CD builds for both libdap4 and the BES run tests and save the results of the tests to an S3 bucket named **opendap.travis.tests**. Here's how to download the collected log files from those tests. # Scroll to the end of one of the travis builds for these projects. # At the very end you will see a line that says ... # Expand that line by clicking the triangle to the left. # Copy the S3 URL. # Using the AWS Command Line Tool, copy the file to your local com..."
- 19:1819:18, 19 April 2023 diff hist +271 m Developer Info →Software process issues: