FOR IMMEDIATE RELEASE
## AppName vX.X does something interesting
AppName vX.X is on the App Store now, and features the following very interesting feature. This is a summary, so I'm focusing on the lead. Just something to make me want to read the rest. Done.
City, State/Country - [Company/Developer] has released AppName vX.X, available in the Mac App Store. AppName is/does [broad, general strokes]. [A few more specific points about who it's for and why it's of benefit to them].
New features!
This file contains 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
# | |
# Copyright 2024 by Michael Jentsch | |
# | |
# https://www.jentsch.io/vorteile-der-batch-textgenerierung-gegenuber-der-sequenziellen-generierung-mehrerer-texte/ | |
# | |
import torch | |
import time | |
from transformers import AutoTokenizer, AutoModelForCausalLM, StoppingCriteria, BitsAndBytesConfig |
This file contains 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
# | |
# Copyright 2024 by Michael Jentsch | |
# | |
# https://www.jentsch.io/vorteile-der-batch-textgenerierung-gegenuber-der-sequenziellen-generierung-mehrerer-texte/ | |
# | |
import torch | |
import time | |
from transformers import AutoTokenizer, AutoModelForCausalLM, StoppingCriteria, BitsAndBytesConfig |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
$fn=50; | |
d1=2.8; | |
d2=4; | |
tol=0.1; | |
difference () { | |
union () { | |
translate ([0,0,(d1+d2)/2]) cube([50,13,d1+d2],center=true); | |
This file contains 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
android.support.v7.widget.util.SortedListAdapterCallback | androidx.recyclerview.widget.SortedListAdapterCallback | |
---|---|---|
android.support.v7.widget.helper.ItemTouchUIUtilImpl | androidx.recyclerview.widget.ItemTouchUIUtilImpl | |
android.support.v7.widget.helper.ItemTouchUIUtil | androidx.recyclerview.widget.ItemTouchUIUtil | |
android.support.v7.widget.helper.ItemTouchHelper | androidx.recyclerview.widget.ItemTouchHelper | |
android.support.v7.widget.WithHint | androidx.appcompat.widget.WithHint | |
android.support.v7.widget.ViewUtils | androidx.appcompat.widget.ViewUtils | |
android.support.v7.widget.ViewStubCompat | androidx.appcompat.widget.ViewStubCompat | |
android.support.v7.widget.ViewInfoStore | androidx.recyclerview.widget.ViewInfoStore | |
android.support.v7.widget.ViewBoundsCheck | androidx.recyclerview.widget.ViewBoundsCheck | |
android.support.v7.widget.VectorEnabledTintResources | androidx.appcompat.widget.VectorEnabledTintResources |
This file contains 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
04bf84b1951e2125bf066488a32fa91fb207472e521a2cabe987e4d9b0c85051f5660169e9d75bb9a8927efa1ce0cf131607f83249799b6066a16b459154e38492 |
This file contains 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 views; | |
import android.annotation.TargetApi; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Canvas; | |
import android.graphics.Color; | |
import android.graphics.Paint; | |
import android.os.Build; | |
import android.text.TextUtils; |
This file contains 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
import android.content.Context; | |
import android.text.Editable; | |
import android.text.Spannable; | |
import android.text.TextWatcher; | |
import android.text.style.RelativeSizeSpan; | |
import android.util.AttributeSet; | |
import android.widget.EditText; | |
public class TitledEditText extends EditText implements TextWatcher{ | |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- RED --> | |
<color name="red_50">#FFEBEE</color> | |
<color name="red_100">#FFCDD2</color> | |
<color name="red_200">#EF9A9A</color> | |
<color name="red_300">#E57373</color> | |
<color name="red_400">#EF5350</color> | |
<color name="red_500">#F44336</color> |