core-css
,core-react
- #323 chore(deps): update dependency lint-staged to v6. (@renovate[bot])
- #334 chore(deps): update dependency prettier to v1.9.2. (@renovate[bot])
core-react
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<Root_Element ID="DAOCUi"> | |
<!-- @@ Edited with the DAoC User Interface Editor v1.71 --> | |
<!-- @@ Free download available at http://www.bradtownsend.com/daoced --> | |
<!-- combat mode window --> | |
<StatusIconTemplate> | |
<Name>g_combatmode_status</Name> |
#NoEnv | |
#MaxHotkeysPerInterval 99000000 | |
#HotkeyInterval 99000000 | |
#Include <Include> | |
IsDaoc() { | |
return WinActive("ahk_exe game.dll") | |
} |
GearBunnyX 1.118.0.2 Template Report | |
Configuration Name : New Configuration | |
Character Class : (Alb) Infiltrator | |
Server Type : Ywaine | |
Character Level : 39 | |
Realm Rank : RR 1 | |
Champion Level : CL 0 | |
Stat Details : Items / Cap | |
core-css
, core-react
core-react
Compte Rendu Final | |
Serveur PvP: Midgard | |
Classe : Berserker | |
Race : Viking | |
Niveau : 39 | |
Rang de Royaume : 1L | |
Utilités Totales |
// variables.scss | |
$color: "red" | |
// componentA.scss | |
.componentA { | |
color: $color; |
// variables.scss | |
$color: "red" | |
// componentA.scss |
// variables.scss | |
$color: "red" | |
// componentA.scss |
defmodule Server.Player do | |
use GenServer | |
require Logger | |
alias Server.{Acceleration, Movement, Position, Velocity} | |
defstruct user_id: "", movement: %Movement{}, position: %Position{}, velocity: %Velocity{} | |
def start_link(user_id) do | |
name = via_tuple(user_id) | |
GenServer.start_link(__MODULE__, user_id, name: via_tuple(user_id)) |
import * as fs from 'fs' | |
import { createContext, useReducer } from 'react' | |
import { array, option } from 'fp-ts' | |
import actionCreatorFactory from 'typescript-fsa' | |
import { isType } from 'typescript-fsa' | |
import { Action } from 'redux' | |
import { omit } from 'ramda' | |
import { File } from './File' |