![alt text](images/str2logic.png){:height="205px" width="936px"}
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
<?php | |
echo file_get_contents('http://tinyurl.com/api-create.php?url='.'http://www.example.com/'); | |
/* For example | |
http://tinyurl.com/api-create.php?url=http://www.fullondesign.co.uk/ | |
Would return: | |
http://tinyurl.com/d4px9f | |
*/ | |
?> |
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
gprimeltexx:/ # lshal | |
| All binderized services (registered with hwservicemanager) | |
VINTF R Interface Thread Use Server Clients | |
FM Y [email protected]::IDisplayService/default 0/1 386 249 | |
DC,FM Y [email protected]::ISchedulingPolicyService/default 0/4 778 249 | |
DC,FM Y [email protected]::ISensorManager/default 0/4 778 249 | |
FM Y [email protected]::IStats/default 0/4 778 249 | |
DM,FC Y [email protected]::IEffectsFactory/default 0/4 358 379 249 | |
DM,FC Y [email protected]::IDevicesFactory/default 0/4 358 379 249 | |
DM,FC Y [email protected]::IBluetoothAudioProvidersFactory/default 0/4 358 249 |
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
--------- beginning of crash | |
03-22 08:03:59.350 761 770 F libc : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 770 (Jit thread pool), pid 761 (system_server) | |
03-22 08:03:59.540 850 850 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** | |
03-22 08:03:59.547 850 850 F DEBUG : LineageOS Version: '18.1-20210321-UNOFFICIAL-gprimeltexx' | |
03-22 08:03:59.547 850 850 F DEBUG : Build fingerprint: 'google/walleye/walleye:8.1.0/OPM1.171019.011/4448085:user/release-keys' | |
03-22 08:03:59.547 850 850 F DEBUG : Revision: '0' | |
03-22 08:03:59.547 850 850 F DEBUG : ABI: 'arm' | |
03-22 08:03:59.549 850 850 F DEBUG : Timestamp: 2021-03-22 08:03:59+0100 | |
03-22 08:03:59.549 850 850 F DEBUG : pid: 761, tid: 770, name: Jit thread pool >>> system_server <<< | |
03-22 08:03:59.550 850 850 F DEBUG : uid: 1000 |
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
node["railway"~"station"] | |
({{bbox}}); | |
way(bn)->.wy; | |
node._(w.wy); | |
out; |
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
using Polly; | |
using Refit; | |
using System; | |
using System.Threading.Tasks; | |
using Windows.ApplicationModel.Core; | |
using Windows.System; | |
using Windows.UI.Xaml.Controls; | |
namespace ClassevivaPCTO.Utils |
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
rest/v1/students/{studentId}/lessons/{start}/{end} | |
rest/v1/students/{studentId}/homeworks/removeStudentFile/{evtCode}/{homeworkId}/{fileId} | |
rest/v1/students/{studentId}/absences/details/{begin}/{end} | |
rest/v1/students/{studentId}/cards | |
rest/v1/students/{studentId}/subjects | |
rest/v1/students/{studentId}/homeworks/insertStudentMsg/{evtCode}/{evtId} | |
rest/v1/students/{studentId}/homeworks/uploadStudentFile/{evtCode}/{evtId} | |
rest/v1/students/{studentId}/agenda/all/{begin}/{end} | |
rest/v1/students/{studentId}/homeworks/setTeacherMsgStatus/{evtCode}/{evtId} | |
rest/v1/students/{studentId}/virtualclasses/agenda/{date_start} |
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
// Create an instance of EntranceThemeTransition | |
EntranceThemeTransition entranceThemeTransition = new EntranceThemeTransition(); | |
// Set the properties of the transition | |
entranceThemeTransition.FromHorizontalOffset = 100; // From where the animation will start horizontally | |
entranceThemeTransition.FromVerticalOffset = 100; // From where the animation will start vertically | |
// Get the parent container of the element | |
var panel = myElement.Parent as Panel; |
First of all, you find the install path of your Electron app. If you found it, find the resources folder. If you found it, you'll have to install asar globally, by running:
You can use the Select
and Aggregate
LINQ methods to create a comma-separated string of all teacher names. Here's how you can do it:
List<Teacher> teachers = new List<Teacher>
{
new Teacher { teacherId = "1", teacherName = "Teacher1" },
new Teacher { teacherId = "2", teacherName = "Teacher2" },
// ... other teachers ...
};
OlderNewer