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
ββββββββββββββββββββββββββββββββββββββββββββββββΔΏ | |
β Boot Menu List β | |
ββββββββββββββββββββββββββββββββββββββββββββββββΔ΄ | |
β -> 1 'LoongOS (2k300)' β | |
β β | |
β β | |
β β | |
β β | |
β β | |
β β |
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/resh | |
# This is a Unix shell, what's fun about it? | |
HELLO='Hello,' | |
CURRENT_VERSION=4 | |
# But here's a twist | |
# I know you hate C++ style lambda capture | |
resh [&] { | |
// But now you code in a high level scripting language |
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
// SPDX-License-Identifier: MIT | |
#include <algorithm> | |
#include <opencv2/opencv.hpp> | |
int main(int argc, char **argv) { | |
cv::Mat img = cv::imread(argv[1]); | |
cv::Mat img_out(img.rows, img.cols, img.type()); | |
const auto maxrow = img.rows, maxcol = img.cols; |
OlderNewer