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
import json | |
import clang.cindex | |
import collections | |
import os | |
import regex as re | |
import copy | |
filename = 'compile_commands.json' | |
with open(filename,'r') as fid: | |
compile_db = json.load(fid) |
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
token = token_top | |
#='/home/user/path/to/cert/certificate_file.crt' | |
import gitlab | |
import numpy as np | |
import regex | |
import datetime | |
gl = gitlab.Gitlab('https://personal.gitlab.com/', private_token=token,ssl_verify=False) | |
gl_epochs = gitlab.Gitlab('https://personal.gitlab.com/', private_token=token_top,ssl_verify=False) |
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 "openamp/remoteproc_loader.h" | |
#include <openamp/remoteproc.h> | |
#include <openamp/elf_loader.h> | |
#include <metal/alloc.h> | |
#include <metal/utilities.h> /* metal_container_of */ | |
int image_store_open(void *store, const char *path, const void **img_data); | |
void image_store_close(void *store); | |
int image_store_load(void *store, size_t offset, size_t size, | |
const void **data, |
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
-- Remove Duplicate Message v2.1 | |
-- An Applescript based on code by Barry Wainwright, 15th October 2010 | |
-- Detects and deletes duplicate messages within a selected folder | |
-- works on Message-ID header - uniquely identifying duplicates | |
-- Version History | |
-- v1.0 - 2002-03-18: First Release (For Microsoft Entourage) | |
-- v2.0 - 2010-10-07: modified to work with Microsoft Outlook for Mac | |
-- v2.1 - 2010-10-15: added final dialog to summarise messages removed | |
-- v2.2 - 2019-10-05: Added progress bar. (Sam Price) |
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
import os | |
from IPython.frontend.qt.console.rich_ipython_widget import RichIPythonWidget | |
from IPython.frontend.qt.console.ipython_widget import IPythonWidget | |
from IPython.frontend.qt.kernelmanager import QtKernelManager | |
from IPython.frontend.qt.inprocess_kernelmanager import QtInProcessKernelManager | |
from IPython.kernel.zmq.ipkernel import Kernel | |
from IPython.kernel.inprocess.ipkernel import InProcessKernel |