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/sh | |
| echo "Trying to install xkbset ..." | |
| sudo apt-get install xkbset | |
| echo "\nMaking mouse keys fasterrrr...." | |
| xkbset ma 60 10 10 5 2 | |
| echo "Done" |
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
| { | |
| data: [{ | |
| "meta": { | |
| "columnNames": { | |
| "x": "A", | |
| "y": "B", | |
| "z": "C" | |
| } | |
| }, | |
| "mode": "markers", |
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
| #include <fstream> | |
| #include <iostream> | |
| int main(int argc, char** argv) | |
| { | |
| if(argc >= 2) | |
| { | |
| std::ifstream json(argv[1]); | |
| std::ifstream prefix_html("prefix_html"); |
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
| Scanning dependencies of target test_jwt_es | |
| [ 5%] Building CXX object tests/CMakeFiles/test_jwt_es.dir/test_jwt_es.cc.o | |
| [ 10%] Linking CXX executable test_jwt_es | |
| CMakeFiles/test_jwt_es.dir/test_jwt_es.cc.o: In function `ESAlgo_ES256EncodingDecodingTest_Test::TestBody()': | |
| test_jwt_es.cc:(.text+0x1a19): undefined reference to `testing::Message::Message()' | |
| test_jwt_es.cc:(.text+0x1a44): undefined reference to `testing::internal::GetBoolAssertionFailureMessage[abi:cxx11](testing::AssertionResult const&, char const*, char const*, char const*)' | |
| test_jwt_es.cc:(.text+0x1a79): undefined reference to `testing::internal::AssertHelper::AssertHelper(testing::TestPartResult::Type, char const*, int, char const*)' | |
| test_jwt_es.cc:(.text+0x1a92): undefined reference to `testing::internal::AssertHelper::operator=(testing::Message const&) const' | |
| test_jwt_es.cc:(.text+0x1aa1): undefined reference to `testing::internal::AssertHelper::~AssertHelper()' | |
| test_jwt_es.cc:(.text+0x1cf0): undefined reference to `testing::Message::Messag |
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
| 10:57:50.161 [INFO] [org.gradle.BuildLogger] Starting Build | |
| 10:57:50.166 [DEBUG] [org.gradle.BuildLogger] Gradle user home: /home/sudo-panda/.gradle | |
| 10:57:50.168 [DEBUG] [org.gradle.BuildLogger] Current dir: /home/sudo-panda/Documents/PRISM/gradel | |
| 10:57:50.168 [DEBUG] [org.gradle.BuildLogger] Settings file: null | |
| 10:57:50.168 [DEBUG] [org.gradle.BuildLogger] Build file: null | |
| 10:57:50.171 [DEBUG] [org.gradle.initialization.buildsrc.BuildSourceBuilder] Starting to build the build sources. | |
| 10:57:50.171 [DEBUG] [org.gradle.initialization.buildsrc.BuildSourceBuilder] Gradle source dir does not exist. We leave. | |
| 10:57:50.172 [DEBUG] [org.gradle.initialization.DefaultGradlePropertiesLoader] Found env project properties: [] | |
| 10:57:50.173 [DEBUG] [org.gradle.initialization.DefaultGradlePropertiesLoader] Found system project properties: [] | |
| 10:57:50.205 [DEBUG] [org.gradle.initialization.ScriptEvaluatingSettingsProcessor] Timing: Processing settings took: 0.032 secs |
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
| std::ios_base::sync_with_stdio(false); | |
| std::cin.tie(NULL); |
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
| void fastscan(int &x) | |
| { | |
| bool neg=false; | |
| register int c; | |
| x =0; | |
| c=getchar(); | |
| if(c=='-') | |
| { | |
| neg = true; | |
| c=getchar(); |
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
| std::vector<int> v; | |
| v.reserve(max); |
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
| s.append("appended string"); |
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
| s += "appended string"; |
OlderNewer