Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | π :tada: |
| Version tag | π :bookmark: |
| New feature | β¨ :sparkles: |
| Bugfix | π :bug: |
| import React from 'react' | |
| import { | |
| Route, | |
| Redirect | |
| } from 'react-router-dom' | |
| class PrivateRoute extends React.Component { | |
| render() { | |
| const { component: Component, ...rest } = this.props |
| 1. Download & Install Visual Studio 2010 - Version able to compile C++ | |
| 2. Download and Install Mozilla build files http://ftp.mozilla.org/pub/mozilla.org/mozilla/libraries/win32/MozillaBuildSetup-Latest.exe | |
| 3. Download the latest NSS package from: http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/ | |
| Download the tar with npsr | |
| 4. Create a directory C:\src | |
| 5. Extract nss to c:\src | |
| So this will end up looking like c:\src\nss-3.15 | |
| 6. Run the Mozilla build shell: C:\mozilla-build\start-msvc10.bat | |
| 7. Create the required env variables | |
| Type: export OS_TARGET="WINNT" |
| The licenses in the npm-registry from their package.json, from the latest version of each module | |
| 23.11.2013 | |
| [ { key: 'undefined', value: 27785 }, | |
| { key: 'MIT', value: 20811 }, | |
| { key: 'BSD', value: 5240 }, | |
| { key: 'BSD-2-Clause', value: 621 }, | |
| { key: 'Apache 2.0', value: 263 }, | |
| { key: 'GPL', value: 233 }, |
| { | |
| "token": "2XcC2UGO3SJamwSMSqJqJjTh", | |
| "team_id": "T33D257PC", | |
| "team_domain": "moonshotpartners", | |
| "channel_id": "D02FERQPCBU", | |
| "channel_name": "directmessage", | |
| "user_id": "U02EWSAH7C5", | |
| "user_name": "walter.corrales", | |
| "command": "/go1Walter", | |
| "text": "help", |
| package denisjtorresg.info; | |
| import java.text.DateFormat; | |
| import java.text.ParseException; | |
| import java.text.SimpleDateFormat; | |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; | |
| import javax.swing.JOptionPane; |
| // combineComponents.tsx | |
| // https://javascript.plainenglish.io/how-to-combine-context-providers-for-cleaner-react-code-9ed24f20225e | |
| import React, { ComponentProps, FC } from 'react'; | |
| export const combineComponents = (...components: FC[]): FC => { | |
| return components.reduce( | |
| (AccumulatedComponents, CurrentComponent) => { | |
| return ({ children }: ComponentProps<FC>): JSX.Element => { | |
| return ( | |
| <AccumulatedComponents> |
| FROM node:12.18.3 | |
| WORKDIR /app | |
| COPY . . | |
| # --production --dev | |
| RUN npm install | |
| RUN apt-get update | |
| # Installing chromium libraries |
Registered Name: https://zhile.io License Key: 48891cf209c6d32bf4
| function checkboxLogic(comp, val, isChecked) { | |
| var panel = comp.findParentByType('panel'); | |
| var addPrimaryCta = panel.getComponent('addPrimaryCta'); | |
| var primaryCtaRedirect = panel.getComponent('primaryCtaRedirect'); | |
| var primaryCtaText = panel.getComponent('primaryCtaText'); | |
| var primaryCtaLink = panel.getComponent('primaryCtaLink'); | |
| var primaryCtaAriaLabel = panel.getComponent('primaryCtaAriaLabel'); | |
| var primaryCtaDesign = panel.getComponent('primaryCtaDesign'); | |
| if (isChecked) { | |
| primaryCtaRedirect.show(); |