| Language Tag | Language | Region | Description |
|---|---|---|---|
| ar-SA | Arabic | Saudi Arabia | Arabic (Saudi Arabia) |
| bn-BD | Bangla | Bangladesh | Bangla (Bangladesh) |
| bn-IN | Bangla | India | Bangla (India) |
| cs-CZ | Czech | Czech Republic | Czech (Czech Republic) |
| da-DK | Danish | Denmark | Danish (Denmark) |
| de-AT | German | Austria | Austrian German |
| de-CH | German | Switzerland | "Swiss" German |
| de-DE | German | Germany |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Cozy Window Shade</title> | |
| <style> | |
| *{margin:0;padding:0;box-sizing:border-box} | |
| :root{--bg:#f5f4f0;--fg:#1a1a18;--muted:#6b665e} | |
| body{font-family:system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--fg)} |
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: Build and Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| buildAndTest: | |
| runs-on: macos-latest | |
| steps: |
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
| func showMessageResetApp(){ | |
| let exitAppAlert = UIAlertController(title: "Restart is needed", | |
| message: "We need to restart the app on your first login to the app.\n Please reopen the app after this.", | |
| preferredStyle: .alert) | |
| let resetApp = UIAlertAction(title: "Close Now", style: .destructive) { | |
| (alert) -> Void in | |
| // home button pressed programmatically - to thorw app to background | |
| UIControl().sendAction(#selector(URLSessionTask.suspend), to: UIApplication.shared, for: nil) | |
| // terminaing app in background |
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
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 16px; | |
| line-height: 1.6; | |
| padding: 10px; | |
| background-color: white; | |
| } | |
| body > *:first-child { | |
| margin-top: 0 !important; |
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
| // | |
| // CommonMacro.h | |
| // | |
| // | |
| // Created by Haven on 26/9/13. | |
| // Copyright (c) 2013 LF. All rights reserved. | |
| // | |
| #import <CoreTelephony/CTTelephonyNetworkInfo.h> | |
| #import <CoreTelephony/CTCarrier.h> |
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
| // Module dependencies | |
| var express = require('express'), | |
| mysql = require('mysql'); | |
| // Application initialization | |
| var connection = mysql.createConnection({ | |
| host : 'localhost', | |
| user : 'root', |
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
| """ | |
| tornado_static is a module for displaying static resources in a Tornado web | |
| application. | |
| It can take care of merging, compressing and giving URLs ideal renamings | |
| suitable for aggressive HTTP caching. | |
| (c) mail@peterbe.com | |
| """ |
NewerOlder