This file contains 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
-- T r u e S h a d e -- | |
-- set( "sim/private/controls/caps/dynamic_shadow", 1.00) | |
set( "sim/private/controls/clouds/cloud_shadow_lighten_ratio", 1.00) | |
set( "sim/private/controls/clouds/shad_alpha_dry", 0.9 ) | |
set( "sim/private/controls/clouds/shad_alpha_wet", 1.90 ) | |
set( "sim/private/controls/clouds/shad_radius", 0.70 ) | |
set( "sim/private/controls/clouds/shadow_size", 2048.0 ) |
This file contains 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
get_code() | |
{ | |
folder="$1" | |
branch_name="$2" | |
cd $folder | |
git reset --hard HEAD | |
git clean . -fdx | |
git fetch | |
git checkout -b $branch_name origin/$branch_name | |
git checkout $branch_name |
This file contains 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
New-Item -Path "C:\Temp" -Type Directory | |
Dism /Mount-Image /ImageFile:"E:\sources\boot.wim" /Index:2 /MountDir:"C:\Temp" | |
$cabs = Get-ChildItem "*.cab" -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs" | |
foreach($cab in $cabs) { | |
Dism /Add-Package /Image:"C:\Temp" /PackagePath:"$($cab.VersionInfo.FileName)" | |
} | |
$cabs = Get-ChildItem "*.cab" -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us" | |
foreach($cab in $cabs) { |
This file contains 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 | |
# | |
# Script migración desde Fontawesome v4 a Fontawesome v5 | |
# | |
# Modo de uso | |
# ./fontawesome4to5.sh [-d DIRECTORIO] [-e EXTENSION] [-v] | |
# | |
# Si no se especifica DIRECTORIO, se hará el reemplazo en el directorio actual | |
# Si no se especifica EXTENSION, se buscarán por defecto archivos "php" | |
# Opción -v mostrará los archivos que se van modificando |
This file contains 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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<title>capture microphone audio into buffer</title> | |
<script type="text/javascript"> | |
var audioContext = new AudioContext(); | |
if (navigator.getUserMedia) { |
This file contains 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
Effects=AmbientLight.fx,Clarity.fx,DPX.fx,FakeHDR.fx,Sepia.fx | |
Techniques=AmbientLight,Clarity,DPX,HDR,Tint | |
TechniqueSorting=AmbientLight,Clarity,DPX,HDR,Tint | |
[AmbientLight.fx] | |
alDebug=0 | |
alAdaptBaseMult=0.160000 | |
alInt=1.400000 | |
AL_DirtTex=0 | |
alThreshold=0.000300 |
This file contains 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
# Variables | |
$DiskID = "/subscriptions/e82a2bbd-7d7c-4fa7-ad47-bc0feef07aa1/resourceGroups/Anduin/providers/Microsoft.Compute/disks/StarDiskWithOS"# eg. "/subscriptions/203bdbf0-69bd-1a12-a894-a826cf0a34c8/resourcegroups/rg-server1-prod-1/providers/Microsoft.Compute/disks/Server1-Server1" | |
$VMName = "StarX" | |
$DiskSizeGB = 90 | |
$AzSubscription = "Visual Studio Enterprise – MPN" | |
# Script | |
# Provide your Azure admin credentials | |
Connect-AzAccount |
This file contains 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 Newtonsoft.Json; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
namespace Generator | |
{ | |
public abstract class Conversation |
This file contains 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 Microsoft.AspNetCore.Mvc; | |
using Microsoft.AspNetCore.Mvc.Filters; | |
using System; | |
using System.Collections.Generic; | |
using System.Net; | |
using System.Text; | |
namespace Aiursoft.Pylon.Attributes | |
{ | |
public class LimitPerMin : ActionFilterAttribute |
This file contains 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
public static IWebHost MigrateDbContext<TContext>(this IWebHost webHost, Action<TContext, IServiceProvider> seeder = null) where TContext : DbContext | |
{ | |
using (var scope = webHost.Services.CreateScope()) | |
{ | |
var services = scope.ServiceProvider; | |
var logger = services.GetRequiredService<ILogger<TContext>>(); | |
var context = services.GetService<TContext>(); | |
var configuration = services.GetService<IConfiguration>(); | |
var env = services.GetService<IHostingEnvironment>(); |
NewerOlder