This file contains 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
2021-09-01 10:20:17.0000000000 ./Leona/4 month/20210901_102014.jpg | |
2021-09-01 10:20:19.0000000000 ./Leona/4 month/20210901_102017.jpg | |
2021-09-01 10:20:25.0000000000 ./Leona/4 month/20210901_102023.jpg | |
2021-09-01 10:20:26.0000000000 ./Leona/4 month/20210901_102025.jpg | |
2021-09-01 10:20:27.0000000000 ./Leona/4 month/20210901_102026.jpg | |
2021-09-01 12:14:23.0000000000 ./Leona/4 month/20210901_121325.mp4 | |
2021-09-01 12:14:40.0000000000 ./Leona/4 month/20210901_121438.jpg | |
2021-09-01 12:14:41.0000000000 ./Leona/4 month/20210901_121439.jpg | |
2021-09-01 12:17:18.0000000000 ./Leona/4 month/20210901_121530.mp4 | |
2021-09-01 13:45:08.0000000000 ./Leona/4 month/20210901_134505.jpg |
This file contains 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
[2022-06-13 08:35:22:476] [distant_commlink] [info] Build info: {"os":"Mac","version":"1.2.1","build":"2","branch":"release-mac-1.2.1","webhid":true} pid: 12189 |
This file contains 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 <stdio.h> | |
#include <dbus/dbus.h> | |
#include <dbus/dbus-glib-lowlevel.h> | |
#include <dbus/dbus-glib.h> | |
#include <glib.h> | |
static DBusHandlerResult dbus_filter (DBusConnection *connection, DBusMessage *message, void *user_data) | |
{ | |
printf("dbus_filter called"); |
This file contains 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
struct Dimensions | |
{ | |
static constexpr int square = 1; | |
static constexpr float landscape = 1.91f; | |
static constexpr float vertical = 0.8f; | |
Dimensions(int width_, int height_) | |
: | |
ratio(ComputeRatio(width_, height_)), | |
width(width_), |
This file contains 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 "tests/cefsimple/simple_app.h" | |
#if defined(CEF_X11) | |
#include <X11/Xlib.h> | |
#include <X11/Xutil.h> | |
#endif | |
#include "include/base/cef_logging.h" | |
#include "include/cef_command_line.h" | |
#include <future> |
This file contains 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
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights | |
// reserved. Use of this source code is governed by a BSD-style license that | |
// can be found in the LICENSE file. | |
#include "tests/cefsimple/simple_app.h" | |
#include <string> | |
#include "include/cef_browser.h" | |
#include "include/cef_command_line.h" | |
#include "include/views/cef_browser_view.h" | |
#include "include/views/cef_window.h" | |
#include "include/wrapper/cef_helpers.h" |
This file contains 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
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights | |
// reserved. Use of this source code is governed by a BSD-style license that | |
// can be found in the LICENSE file. | |
#ifndef CEF_TESTS_CEFSIMPLE_SIMPLE_APP_H_ | |
#define CEF_TESTS_CEFSIMPLE_SIMPLE_APP_H_ | |
#include "include/cef_app.h" | |
// Implement application-level callbacks for the browser process. | |
class SimpleApp : public CefApp, public CefBrowserProcessHandler { | |
public: | |
SimpleApp(uint64_t parent); |
This file contains 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
bool ShouldSwap(std::vector<int> list, int i) | |
{ | |
bool more_than_one_val = (list.size() > 1); | |
bool last_value_bigger = (list.back() > i); | |
bool second_last_smaller = (list[list.size() - 2] < i); | |
return (more_than_one_val && last_value_bigger && second_last_smaller); | |
} | |
void TestLists() |
This file contains 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
WM_GETMINMAXINFO | |
WM_NCCREATE | |
WM_NCCALCSIZE | |
WM_CREATE | |
WM_SHOWWINDOW | |
WM_WINDOWPOSCHANGING | |
WM_NCPAINT | |
WM_ERASEBKGND | |
WM_WINDOWPOSCHANGED | |
WM_SIZE |
This file contains 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
#pragma once | |
#include <string> | |
inline std::string get_window_message(uint32_t code) | |
{ | |
switch (code) | |
{ |
NewerOlder