Skip to content

Instantly share code, notes, and snippets.

View rqbazan's full-sized avatar
🦉
making things over the web

rcrd rqbazan

🦉
making things over the web
View GitHub Profile
@rqbazan
rqbazan / Vesper.itermcolors
Created October 9, 2024 13:18
iTerm Vesper Theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.062745101749897003</real>
@rqbazan
rqbazan / Vesper.icls
Last active October 9, 2024 13:18
JetBrains IDE Vesper Theme
<scheme name="Vesper-dark-color-theme" parent_scheme="Darcula" version="1">
<colors>
<option name="GUTTER_BACKGROUND" value="101010" />
<option name="SELECTION_BACKGROUND" value="323232" />
<option name="LINE_NUMBERS_COLOR" value="FFFFFF" />
<option name="CONSOLE_BACKGROUND_KEY" value="101010" />
</colors>
<attributes>
<option name="BAD_CHARACTER">
<value>

The StatusBar Problem

From Expo docs:

Keep in mind that the Android status bar is translucent by default in Expo apps.

And also I'm almost sure that the background color in Expo apps is like rgba(0,0,0,0.4)

@rqbazan
rqbazan / project.ino
Last active October 9, 2024 13:23
UPN Course
/*
* References:
*
* Datalogger by Arduino: https://www.arduino.cc/en/Tutorial/Datalogger
* Clock TinyRTC Tutorial: http://www.prometec.net/relojes-rtc/
* DHT22 Sensor Tutorial: http://www.naylampmechatronics.com/blog/40_Tutorial-sensor-de-temperatura-y-humedad-DHT1.html
* Ethernet Shield V2 Wiki: http://wiki.seeedstudio.com/wiki/Ethernet_Shield_V2.0
* DFR0026 Light Sensor Guide: https://www.dfrobot.com/wiki/index.php/DFRobot_Ambient_Light_Sensor_(SKU:DFR0026_)
* DS1307 RTC Tutorial: http://www.geekfactory.mx/tutoriales/tutoriales-arduino/ds1307-en-tinyrtc-con-arduino/
*