One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| // Create new configuration that specifies the error correction | |
| Map<EncodeHintType, ErrorCorrectionLevel> hints = new HashMap<EncodeHintType, ErrorCorrectionLevel>(); | |
| hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); | |
| QRCodeWriter writer = new QRCodeWriter(); | |
| BitMatrix bitMatrix = null; | |
| ByteArrayOutputStream baos = new ByteArrayOutputStream(); | |
| try { | |
| // Create a qr code with the url as content and a size of 250x250 px |
| # Tutorial here: https://medium.com/@harmittaa/travis-ci-android-example-357f6e632fc4 | |
| language: android | |
| sudo: required | |
| jdk: oraclejdk8 | |
| before_cache: | |
| - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | |
| - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ |
| //firebase email password auth in fragments | |
| public class EmailPasswordLogInFragment extends Fragment { | |
| public static final String TAG = "EmailPassLogInFragment"; | |
| private View mRootView; | |
| private FirebaseAuth mAuth; | |
| public EmailPasswordLogInFragment() { | |
| // Required empty public constructor |
| <?xml version="1.0" encoding="utf-8"?> | |
| <com.ramotion.foldingcell.FoldingCell xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:folding-cell="http://schemas.android.com/apk/res-auto" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| folding-cell:additionalFlipsCount="4" | |
| folding-cell:animationDuration="1300" | |
| folding-cell:backSideColor="@color/bgBackSideColor" | |
| folding-cell:cameraHeight="30" |
| ### Flutter Generated | |
| # Miscellaneous | |
| *.class | |
| *.lock | |
| *.log | |
| *.pyc | |
| *.swp | |
| .DS_Store | |
| .atom/ |
| <div class="m-10 rounded-lg bg-white px-6 py-8 shadow-xl ring-1 ring-slate-900/5 dark:bg-black"> | |
| <h3 class="text-base font-medium tracking-tight text-slate-900 dark:text-white">Writes Upside-Down</h3> | |
| <p class="mt-2 text-sm text-slate-500 dark:text-blue-100">The Zero Gravity Pen can be used to write in any orientation, including upside-down. It even works in outer space.</p> | |
| <button | |
| id="toggleDark" | |
| class="px-4 py-2 text-sm font-medium mt-8 text-blue-900 bg-blue-100 rounded-md" | |
| onclick="document.body.classList.toggle('dark')" | |
| >Toggle Dark Mode</button> | |
| </div> |
| /* | |
| * Copyright 2026 Kyriakos Georgiopoulos | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |