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
!`:: ; Next window | |
curr := WinExist("A") | |
WinGet currentProcessName, ProcessName, % "ahk_id " curr | |
WinGet, WinClassCount, Count, % "ahk_exe " currentProcessName | |
;MsgBox, %currentProcessName% | |
IF WinClassCount = 1 | |
Return | |
ElSE |
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
================================ | |
trailhead.salesforce.com | |
CSS | |
.search-input__input { | |
background-color: var(--darkreader-neutral-background) !important; | |
} | |
.user-info__name { | |
color: inherit !important; |
This file has been truncated, but you can view the full file.
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
[ | |
[ | |
{ | |
"title": "Salesforce B2C Commerce 21.10", | |
"href": "topic/com.demandware.dochelp/content/b2c_commerce/topics/getting_started/b2c_welcome.html?cp=0", | |
"isLeaf": false | |
}, | |
{ | |
"title": "Welcome to the Salesforce B2C Commerce Infocenter", | |
"href": "topic/com.demandware.dochelp/content/b2c_commerce/topics/getting_started/b2c_welcome.html?cp=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
Program cartas; | |
type | |
carta = record | |
nipe:string; | |
numero:integer; | |
prox:^carta; | |
end; | |
var | |
topo:^carta; | |
aux:carta; |
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
Program Pzim ; | |
type | |
carta = record | |
nipe: string; | |
numero: integer; | |
proximo: ^carta; | |
end; | |
var | |
pilha: ^carta; |
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 { Directive, ElementRef, OnDestroy } from '@angular/core'; | |
import * as textMask from 'vanilla-text-mask/dist/vanillaTextMask.js'; | |
@Directive({ | |
selector: '[maskCurrencyDirective]' | |
}) | |
export class MaskCurrencyDirective implements OnDestroy { | |
mask = ['$', /\d+/] | |
maskedInputController; |
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
ExUnit.start() | |
defmodule ChopTest do | |
use ExUnit.Case, async: true | |
test "Should return guessed number" do | |
teste = Chop.guess(273, 1..1000) | |
assert teste == 273 | |
end |
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
<div class="check-multisiteconstructionsite"> | |
<div> | |
<label class="label" for="checkbox_use">Obra Multisite</label> | |
<div class="space"></div> | |
<div class="switch"> | |
<input | |
type="checkbox" | |
class="switch-checkbox form-control" | |
id="checkbox-construction-site-type" | |
> |
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
<div | |
class="m-b-10 stant-commentsection" | |
data-target="pre-plannings--comments.jsCommentsContainer"> | |
<template data-target="pre-plannings--comments.jsCommentTemplate"> | |
<ul class="stant-comment"> | |
<li> | |
<p class="commentcontent"> | |
<b class="name"> | |
'%{person}' |
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 Vue from 'vue' | |
import Vuetify, { | |
VCombobox | |
} from 'vuetify/lib' | |
export default function makeCombobox(repositoryName) { | |
return Vue.component('combobox', { | |
inject: [repositoryName], | |
components: { VCombobox }, | |
render (createElement) { |