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
{"name":"Laravel","settings":"{\"settings\":\"{\\r\\n \\\"window.commandCenter\\\": 1,\\r\\n \\\"workbench.sideBar.location\\\": \\\"right\\\",\\r\\n \\\"git.openRepositoryInParentFolders\\\": \\\"always\\\",\\r\\n \\\"workbench.iconTheme\\\": \\\"symbols\\\",\\r\\n \\\"workbench.colorTheme\\\": \\\"oh-lucy\\\",\\r\\n \\\"editor.fontFamily\\\": \\\"DankMono Nerd Font, Consolas, 'Courier New', monospace\\\",\\r\\n \\\"editor.mouseWheelZoom\\\": true,\\r\\n \\\"editor.lineHeight\\\": 2.8,\\r\\n \\\"editor.cursorStyle\\\": \\\"line-thin\\\",\\r\\n \\\"editor.matchBrackets\\\": \\\"never\\\",\\r\\n \\\"editor.guides.bracketPairs\\\": \\\"active\\\",\\r\\n \\\"editor.fontLigatures\\\": true,\\r\\n \\\"editor.stickyScroll.enabled\\\": false,\\r\\n \\\"[javascript]\\\": {\\r\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\r\\n },\\r\\n \\\"[php]\\\": {\\r\\n \\\"editor.defaultFormatter\\\": \\\"bmewburn.vscode-intelephense-client\\\"\\ |
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
{"name":"VS_Code-Default","settings":"{\"settings\":\"{\\r\\n \\\"window.commandCenter\\\": 1,\\r\\n \\\"workbench.sideBar.location\\\": \\\"right\\\",\\r\\n \\\"git.openRepositoryInParentFolders\\\": \\\"always\\\",\\r\\n \\\"workbench.iconTheme\\\": \\\"symbols\\\",\\r\\n \\\"workbench.colorTheme\\\": \\\"oh-lucy\\\",\\r\\n \\\"editor.fontFamily\\\": \\\"DankMono Nerd Font, Consolas, 'Courier New', monospace\\\",\\r\\n \\\"editor.mouseWheelZoom\\\": true,\\r\\n \\\"editor.lineHeight\\\": 2.8,\\r\\n \\\"editor.cursorStyle\\\": \\\"line-thin\\\",\\r\\n \\\"editor.matchBrackets\\\": \\\"never\\\",\\r\\n \\\"editor.guides.bracketPairs\\\": \\\"active\\\",\\r\\n \\\"editor.fontLigatures\\\": true,\\r\\n \\\"editor.stickyScroll.enabled\\\": false,\\r\\n}\"}","extensions":"[{\"identifier\":{\"id\":\"eamodio.gitlens\",\"uuid\":\"4de763bd-505d-4978-9575-2b7696ecf94e\"},\"displayName\":\"GitLens — Git supercharged\"},{\"identifier\":{\"id\":\"hermitter.oh-lucy-vscode\",\"uuid\": |
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
module.exports = { | |
root: true, | |
env: { | |
browser: true, | |
node: true, | |
}, | |
parserOptions: { | |
parser: '@babel/eslint-parser', | |
requireConfigFile: 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
https://github.com/nuxt-community/auth-module/issues/258 |
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
[Render] | |
Capability=DirectX12 | |
[Graphics] | |
EnableUserSettings=TRUE | |
GlobalSettings=Custom | |
MaxFramerate=30 | |
TextureQuality=LOWEST | |
ShaderQuality=STANDARD | |
LightingQuality=LOWEST | |
EffectQuality=STANDARD |
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 | |
// add custom global helper function here | |
use Illuminate\Support\Facades\Vite as ViteFacade; | |
if (!function_exists('module_vite_assets_unique_hot_path')) { | |
/** | |
* Support for vite assets with unique hot path | |
* |
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 | |
// Function to convert a value from one unit to another | |
function convert_unit($value, $from_unit, $to_unit) { | |
// Conversion factors | |
$conversions = [ | |
'meter' => [ | |
'inch' => 39.3700787, | |
'foot' => 3.2808399, | |
'yard' => 1.0936133, |
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\Providers; | |
use Illuminate\Support\Facades\Blade; | |
use Illuminate\Support\ServiceProvider; | |
class DirectiveServiceProvider extends ServiceProvider | |
{ | |
/** |
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
@BindingAdapter( | |
value = ["android:custom_setAdapter", "android:custom_showItemDivider"], | |
requireAll = false | |
) | |
fun RecyclerView.bindRecyclerViewAdapter( | |
adapter: RecyclerView.Adapter<*>, | |
showItemDivider: Boolean = false | |
) { | |
this.setHasFixedSize(true) | |
this.adapter = adapter |
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 android.view.LayoutInflater | |
import android.view.ViewGroup | |
import android.widget.ImageView | |
import androidx.core.content.ContextCompat | |
import androidx.recyclerview.widget.AsyncListDiffer | |
import androidx.recyclerview.widget.DiffUtil | |
import androidx.recyclerview.widget.RecyclerView | |
class QuestionBankListRecyclerViewAdapter( |
NewerOlder