New pages

New pages
Hide registered users | Show bots | Hide redirects
  • 16:31, 17 October 2024Table Tennis (hist | edit) ‎[568 bytes]Yba (talk | contribs) (Created page with "== Equipment == === Shoes === ==== Owned ==== * Mizuno Wave Medal 7 (43) - Comfortable and good quality. Ok look. * Butterfly Lezoline (US10) - Ok quality * Asics Gel Rocket 11 ==== Want to try ==== * Mizono Wave Medal Neo === Blades === ==== Owned ==== * DHS Long 5 X * Butterfly Viscaria ==== Want to try ==== * Zhangjike Super ZLC * Fangzhengdong ALC * DHS 968 === Rubbers === ==== Owned ==== * DHS Hurricane 3 - good for forehand * Butterfly Rozena - less gr...") Tag: Visual edit
  • 13:25, 10 October 2024Windows (hist | edit) ‎[179 bytes]Yba (talk | contribs) (Created page with "== Delete system folders == <syntaxhighlight lang="bat" line="1"> takeown /f "d:\program files" /R </syntaxhighlight>") Tag: Visual edit
  • 11:55, 28 August 2024Cpp (hist | edit) ‎[660 bytes]Yba (talk | contribs) (Created page with "== Move == <syntaxhighlight lang="c++"> // Online C++ compiler to run C++ program online #include <iostream> #include <optional> using namespace std; class A { public: A() { cout << "A's constructor: " << this << endl; } A(const A& a) { cout << "A's copy constructor: " <<this << " form " << &a << endl; } A(A&& a) { cout << "A's move constructor: " <<this << " form " << &a << endl; } A& operator=(const A& a) { cout << "A's assignment" <<this << " for...") Tag: 2017 source edit
  • 15:07, 13 August 2024Route (hist | edit) ‎[261 bytes]Yba (talk | contribs) (Created page with "==== Windows Show Route ==== <syntaxhighlight lang="powershell"> route print </syntaxhighlight> ==== Add Route ==== <syntaxhighlight lang="powershell"> route add 1.1.1.1 mask 255.255.255.255 10.1.0.2 if 76 </syntaxhighlight>") Tag: 2017 source edit
  • 18:12, 9 August 2024Yba (hist | edit) ‎[72 bytes]Yba (talk | contribs) (Created page with "== About == Website: https://yba.dev Github: https://github.com/ibigbug") Tag: Visual edit
  • 11:38, 7 August 2024Bazel (hist | edit) ‎[212 bytes]Yba (talk | contribs) (Created page with "== Run test with environment variable == <syntaxhighlight lang="bash"> bzl test //hello:hello --test_output=all --test_arg=TEST_NAME --test_env=GOOGLE_APPLICATION_CREDENTIALS=/tmp/gcp-cred.json </syntaxhighlight>") Tag: Visual edit
  • 19:59, 5 August 2024Graylog (hist | edit) ‎[1,466 bytes]Yba (talk | contribs) (Created page with "Index read only <syntaxhighlight lang="bash"> curl -XPUT -H 'Content-Type: application/json' http://localhost:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}' </syntaxhighlight>") Tag: 2017 source edit
  • 16:58, 30 July 2024MediaWiki (hist | edit) ‎[376 bytes]Yba (talk | contribs) (Created page with "== Using Cloudflare R2 == <syntaxhighlight lang="php" line> //The url used for the API (PutObject, etc.) $wgFileBackends['s3']['endpoint'] = 'https://my-custom-url'; //The url used for showing images. $1 is translated to the bucket name. $wgAWSBucketDomain = '$1.my-custom-url'; </syntaxhighlight> source: https://github.com/edwardspec/mediawiki-aws-s3/blob/master/README.md") Tag: Visual edit: Switched
  • 16:06, 30 July 2024Git (hist | edit) ‎[82 bytes]Yba (talk | contribs) (Created page with "==== Disable the output pager ==== <code>git config --global core.pager cat</code>") Tag: Visual edit