Skip to content

Instantly share code, notes, and snippets.

View cardoso's full-sized avatar
🦀
https://linkedin.com/in/cardosodev

Matheus Cardoso cardoso

🦀
https://linkedin.com/in/cardosodev
View GitHub Profile
Handle Index FileName Volume Group Size Loop Fade In Fade Out Defer Inst Stop Inst Duration Compound Reverb Falloff Cache Async Only Priority Stream Stereo Tracking Solo Music Vol Block 1 Block 2 Block 3
ESOUND_NONE 0 none.wav 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_PASS 1 cursor\pass.wav 255 0 0 0 0 0 1 0 0 0 1 1 0 100 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_SELECT 2 cursor\select.wav 255 0 0 0 0 0 1 0 0 0 1 1 0 255 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_ERROR 3 cursor\windowopen.wav 255 0 0 0 0 1 0 0 0 0 1 0 0 100 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_BUTTON_CLICK 4 cursor\button.wav 255 0 0 0 0 0 1 0 0 0 1 1 0 100 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_POINT_DROP 5 cursor\pointdrop.wav 220 0 0 0 0 0 1 0 0 0 1 1 0 255 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_SWITCH 6 cursor\windowopen.wav 220 0 0 0 0 1 0 0 0 0 1 1 0 100 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_LEVEL_UP 7 cursor\levelup.wav 255 0 0 0 0 1 0 0 0 0 1 0 0 255 0 0 0 0 0 -1 -1 -1
ESOUND_CURSOR_LEVEL_UP_HIRELING 8 cursor\leveluphireling.wav 255 0 0 0 0 1 0 0 0 0 1 0
//
// MainState.swift
// ReduxMovieDB
//
// Created by Matheus Cardoso on 2/11/18.
// Copyright © 2018 Matheus Cardoso. All rights reserved.
//
import ReSwift
@cardoso
cardoso / RCMarkdownTest.txt
Last active September 13, 2017 02:12
RCMarkdownParserTest.txt
# success tests:
*bold* **bold**
_italic_ __italic__
~struck~ ~~struck~~
*_~bold and italic and struck~_*!! **__~~bold and italic and struck~~__**!!
![test](http://i.imgur.com/oErj2XR.png)
[test](http://rocket.chat)
# header 1
## header 2
@cardoso
cardoso / keybase.md
Created August 25, 2017 11:54
Keybase proof

Keybase proof

I hereby claim:

  • I am cardoso on github.
  • I am cardoso (https://keybase.io/cardoso) on keybase.
  • I have a public key whose fingerprint is 426D DC4C AC46 6D87 A570 78E1 71ED 83DF F333 87BF

To claim this, I am signing this object:

@cardoso
cardoso / Builder.swift
Created May 16, 2017 14:17
Builder Pattern
import Vapor
import Foundation
import FluentProvider
protocol Builder {
associatedtype T
typealias BuilderClosure = (Self) -> ()