create user set the user no login jail the user in the sftp config chmod 755 . -R chown -R fps-data:sftpusers . Test with cyberduck or
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
| #!/bin/bash | |
| ## | |
| # Script which let's you gather some basic information about your SSL certificate | |
| ## | |
| ## Instructions | |
| ## wget https://gist.github.com/saviour123/cfb52d09883649296ed664e7f61e2ceb | |
| ## bash ssl domain.com | |
| ## |
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
| --- | |
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: A basic CloudFormation template for an RDS Aurora cluster. | |
| Parameters: | |
| DatabaseInstanceType: | |
| Default: db.r3.large | |
| AllowedValues: | |
| - db.r3.large | |
| - db.r3.xlarge | |
| - db.r3.2xlarge |
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
| # This bash script help to remove the microsoft autoupdate agent for poping up | |
| # every now and then on your computer | |
| # instruction | |
| # open the Terminal app on you macbook | |
| # copy and paste the below and voila. | |
| # You are saved. It would ask you for password in executing sudo command | |
| sudo rm -rf /Library/Application\ Support/Microsoft/MAU2.0 | |
| sudo rm -rf /Library/LaunchAgents/com.microsoft.update.agent.plist | |
| sudo rm -rf /Library/LaunchDaemons/com.microsoft.autoupdate.helper.plist |
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
| from app.models import Identity | |
| from django.contrib.auth.models import Group | |
| u = Identity.objects.all() | |
| for acc in u: | |
| # group = Group.objects.get(name='assembly_admin') | |
| acc.is_staff = True | |
| # acc.groups.add(group) | |
| acc.save() |
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
| name: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: |
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
| image: docker:latest | |
| variables: | |
| REPOSITORY_URL: <AWS ACCOUNT ID>.dkr.ecr.eu-central-1.amazonaws.com/<ECS REPOSITORY NAME> | |
| REGION: eu-central-1 | |
| TASK_DEFINTION_NAME: <TASK DEFINITION NAME> | |
| CLUSTER_NAME: <CLUSTER NAME> | |
| SERVICE_NAME: <SERVICE NAME> | |
| services: |
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
| sentence = " this is a debug message" | |
| def counter(str): | |
| "this should be done with no standard library" | |
| words = 0 | |
| prevSpace = True | |
| indx = 0 | |
| for i in sentence: | |
| if str[indx] != " " and prevSpace: | |
| words += 1 |
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
| sudo rm /var/lib/apt/lists/lock | |
| sudo rm /var/cache/apt/archives/lock | |
| sudo rm /var/lib/dpkg/lock |