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
openapi: 3.0.0 | |
paths: | |
/contacts/{id}: | |
get: | |
operationId: ContactController_findContactById | |
parameters: | |
- name: id | |
required: true | |
in: path | |
schema: |
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
• Adding Storybook support to your "Svelte" app | |
yarn add v1.22.19 | |
warning package.json: No license field | |
info No lockfile found. | |
warning [email protected]: No license field | |
[1/4] 🔍 Resolving packages... | |
warning storybook > @storybook/cli > jscodeshift > micromatch > snapdragon > [email protected]: See https://github.com/lydell/source-map-resolve#deprecated | |
warning storybook > @storybook/cli > jscodeshift > micromatch > snapdragon > source-map-resolve > [email protected]: https://github.com/lydell/resolve-url#deprecated | |
warning storybook > @storybook/cli > jscodeshift > micromatch > snapdragon > source-map-resolve > [email protected]: See https://github.com/lydell/source-map-url#deprecated | |
warning storybook > @storybook/cli > jscodeshift > micromatch > snapdragon > source-map-resolve > [email protected]: Please see https://github.com/lydell/urix#deprecated |
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
"" Source your .vimrc | |
"source ~/.vimrc | |
"" -- Suggested options -- | |
" Show a few lines of context around the cursor. Note that this makes the | |
" text scroll if you mouse-click near the start or end of the window. | |
"set number relativenumber | |
set idearefactormode=keep | |
set ideajoin | |
set incsearch |
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/bash | |
# | |
# Whitelist here all domains that need to go through openfortivpn | |
# Domains and IPs are separated by a space | |
# | |
ips='192.168.2.217 192.168.29.151' | |
domains='example.com example.fr' | |
let resolved | |
for domain in $domains; do |
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 <bits/stdc++.h> | |
using namespace std; | |
struct Result{ | |
char* output[100]; | |
}; | |
Result res; | |
void autocorrect(char *input1,char *input2) | |
{ | |
int str_length = 0; |
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
ObjectModel{ | |
id: centermodel | |
Utils.IconToolButton { | |
id: randomBtn | |
size: VLCStyle.icon_large | |
checked: mainPlaylistController.random | |
text: VLCIcons.shuffle_on | |
onClicked: mainPlaylistController.toggleRandom() | |
KeyNavigation.right: prevBtn |
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
rohan@asus ~/D/V/t/vlc> ./vlc | |
VLC media player 4.0.0-dev Otto Chriek (revision 94036d2bdb) | |
[00005596575dcd90] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface. | |
Failed to open VDPAU backend libvdpau_i965.so: cannot open shared object file: No such file or directory | |
libva info: VA-API version 1.1.0 | |
libva info: va_getDriverName() returns 0 | |
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so | |
libva info: Found init function __vaDriverInit_1_1 | |
libva info: va_openDriver() returns 0 | |
[00007fcfb181fae0] vaapi generic: Using Intel i965 driver for Intel(R) Kaby Lake - 2.1.0 |
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 qmake (3.1) Sat Mar 16 23:06:36 2019 | |
###################################################################### | |
TEMPLATE = app | |
TARGET = vlc | |
INCLUDEPATH += . | |
#PKG_CONFIG = PKG_CONFIG_PATH=$$(QTDIR)/lib/pkgconfig pkg-config | |
#CONFIG += link_pkgconfig | |
#PKGCONFIG += Qt5Core |
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
-- logger module started -- | |
main debug: VLC media player - 4.0.0-dev Otto Chriek | |
main debug: Copyright © 1996-2019 the VideoLAN team | |
main debug: revision 4.0.0-dev-6786-gace7fd111f | |
main debug: configured with ./configure | |
main debug: searching plug-in modules | |
main debug: loading plugins cache file /home/rohan/Documents/VLC-Development/vlc/modules/plugins/plugins.dat | |
main warning: cannot read /home/rohan/Documents/VLC-Development/vlc/modules/plugins/plugins.dat: No such file or directory | |
main debug: recursively browsing `/home/rohan/Documents/VLC-Development/vlc/modules/plugins' | |
main debug: loading plugins cache file /home/rohan/Documents/VLC-Development/vlc/modules/plugins.dat |
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
PASS: test_libvlc_core | |
PASS: test_libvlc_equalizer | |
PASS: test_libvlc_media | |
PASS: test_libvlc_media_list | |
PASS: test_libvlc_media_player | |
PASS: test_libvlc_media_discoverer | |
PASS: test_libvlc_renderer_discoverer | |
PASS: test_libvlc_slaves | |
PASS: test_src_config_chain | |
PASS: test_src_misc_variables |