Complete systematic analysis and reference guide for AI assistants working with PlantUML
md2pptx is a tool that converts Markdown files to PowerPoint presentations. This cheat sheet provides comprehensive syntax and features for creating presentations with md2pptx.
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
/// This is a special string which indicates that no response will be received | |
/// for an RPC. | |
#[derive(Clone, PartialEq, ::prost::Message)] | |
pub struct StreamingNoResponse {} | |
/// Generic Ack Message | |
#[derive(Clone, PartialEq, ::prost::Message)] | |
pub struct Ack {} | |
/// request the list of available plugins | |
#[derive(Clone, PartialEq, ::prost::Message)] | |
pub struct PluginListRequest {} |
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
$ cargo test | |
running 134 tests | |
test ffi::bindgen_test_layout_FIT_ANT_RX_MESG_DEF ... ok | |
test ffi::bindgen_test_layout_FIT_ACTIVITY_MESG_DEF ... ok | |
test ffi::bindgen_test_layout_FIT_ACTIVITY_MESG ... FAILED | |
test ffi::bindgen_test_layout_FIT_ANT_RX_MESG ... FAILED | |
test ffi::bindgen_test_layout_FIT_ANT_TX_MESG ... FAILED | |
test ffi::bindgen_test_layout_FIT_ANT_TX_MESG_DEF ... ok | |
test ffi::bindgen_test_layout_FIT_BIKE_PROFILE_MESG_DEF ... ok |
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
/* automatically generated by rust-bindgen */ | |
#[repr(C)] | |
pub struct __BindgenUnionField<T>(::std::marker::PhantomData<T>); | |
impl <T> __BindgenUnionField<T> { | |
#[inline] | |
pub fn new() -> Self { __BindgenUnionField(::std::marker::PhantomData) } | |
#[inline] | |
pub unsafe fn as_ref(&self) -> &T { ::std::mem::transmute(self) } | |
#[inline] |
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
from __future__ import division | |
import multiprocessing | |
from multiprocessing.pool import Pool | |
import exifread | |
import arrow | |
import glob | |
import os | |
import records | |
import shutil | |
from PIL import Image |
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
from __future__ import division | |
import multiprocessing | |
from multiprocessing.pool import Pool | |
import exifread | |
import arrow | |
import glob | |
import os | |
import records | |
import shutil | |
from PIL import Image |
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
var TrackDownloadPanel = React.createClass({ | |
propTypes: { | |
track: React.PropTypes.object | |
}, | |
render: function () { | |
var audioUrls = _.get(this.props.track, "audio_urls", {}) | |
return ( | |
<div className="track-download__container"> | |
<Button className="track-download__button" href={audioUrls.stream}>Download (Stream)</Button> | |
<Button className="track-download__button" href={audioUrls.archive}>Download (Archive)</Button> |
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
class Base(object): | |
def test(self, text): | |
return 'base, ' + text | |
class One(object): | |
def test(self, text): | |
return 'one, ' + super(One, self).test(text) | |
class Two(object): | |
def test(self, text): |
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
Traceback (most recent call last): | |
File "manage.py", line 18, in <module> | |
execute_from_command_line(sys.argv) | |
File "/Users/jacob/.virtualenvs/gizmag/lib/python2.7/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line | |
utility.execute() | |
File "/Users/jacob/.virtualenvs/gizmag/lib/python2.7/site-packages/django/core/management/__init__.py", line 377, in execute | |
self.fetch_command(subcommand).run_from_argv(self.argv) | |
File "/Users/jacob/.virtualenvs/gizmag/lib/python2.7/site-packages/django/core/management/base.py", line 288, in run_from_argv | |
self.execute(*args, **options.__dict__) | |
File "/Users/jacob/.virtualenvs/gizmag/lib/python2.7/site-packages/django/core/management/base.py", line 338, in execute |
NewerOlder