Programming: mudanças entre as edições

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
 
(16 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
=Algorithm=
*[https://www.creditcardvalidator.org/articles/luhn-algorithm The Luhn Algorithm for Credit Card Validation]
=Dev Environment on docker=
*[[Jetbrains env|Jetbrains env]]
*[[Mongodb container|Mongodb container]]
=Docs=
*https://www.openpolicyagent.org/
*https://svelte.dev/
*https://svelte.dev/
*https://www.webcomponents.org/
*https://www.webcomponents.org/
Linha 4: Linha 12:
*https://flutter.dev/docs/resources/architectural-overview
*https://flutter.dev/docs/resources/architectural-overview
*https://flutter.dev/docs/development/ui/widgets-intro
*https://flutter.dev/docs/development/ui/widgets-intro
=REGEX=
*[https://12factor.net/ The Twelve Factors (You Should Read it EveryDay !!)]
*https://regex101.com/
*https://jenkov.com/
=JetBrains=
*[https://semver.org/ Semantic Versioning]
==TeamCity Server==
*[https://securityheaders.com/ Security Headers]
<syntaxhighlight lang=bash>
#!/bin/bash
docker volume create teamcity_server_data
docker volume create teamcity_server_log
docker run \
    -d \
    --name teamcity-server-instance  \
    -e TEAMCITY_SERVER_MEM_OPTS="-Xmx5g -XX:MaxPermSize=1g -XX:ReservedCodeCacheSize=1g" \
    -v teamcity_server_data:/data/teamcity_server/datadir  \
    -v teamcity_server_log:/opt/teamcity/logs  \
    -p 8084:8111 \
    jetbrains/teamcity-server
</syntaxhighlight>
==YouTrack==
<syntaxhighlight lang=bash>
#!/bin/bash
docker volume create youtrack_data
docker volume create youtrack_conf
docker volume create youtrack_logs
docker volume create youtrack_backups
 
docker run \
    -d \
    --restart always \
    --name youtrack \
    -v youtrack_data:/opt/youtrack/data \
    -v youtrack_conf:/opt/youtrack/conf  \
    -v youtrack_logs:/opt/youtrack/logs  \
    -v youtrack_backups:/opt/youtrack/backups  \
    -p 8085:8080 \
    jetbrains/youtrack:2021.2.19690
</syntaxhighlight>
==Hub==
<syntaxhighlight lang=bash>
#!/bin/bash
docker volume create hub_server_data
docker volume create hub_server_conf
docker volume create hub_server_logs
docker volume create hub_server_backups
docker run \
    -d \
    --name hub-server-instance  \
    -v hub_server_data:/opt/hub/data \
    -v hub_server_conf:/opt/hub/conf  \
    -v hub_server_logs:/opt/hub/logs  \
    -v hub_server_backups:/opt/hub/backups  \
    -p 8086:8080 \
    jetbrains/hub:2021.1.13389
 
</syntaxhighlight>
==UpSource==
<syntaxhighlight lang=bash>
#!/bin/bash
docker volume create upsource_server_data
docker volume create upsource_server_conf
docker volume create upsource_server_logs
docker volume create upsource_server_backups
docker run \
    -d \
    --name upsource-server-instance  \
    -v upsource_server_data:/opt/upsource/data \
    -v upsource_server_conf:/opt/upsource/conf  \
    -v upsource_server_logs:/opt/upsource/logs  \
    -v upsource_server_backups:/opt/upsource/backups  \
    -p 8087:8080 \
    jetbrains/upsource:2020.1.1883
 


==CRC==
*https://crccalc.com/


</syntaxhighlight>
=Languages=
*[[DART|DART]]
*[[GO|GO]]
*[[DotNet|DotNet]]
=[[Regular Expression|Regular Expression]]=
=Security=
*https://breachattack.com/
=[[Stress Test|Stress Test]]=

Edição atual tal como às 13h54min de 4 de junho de 2024