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
#zwgth { | |
margin-bottom: 20px !important; | |
} | |
#zwgth .logo { | |
display: none !important; | |
} | |
#zwgth h1 { | |
display: none !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
public void run() { | |
if (stream != null) { | |
running = true; | |
try { | |
StopWatch sw = new StopWatch(); | |
sw.Start(); | |
float leqA2 = 0f; | |
float leqA = 0f; | |
arr_samples = IOStream.toFloat(stream.get(Utils.LEQ_1SEC)); |
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
import 'package:x/presentation/presentation.dart'; | |
import 'activities_actions.dart'; | |
import 'activities_state.dart'; | |
class ActivitiesBloc { | |
BlocController<ActivitiesState, Action> get controller => _core; | |
BlocCore<ActivitiesState, ActivitiesStateBuilder, Action> _core; | |
ActivitiesBloc() { |
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
import 'dart:math' as math; | |
// 1. MODELS | |
enum Gender { female, male } | |
class Activity { | |
Activity({this.id, this.category, this.hours, this.frequency, this.recordings}); | |
final int id; | |
final int category; |
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
import 'dart:math' as math; | |
// 1. MODELS | |
class Activity { | |
Activity( | |
{this.id, this.category, this.hours, this.frequency, this.recordings}); | |
final int id; | |
final int category; | |
final int hours; |
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
curl --request POST \ | |
--url https://api.imagekit.io/v1/files/upload \ | |
--header 'content-type: multipart/form-data; boundary=---011000010111000001101001' \ | |
--form fileName=user-21.jpg \ | |
--form publicKey=sZ/a9Az1UFoCCZs4xJvJrcsTGLs= \ | |
--form signature=f5a779108454d224cb9ab4fe1ebb52f44fb19b70 \ | |
--form token=d502bf6a-1aac-4bd4-8241-845db283f05a \ | |
--form expire=1567694190 \ | |
--form useUniqueFilename=true \ | |
--form isPrivateFile=true \ |
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
interface ProductApi { | |
@GET("categories") | |
fun categories(): Observable<Response<List<CategoryData>>> | |
@GET("produitscat") | |
fun products(): Observable<Response<List<ProductData>>> | |
} | |
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
#!/usr/bin/python | |
from __future__ import absolute_import, print_function, unicode_literals | |
import dbus | |
import dbus.mainloop.glib | |
try: | |
from gi.repository import GObject | |
except ImportError: | |
import gobject as GObject |
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
override fun queryPosts(tab: FeedTabController.Tab): Observable<List<Post>> { | |
val postsQuery = ParseQuery.getQuery<ParseObject>("Post") | |
.whereExists("createdAt") | |
.whereExists("building") | |
.whereExists("author") | |
.include("building") | |
.include("photo") | |
.include("author") | |
.include("author.Picture") | |
.whereEqualTo("building", ParseObject.createWithoutData("Building", sessionManager.buildingId)) |
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
<manifest | |
package="io.bimapp" | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools"> | |
<uses-permission android:name="android.permission.INTERNET"/> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |