- Build System (maven)
- Application framework (spring boot)
- Database (MySQL, Cassandra)
- CI/CD (Jenkins)
- Deployment (internal, private cloud built on OS tech such as K8S or PCF (cloudfoundry))
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
package main | |
import ( | |
"github.com/ajstarks/svgo" | |
"os" | |
) | |
func main() { | |
width := 500 | |
height := 500 |
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
addr, err := net.ResolveTCPAddr("tcp", ":8000") | |
if err != nil { | |
panic(err) | |
} | |
ln, err := net.ListenTCP("tcp", addr) |
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
plugins { | |
// Apply the application plugin to add support for building a CLI application in Java. | |
id 'application' | |
} | |
repositories { | |
// Use Maven Central for resolving dependencies. | |
mavenCentral() | |
} |
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 typing import List | |
def get_bit(n: int, x: int) -> int: | |
bit = n&(1<<x) | |
return 0 if bit == 0 else 1 | |
def set_bit(n: int, x: int, b: int) -> int: | |
return n&(~(1<<x)) if b == 0 else n|(1<<x) | |
def encode_chunk(word: str) -> int: |
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 typing import List | |
def get_bit(n: int, x: int) -> int: | |
bit = n&(1<<x) | |
return 0 if bit == 0 else 1 | |
def set_bit(n: int, x: int, b: int) -> int: | |
return n&(~(1<<x)) if b == 0 else n|(1<<x) | |
def encode_chunk(word: str) -> int: |
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 typing import List | |
def get_bit(n: int, x: int) -> int: | |
bit = n&(1<<x) | |
return 0 if bit == 0 else 1 | |
def set_bit(n: int, x: int, b: int) -> int: | |
return n&(~(1<<x)) if b == 0 else n|(1<<x) | |
def encode_chunk(word: str) -> int: |
NewerOlder