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
<?php | |
namespace App\Enums; | |
use App\Enums\Concerns\InteractsWithFields; | |
use Filament\Support\Contracts\HasLabel; | |
enum BlockType: string implements HasLabel | |
{ | |
use InteractsWithFields; |
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
" vim-bootstrap 2022-01-13 05:34:55 | |
"***************************************************************************** | |
"" Vim-Plug core | |
"***************************************************************************** | |
let vimplug_exists=expand('~/.vim/autoload/plug.vim') | |
if has('win32')&&!has('win64') | |
let curl_exists=expand('C:\Windows\Sysnative\curl.exe') | |
else | |
let curl_exists=expand('curl') |
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Threading; | |
using Steamworks; | |
using UnityEngine; | |
using UnityEngine.Rendering; |
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
At the bottom. | |
<script src="https://browser.sentry-cdn.com/5.30.0/bundle.tracing.min.js" integrity="sha384-Wmp0Jx28tGfR086jrVwifMRcSWk8HQW4TWQ6XsNtI90pVj0dgkH9r2+pI3L2CLf6" crossorigin="anonymous"></script> | |
<script src="https://browser.sentry-cdn.com/5.30.0/ember.min.js" integrity="sha384-AoDWDCFzGgUlcjpTPIOucLHY0TcDkJISfQTounFvJC9id+SLfT+LMV/omYXeSxtk" crossorigin="anonymous"></script> |
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 Route from '@ember/routing/route'; | |
import { next } from '@ember/runloop'; | |
import { scrollToTarget } from 'postedin/helpers/scroll-to-target'; | |
export function initialize() { | |
Route.reopen({ | |
activate() { | |
this._super(); | |
window.scrollTo(0, 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
Generic related symbols extension that other extensions can use to add extra symbols. Great for moving between a js and template file. | |
Docblock and return type suggestions. | |
PHP paramter prefixes. | |
Something I miss from sublime: auto complete based on plain text in the current file. | |
Namespace importing. |
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 Ember from 'ember'; | |
export default Ember.Component.extend({ | |
}); |
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
[2018-05-23 15:39:14,373] [INFO] Startup: Welcome to Komodo IDE 11.0.2 build 90813 (platform linux-x86_64, running on Linux 4.16.8-1-zen version #1 ZEN SMP PREEMPT Wed May 9 11:24:56 UTC 2018) | |
[2018-05-23 15:39:14,373] [INFO] Startup: /usr/bin/python built on Mon Dec 4 10:20:45 2017 | |
[2018-05-23 15:39:14,409] [WARNING] koXMLPrefs: dePickleCache: Can't open file u'/opt/komodo-ide/lib/support/prefs.xmlc' | |
[2018-05-23 15:39:14,409] [WARNING] koXMLPrefs: the dePickledCache object was None | |
[2018-05-23 15:39:14,540] [INFO] koInitService: Setting LC_CTYPE to utf-8 | |
[2018-05-23 15:39:14,721] [WARNING] console-logger: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create (1) in resource://gre/modules/Preferences.jsm:381 | |
[2018-05-23 15:39:14,756] [WARNING] root: [object Object].logging has been converted to a CommonJS module; use require("ko/logging") instead (since Komodo 9.0.0a1). | |
@chrome://komodo/co |
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
Section "InputClass" | |
Identifier "Mouse Remap" | |
MatchProduct "Saitek Cyborg R.A.T.3 Mouse" | |
MatchDevicePath "/dev/input/event*" | |
Option "ButtonMapping" "1 2 3 4 5 0 0 8 9 0 0 0 13 14" | |
EndSection |
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 BrowserStorage = (function() { | |
/** | |
* Whether the current browser supports local storage as a way of storing data | |
* @var {Boolean} | |
*/ | |
var _hasLocalStorageSupport = (function() { | |
try { | |
return 'localStorage' in window && window['localStorage'] !== null; | |
} catch (e) { | |
return false; |
NewerOlder